XFileSharing Pro - Upload/Add Server

Message
Author
Puska88
Posts: 17
Joined: Apr 14, 2011 5:22 pm

Upload/Add Server

#1 Postby Puska88 » Apr 14, 2011 5:30 pm

Hi,

i have a problem, when i want to add a server i get 500 error.
htaccess delete, server added, hta. back, files uploaded, and when click download link its open the rar in text format or Internal Server Error...

"[Thu Apr 14 18:46:20 2011] [alert] [client 217.112.135.1] /var/chroot/home/content/93/7695893/html/files/.htaccess: Option All not allowed here"

any idea for this?

Anturaju93
Posts: 91
Joined: May 13, 2010 6:46 pm

#2 Postby Anturaju93 » Apr 15, 2011 9:07 am

Try this,
AllowOverride All
in your httpd.conf file under the virtual host , like this:

Code: Select all

DocumentRoot /home/video/public_html
ServerName vechi.tv
<Directory "/home/video/public_html">
[b]AllowOverride All[/b]
allow from all
Options +Indexes
</Directory>
ScriptAlias /cgi-bin "/home/video/public_html/cgi-bin"
ServerAdmin [email protected]
ServerAlias www.vechi.tv
You must have AllowOverride All enabled before so that .htaccess can work.