Gossamer Forum
Home : Products : Others : Fileman :

Doesn't work on plesk

Quote Reply
Doesn't work on plesk
The install process went fine,but I get an internal server error trying to access fileman.cgi. I checked the paths in ConfigData.pm --they look ok.
Chmods for the first-level files and directories are: ConfigData.pm --666; fileman.cgi --755;
/images and /private were 755, and I tried 777 with those. In /private, the chmods for lib and /templates were 755, I tried 777 as well. /temp was already 777.
I looked at .htaccess inside /private with another file manager (Genesis) and this is what it contains:
Code:
AuthGroupFile /dev/null
AuthName Protected
AuthType Basic

deny from all
Is that denying me access?
What else can I check?
I'm not an expert, but have installed dozens of cgi scripts. I'm client on a remotely hosted plesk server, and don't have telnet access, just ftp.

thanks for any help--

Last edited by:

kenner: Apr 15, 2002, 10:09 PM
Quote Reply
Re: [kenner] Doesn't work on plesk In reply to
Some possible ideas.

Check your error log..../home/httpd/vhosts/domain.com/logs/error_log
Check your su_exec log..../var/log/httpd/suexec_log
Quote Reply
Re: [Paul] Doesn't work on plesk In reply to
I don't have a su_exec log, but here's what my error log says:

Quote:
[Tue Apr 16 00:57:28 2002] [error] [client 207.190.66.181] Premature end of script headers: /httpdocs/cgibin/fileman.cgi
syntax error at /httpdocs/cgibin/private/lib/GT/Base.pm line 36, near "="
Global symbol "$ATTRIBS" requires explicit package name at
/httpdocs/cgibin/private/lib/GT/Base.pm line 41.
syntax error at /httpdocs/cgibin/private/lib/GT/Base.pm line 46, near "in your package"
Invalid separator character ',' in attribute list at /httpdocs/cgibin/private/lib/GT/Base.pm line 53, near "Note: This uses AUTOLOAD"
syntax error at /httpdocs/cgibin/private/lib/GT/Base.pm line 53, near "Note: This uses AUTOLOAD"
Compilation failed in require at fileman.cgi line 15.
BEGIN failed--compilation aborted at fileman.cgi line 15.
I DLed "Base.pm", opened it in BBEdit to put line numbers in, and the line numbers don't seem to coincide with the references in the log.
I changed permissions for all directories to 777, which has helped for other scripts but not this time.
Thanks for your reply, Paul--