Can someone help me please?
I am trying to install a extra file server but when I try to add the new server, I receive this error:
File Server tests:
api.cgi: ERROR (
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
)
upload.cgi: ERROR (problems with link)
htdocs URL accessibility: OK
What could be?
This is my File-Server XFSConfig.pm file content:
Code: Select all
# Directory for temporary using files, witout trailing /
temp_dir => '/home/es2/public_html/cgi-bin/temp',
# Directory for uploaded files, witout trailing /
upload_dir => '/home/es2/public_html/cgi-bin/uploads',
cgi_dir => '/home/es2/public_html/cgi-bin',
# Path to htdocs/files folder - to generate direct links, witout trailing /
htdocs_dir => '/home/es2/public_html/files',
# Path to htdocs/tmp folder
htdocs_tmp_dir => '/home/es2/public_html/tmp',
# FileServer auth key (generating when adding server)
fs_key => '',
dl_key => '',
# FileServer status
srv_status => 'ON',
# Your Main site URL, witout trailing /
site_url => 'http://www.enigmashare.com',
# Your Main site cgi-bin URL, witout trailing /
site_cgi => 'http://www.enigmashare.com/cgi-bin',
m_i => '',
m_v => '',
m_t => '',
m_r => '',
m_r_logins => '',
mu_logins => '',
nl_logins => '',
hf_logins => '',
bitflu_address => '127.0.0.1:4081',
This is my MAIN Server XFSConfig.pm file content:
Code: Select all
# Directory for temporary using files, witout trailing /
temp_dir => '/home/es1/public_html/cgi-bin/temp',
# Directory for uploaded files, witout trailing /
upload_dir => '/home/es1/public_html/cgi-bin/uploads',
cgi_dir => '/home/es1/public_html/cgi-bin',
# Path to htdocs/files folder - to generate direct links, witout trailing /
htdocs_dir => '/home/es1/public_html/files',
# Path to htdocs/tmp folder
htdocs_tmp_dir => '/home/es1/public_html/tmp',
# FileServer auth key (generating when adding server)
fs_key => 'HIDDEN',
dl_key => 'HIDDEN',
# FileServer status
srv_status => 'ON',
# Your Main site URL, witout trailing /
site_url => 'http://www.enigmashare.com',
# Your Main site cgi-bin URL, witout trailing /
site_cgi => 'http://www.enigmashare.com/cgi-bin',
m_i => '',
m_v => '',
m_t => '',
m_r => '',
m_r_logins => '',
mu_logins => '',
nl_logins => '',
hf_logins => '',
bitflu_address => '127.0.0.1:4081',
This two fields is the same in the two files right?
Code: Select all
# Your Main site URL, witout trailing /
site_url => 'http://www.enigmashare.com',
# Your Main site cgi-bin URL, witout trailing /
site_cgi => 'http://www.enigmashare.com/cgi-bin',
What I am missing?