Installatron 'blank screen' after install

3v.

Verified User
Joined
Feb 28, 2005
Messages
15
Location
Netherlands
We've Fedora Core 4 on our servers with the latest DA version. Today we want to install Installatron 3.1.2 with the guide on their website.


On step 4 we see this:

Plugin Uploaded
---------------------------------
Details

iTron successfully downloaded
plugin.tar.gz extracted
install.sh has been run:

Plugin Installed!

On step 5 we've got a blank screen.

With SSH i looked into some directories and they are empty.

[root@srv105 archives]# ls -al
drwxr-xr-x 2 root root 4096 Sep 29 16:29 .
drwxr-xr-x 5 root root 4096 Sep 29 16:29 ..
[root@srv105 installers]# ls -al
drwxr-xr-x 2 root root 4096 Sep 29 16:29 .
drwxr-xr-x 5 root root 4096 Sep 29 16:29 ..

If I run ./install.sh from the commandline in SSH this is the output:

[root@srv105 scripts]# ./install.sh
Could not open input file: scripts/ixed.php.
Could not open input file: sources/update.php.
Plugin Installed!

I've try to change the lines where the php files are (see the bold) of install.sh to:
#!/bin/sh

cd $DOCUMENT_ROOT;
cd ..

perl -pi -e 's/(bind_address=.+)/#$1/g' /usr/local/directadmin/conf/directadmin$

/usr/local/bin/php /usr/local/directadmin/plugins/iTron/scripts/ixed.php
/usr/local/bin/php /usr/local/directadmin/plugins/iTron/sources/update.php

echo "Plugin Installed!";

exit 0;

and get this:
[root@srv105 scripts]# ./install.sh
orbit.c: In function âmainâ:
orbit.c:11: warning: incompatible implicit declaration of built-in function âexitâ
orbit.c:22: warning: incompatible implicit declaration of built-in function âexitâ

Also check the chmod settings of the files:
[root@srv105 scripts]# ls -al
drwxr-xr-x 2 root root 4096 Sep 29 16:29 .
drwx--x--x 13 diradmin diradmin 4096 Sep 29 16:36 ..
-rwx------ 1 root root 233 Sep 10 13:40 install.sh
-rw-rw-rw- 1 root root 1189 Sep 29 16:28 ixed.php
-rw-r--r-- 1 root root 49 Sep 10 13:40 uninstall.sh
-rw-r--r-- 1 root root 117 Sep 26 14:24 update.sh

So... Hopefully someone can help us with this problem.
 
Have you tried writing their support email address?

Or posting on their own forum?

Jeff
 
The solution was to change the directories in install.sh by hand and run it from the commandline with SSH.

Than ignore the warnings. If you goto DA you'll see that the script is installed correctly.
 
Back
Top