XFileSharing Pro - fsi.cgi ERROR whats wrong ?

Message
Author
tippis
Posts: 2
Joined: Aug 25, 2009 8:38 am

fsi.cgi ERROR whats wrong ?

#1 Postby tippis » Aug 25, 2009 8:39 am

Hey Guys.
Can you tell me whats wrong ?

File Server tests:
api.cgi: OK
temp dir exist: OK
temp dir mkdir: OK
temp dir rmdir: OK
upload dir exist: OK
upload dir mkdir: OK
upload dir rmdir: OK
htdocs dir exist: OK
htdocs dir mkdir: OK
htdocs dir symlink: OK
htdocs dir symlink del: OK
htdocs dir rmdir: OK
config read: OK
config write: OK
fs.cgi: ERROR
upload.cgi: OK
upload_status.cgi: OK
htdocs URL accessibility: OK

User avatar
PilgrimX182
Posts: 2186
Joined: Mar 22, 2006 1:39 pm

#2 Postby PilgrimX182 » Aug 25, 2009 10:24 am

If you have ssh root, try to ping your site domain. I believe it's not resolving somehow. This is frequent problem with DNS.

tippis
Posts: 2
Joined: Aug 25, 2009 8:38 am

#3 Postby tippis » Aug 25, 2009 10:45 am

i can ping.
my domain is answering

User avatar
PilgrimX182
Posts: 2186
Joined: Mar 22, 2006 1:39 pm

#4 Postby PilgrimX182 » Aug 25, 2009 12:54 pm

Then let's debug a bit.
in api.cgi find line

Code: Select all

push @tests, $res->content =~ /^OK/ ? 'fs.cgi: OK' : 'fs.cgi: ERROR';
and replace with

Code: Select all

push @tests, $res->content =~ /^OK/ ? 'fs.cgi: OK' : 'fs.cgi: ERROR '.$res->content;
now you will see response from fs.cgi in error.