sitesearch script

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • sitesearch script

    hallo
    ich hab dieses sitesearch script in meinen cgi-bin ordner hochgeladen (in ASCII mode)
    aber wenn ich die adresse zu dieser cgi datei im browser angebe kommt nichts..
    ich hab die datei schon editiert und ganz am anfang steht auch der pfad #!/usr/bin/perl
    weiss nicht wo das problem ist , kann mir jemand helfen
    danke

  • #2
    ich hab dieses sitesearch script
    welches denn?

    AKAIK befindet sich der CGI-Bin nicht immerhalb von htdocs.
    Wie kannst du ihn dann ansprechen?

    --

    Aber vielleicht bin ich auch nur dumm
    [COLOR=royalblue]Ein großes DANKE an alle, die sich auf selbstlose Weise im Forum einbringen.[/COLOR]

    [COLOR=silver]btw: REAL PROGRAMMERs aren't afraid to use GOTOs![/COLOR]

    [color=indigo]Etwas ernster, aber auch nicht weiter tragisch, sieht die Situation bei Software-Patenten aus. Software-Patente sind eine amerikanische Erfindung und stehen auf dem selben Blatt wie genveränderte Babynahrung, die im Supermarkt nicht mehr als solche gekennzeichnet werden soll, um die Hersteller nicht gegenüber denen natürlicher Produkte zu diskriminieren ...[/color]
    (from here)

    Kommentar


    • #3
      nach dem editieren soll man das script in cgi-bin ordner hochschicken und dann aufrufen um zu installieren
      hier nur der anfang von der datei

      PHP-Code:
      #!/usr/bin/perl

      ###############################################################################
      #
      #                                IC-SiteSearch 1.7
      #
      # Program name: IC-SiteSearch
      # Program version: 1.7
      # Program name defined: 'Internet Coders Site Search' version 1.7
      # Program purpose: Providing a way for customers to search your website.
      #
      #
      # Written by: [email]shawn@internetcoders.com[/email]
      # Downloaded at: [url]www.internetcoders.com[/url]
      # Date released: 05/27/2002
      # Last modified: never

      # System requirements: Linux,Perl
      #
      # Liability: InternetCoders.com and or all individuals of InternetCoders.com
      #            are in no way liable for anything that this program may do while
      #            in use modified/unmodified. You the person choosing to run this
      #            program take full responsibilites for this code and everything
      #            it does. It's simple, you don't want to take responsibility for
      #            this code, then don't use it
      #
      # Support: If you have any questions about this program please refer to
      #          the documentation/instructions that came with the program. Since
      #          this program was free there is no e-mail or phone support. However
      #          support is available if you pay for it, or if you pay for cusomizations.
      #          To pay for support or cusomizations please visit our website at
      #          [url]http://www.internetcoders.com[/url]
      #
      # Distribution: Since you did not write this code, you are not allowed to distribute
      #               it modified or unmodified. If you want someone to have this code then
      #               tell them to download it from InternetCoders.com, if it is
      #               not on the InternetCoders.com website at that time then that
      #               person is out of luck and will not be able to download it until
      #               we post it again, unless you get permission from InternetCoders.com
      #
      # Modifications: You are allowed to fully modify any of this code you like. Please
      #                refer to the Distribution section above before giving away copies
      #                of this code whether modified or unmodified.
      #
      ###############################################################################





      ###############################################################################
      # PROGRAM VARIABLES TO CONFIGURE BELOW
      ###############################################################################

      #This should be the directory/path that you would like to have this program search.
      #Put the exact path starting with the root directory /.
      #Be sure to add a / at the end or else the program will not display the found
      #results from the search properly.
      $searchDirectory '/home/www/webx/html/';

      #This should point to the same directory as above only as it would be typed in a
      #web browser as a url. Point this url to the same directory that is being searched.
      #This will be used to create a link to the pages being displayed by the search results.
      #Be sure to add the trailing / at the end or else you the program will not display the found
      #results from the search. Be sure to add a / at the end.
      $hyperLink 'http://www.domain.com/';

      #This is the color that you would like the hypertext links to be. These are the links
      #that point to the pages returned from the search results.
      $hypertextLinkColor 'blue';

      #This is where you specify the types of files that you would like to have searched by this
      #program. Seperate your extensions with a pipe symbol which looks like this | .
      $searchFileTypes '.html|.htm|.txt|.php';

      #This is the width of the search text field. Put the width that you want this text field
      #to be displayed as.
      $formFieldSize '10';

      #This is the text that you would like to have next to the search field box. The
      #default word that shows up is Search.
      $searchFieldText 'Search ';

      #To exclude the html tags from being searched set this variable to 1. If you want
      #this program to search the html tags as well then set this variable to 0. Keep in
      #mind that html tags contain words and this may throw off your search results. Also
      #keep in mind that if you choose to not search the html and you have missing html tags
      #then your search may not be as accurate either. Recommended that you set this to 0, don't
      #remove the html from the search. Most people have missing html tags and this may rip the
      #html incorrectly.
      #1 turns html remove on. 0 turns remove off.
      $removeHtml '0';

      #Point this to the header file if you have one that you would like to have displayed.
      #Leave this blank if you do not have a header file to be displayed.
      $header 'header';

      #Point this to the footer file if you have one that you would like to have displayed.
      #Leave this blank if you do not have a footer file to be displayed.
      $footer 'footer'

      Kommentar


      • #4
        so kann man mit dem ganzen hier ziemlich wenig anfangen.

        was erhälst du für eine Meldung, wenn du das script aufrufst?
        hast du den pfad sicher überprüft???
        hast du mal ne normale index-seite in das verzeichnis gelegt und getestet.

        alles so grundlegende(!) Details.

        Kommentar


        • #5
          es kommt eine fehler seite, dass die datei nicht existiert

          jetzt habe ich ein index.htm in meinen cgi-bin ordner hochgeladen und den pfad dazu angegeben
          und kamm wieder nichts(nur die fehler seite)
          der ordner kann nicht gelesen werden

          Kommentar


          • #6
            also stimmt dein pfad nicht! - überprüfen!

            Kommentar

            Lädt...
            X