Page 5 of 5 FirstFirst ... 345
Results 61 to 64 of 64

Thread: [How To] Install and Configure Hellanzb

  1. #61
    OK I have found the failure, maybe you should update the tutorial.

    Code:
    cd /opt/share/www/lighttpd/
    tar -xzvf /opt/tmp/zussaweb03.tar.gz
    Zussaweb has to be copied to /opt/share/www - that is the right document root. As long as it is there no index.html , the webserver points at its own index.html in the lighttpd folder.

  2. #62
    Quote Originally Posted by Quadronix View Post
    OK I have found the failure, maybe you should update the tutorial.
    Just checked it... changeset 8127 indeed changed the document root of lighttpd.

    I just updated the fp.

  3. #63
    hi when you edit the lighttpd file it says to do this

    change
    #fastcgi.server = ( ".php" =>
    # ( "localhost" =>
    # (
    # "socket" => "/tmp/php-fastcgi.socket",
    # "bin-path" => "/usr/local/bin/php"
    # )
    # )
    # )

    into
    fastcgi.server = ( ".php" =>
    ( "localhost" =>
    (
    "socket" => "/tmp/php-fastcgi.socket",
    "bin-path" => "/opt/bin/php-fcgi"
    )
    )
    )

    however in my file it says

    ## read fastcgi.txt for more info
    #fastcgi.server = ( ".php" =>
    # ( "localhost" =>
    # (
    # "socket" => "/tmp/php-fcgi.sock",
    # "bin-path" => "/opt/bin/php-fcgi",
    # "bin-environment" => (
    # "PHP_FCGI_MAX_REQUESTS" => "4000"
    # )
    # )
    # )
    # )

    so can someone tell me what to delete do i need to delete the whole statement or just part of it thanks

  4. #64
    Quote Originally Posted by danandrews80 View Post
    so can someone tell me what to delete do i need to delete the whole statement or just part of it thanks
    Well that part of the manual is a bit outdated...

    Today if you install php-fcgi, the neccesary settings are automaticly made in /opt/etc/lighttpd/conf.d/10-php-fcgi.conf

    It should work out of the box.

Page 5 of 5 FirstFirst ... 345

Posting Permissions

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