Using vspider.exe to search Virtual Hosts on Apache

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Using vspider.exe to search Virtual Hosts on Apache

    Hi there,

    We are running apache v2, CFMX 7 standard on windows 2003 server.

    I want to create spiders that index at the various virtual hosts we run on the
    apache server.

    The servers main name is spider.ucc.ac.uk (thats what localhost points to).

    It also runs our external website [url]www.ucc.ac.uk[/url]
    Another site extranet.ucc.ac.uk
    And things like [url]www.cote.org.uk[/url]

    So far I have not suceeded in getting this to work (and I have downloaded the
    style sets update for cfmx7).

    My command text file for extranet looks like this :

    -style C:\CFusionMX7\verity\Data\stylesets\ColdFusionVspi der
    -collection c:\CFusionMX7\verity\collections\spider_extranet
    -start d:\\extranet\\http\\index.html
    -cgiok
    -abspath
    -prefixmap mappathex.txt
    -loglevel trace

    and the prefixmap text file like this :

    -----------------start of mappath.txt----------------------------
    #SourceField SourcePrefix DestField DestPrefix Flag
    VdkVgwKey d:\extranet\http URL [url]http://extranet.ucc.ac.uk/[/url] /
    -----------------end of mappath.txt----------------------------


    Can anyone tell me what I am doing wrong as this does not work.

    Cheers,

    Matt

    UniWebDude Guest

  2. Similar Questions and Discussions

    1. Apache Virtual Hosts and ColdFusion Under OracleAS
      I have ColdFusion deployed as a J2EE app under OracleAS. ColdFusion's "context root" is /cfusion. I have an app deployed within ColdFusion,...
    2. Apache Virtual Hosts
      I am currently running Coldfusion mx 7 and apache 2.0.52 with virtual hosts. I've seen this same question asked on many forums with multiple...
    3. cfmx7 apache virtual hosts
      I've just managed to install CFMX7 onto a SUSE9 Enterprise (after many failed attempts!). The most difficult bit has been getting the apache...
    4. Coldfusion not working with Apache Virtual Hosts
      bigreddastud, Thank you. Thank you. Thank you. This problem has been plagueing us for months. We have a complicated architecture and fingers were...
    5. [PHP-DEV] chrooting virtual hosts in apache
      I'm sorry to mail this to internals, but I saw someone post a message about this a _long_ time ago, and I can't seem to find this in the archives....
  3. #2

    Default Re: Using vspider.exe to search Virtual Hosts on Apache

    Anyone ? I can't believe nobody else has this issue....
    UniWebDude Guest

  4. #3

    Default Re: Using vspider.exe to search Virtual Hosts on Apache

    I am having trouble too, but what I suggest is that you look at your -start
    command, as I have gotten it to work with the following arguments (although it
    skips some pages, which is why I am visiting this forum)

    vspider.exe -style C:\CFusionMX7\verity\Data\stylesets\ColdFusionVspi der
    -collection C:\CFusionMX7\verity\collections\invivospider -start
    [url]http://localhost/future/prod.cfm[/url]


    Notice how there are only single \ except for http:// . Try to change it to
    something simple like this. Also, see
    [url]http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=50f419a[/url] and make
    sure that you have set the path variable. If you do get it to run, you have to
    register it in the Coldfusion Administrator... good luck, I have the same setup
    as you. Oh, and about the virtual host thing, I don't think that matters. Just
    setup a different collection for each site. When you are finished, if your
    collection were named "invivospider", you could check the results with the
    following code:

    <cfsearch collection="invivoscribe" name="results" criteria="">
    <cfdump var="#results#">

    chwagssd Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139