Changes between Version 1 and Version 2 of FrequentlyAskedQuestions

Show
Ignore:
Timestamp:
10/18/06 08:47:45 (7 years ago)
Author:
euzuro
Comment:

added FAQ entry re ProxyHost, changed formatting a bit. still not particularly happy with formatting. if anyone has suggestions, please chime in. specifically, if you know how to make sub-links within a page, like here:  http://en.wikipedia.org/wiki/Wikipedia:Overview_FAQ

Legend:

Unmodified
Added
Removed
Modified
  • FrequentlyAskedQuestions

    v1 v2  
    11= Frequently Asked Questions about the !OpenLayers project = 
     2[[BR]] 
     3[[BR]] 
    24 
    3 == What is MetaCarta's relationship to the !OpenLayers project? == 
     5[[BR]] 
     6= General =  
     7 
     8== What is MetaCarta's relationship to the !OpenLayers project? ==  
    49OpenLayers is an independent project sponsored by [http://www.metacarta.com/ MetaCarta]. !MetaCarta uses the OpenLayers library in some of its products. 
    5  
    6 == How do I edit the wiki or a ticket? == 
    7  
    8 You will need a wiki account. If you want an account to enable you to edit the wiki, add a ticket or modify an existing ticket please send an email to the [http://openlayers.org/EmailLists/ Developer Mailing List]. 
    9  
     10[[BR]] 
    1011 
    1112== How can I add a question to this FAQ? == 
    1213Please feel free to add OpenLayers questions to this page--we'll try to answer them for you. 
     14[[BR]] 
    1315 
    1416== Where do I find more info? == 
    1517Here on this wiki.  Click on the [TitleIndex] to see a list of available pages. 
     18[[BR]] 
     19 
     20 
     21---- 
     22[[BR]] 
     23= TRAC = 
     24 
     25== How do I edit the wiki or a ticket? == 
     26You will need a wiki account. If you want an account to enable you to edit the wiki, add a ticket or modify an existing ticket please send an email to the [http://openlayers.org/EmailLists/ Developer Mailing List]. 
     27[[BR]] 
     28 
     29---- 
     30[[BR]] 
     31= WFS = 
     32 
     33== Why isn't WFS working on my local checkout of !OpenLayers? ==  
     34 
     35This is probably because you do not have a proxy host set up.  
     36 
     37Due to security restrictions in Javascript, it is not possible to 
     38retrieve information from remote domains via XMLHttpRequest. The way to 
     39work around this is to set up a local script which can 'proxy' 
     40information from the remote host. An example script to do this is 
     41available from the examples directory as proxy.cgi: 
     42 
     43http://svn.openlayers.org/trunk/openlayers/examples/proxy.cgi 
     44 
     45To use WFS results from a remote host on your machine, you must install 
     46a proxy script somewhere web accessible from the domain you plan to use 
     47to host your page. You must then edit !ProxyHost to match that URL: an 
     48example URL for most Apache configurations might be: 
     49 
     50!OpenLayers.ProxyHost="/cgi-bin/proxy.cgi?url="; 
     51 
     52If the !ProxyHost is not set, requests are sent directly. In most cases, 
     53the result will be a security exception. 
     54----