| View previous topic :: View next topic |
| Author |
Message |
tippis
Joined: 25 Aug 2009 Posts: 2
|
Posted: Aug 25, 2009 8:39 am Post subject: fsi.cgi ERROR whats wrong ? |
|
|
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 |
|
| Back to top |
|
 |
PilgrimX182

Joined: 22 Mar 2006 Posts: 2109 Location: UFO Lab
|
Posted: Aug 25, 2009 10:24 am Post subject: |
|
|
| If you have ssh root, try to ping your site domain. I believe it's not resolving somehow. This is frequent problem with DNS. |
|
| Back to top |
|
 |
tippis
Joined: 25 Aug 2009 Posts: 2
|
Posted: Aug 25, 2009 10:45 am Post subject: |
|
|
i can ping.
my domain is answering |
|
| Back to top |
|
 |
PilgrimX182

Joined: 22 Mar 2006 Posts: 2109 Location: UFO Lab
|
Posted: Aug 25, 2009 12:54 pm Post subject: |
|
|
Then let's debug a bit.
in api.cgi find line
| Code: | | push @tests, $res->content =~ /^OK/ ? 'fs.cgi: OK' : 'fs.cgi: ERROR'; |
and replace with
| Code: | | push @tests, $res->content =~ /^OK/ ? 'fs.cgi: OK' : 'fs.cgi: ERROR '.$res->content; |
now you will see response from fs.cgi in error. |
|
| Back to top |
|
 |
|