Install ispconfig work with lenny 5.0.1
Some have guaranteed the problem that no longer ispconfig debian lenny installed. It appears then following message:
Notice: Undefined variable: distver in /tmp/ispconfig3_install/install/lib/install.lib.php on line 135
Notice: Undefined variable: distid in /tmp/ispconfig3_install/install/lib/install.lib.php on line 135
Notice: Undefined variable: distbaseid in /tmp/ispconfig3_install/install/lib/install.lib.php on line 135
Linux Distribution or Version not recognized.didon:/tmp/ispconfig3_install/install#
Here is the solution:
open:
/tmp/ispconfig3_install/install/lib/install.lib.php
replace in line 73:
if(trim(file_get_contents('/etc/debian_version')) == '5.0' || trim(file_get_contents('/etc/debian_version')) == 'lenny/sid') {
with:
if(substr(trim(file_get_contents('/etc/debian_version')),0,3) == '5.0' || trim(file_get_contents('/etc/debian_version')) == 'lenny/sid') {
------------------------------------------------------------
for developer:
To "Notice: Undefined variable:" to prevent the creators of ISPConfig3 still in the line 62 down under $distname = ";
add:
$distver = '';
$distid = '';
$distbaseid = '';
------------------------------------------------------------
|
Recent comments
8 hours 46 min ago
13 hours 51 min ago
18 hours 15 min ago
20 hours 4 min ago
1 day 10 hours ago
1 day 10 hours ago
1 day 15 hours ago
1 day 21 hours ago
1 day 22 hours ago
2 days 3 min ago