i need help please

FileSick

Verified User
Joined
Oct 5, 2013
Messages
104
hi

i used cpanel for a while but i'm new to directadmin but i like and i think it's better but i am facing couple of issues

my website is filesick.com and as you can see it shows error pages even after i deleted 400,405,...etc files and i want it to be like this http://i.imgur.com/gQipk4U.jpg and i want it to be like this for all of my directories but right now it shows error like i'm password protecting it so could you please help me out and tell me what to do to make it look like this

waiting for your respond
 
It is more Apache related

Admin Level
Clikk Custom Httpd Configurations -> Choose domainname -> Put this code in the box at the top -> Click Save

Code:
<Directory |DOCROOT|>
 Options Indexes FollowSymLinks
</Directory>

Restart Apache!
 
If the file name is too long, Apache will shorten them.
You can specify the full length by adding IndexOptions NameWidth=* inside the tag.

Code:
<Directory |DOCROOT|>
 Options Indexes FollowSymLinks
[B] IndexOptions NameWidth=*[/B]
</Directory>
 
Back
Top