6.0.0-git
2024-04-26

Diff for DimpLighttpd between 2 and 3

inIn lighttpd.conf (on Debian /etc/lighttpd/lighttpd.conf) add "broken-scriptfilename":



<code>
fastcgi.server = ( ".php" => ((

                        "bin-path" => "/usr/bin/php5-cgi",

                        "socket" => "/tmp/php.socket",

                        "max-proc" => 10,

                        "broken-scriptfilename" => "enable"

                 )))
</code>

otherwise you will get the error saying "There has been no contact with the remote server for several minutes." after logging in on DIMP.

In php.ini (on Debian /etc/php5/cgi/php.ini) enable PATH_INFO:

else you will get the error saying "There has been no

contact with the remote server for several minutes.."

after logging in on DIMP.







in php.ini (on Debian /etc/php5/cgi/php.ini) enable PATH_INFO by setting fix_pathinfo to 1:


<code>
cgi.fix_pathinfo=1
</code>