have searched the forum for an answer but i can't find what i am interested in. I have a problem with Virtual Directory Suport wich apears disabled on my server. http://crazydesign.ath.cx/coin/phpinfo.php - phpinfo page Now... can anyone please tell me how can i make to enable the virtual directory suport? Thank you in advance.
Sorry about the link. http://crazydesign.ath.cx/phpinfo.php - this is the good one... I want to enable the virtual directory support. I don't know hot to eplain you better but i will try to do my best. I have www.CrazyDesign.ath.cx in /var/ww/html/web3/web The site is working perfect, but, if i make a new folder there, (let's say "pictures" ), and i put there some pics, when i try to see www.CrazyDesign.ath.cx/pictures i get an 403 Error- Forbidden! . I whould like to know what should i do to make it to show me the content of that folder without making a index page. Thank you
Ok, you men that you want to get a list of all files in the pictures directory? Do you want to enable this only for the pictures directory or for all website directorys without an index file?
I want to enable that feature for the whole web site and for the rest of web site's i host on that server. from what i know that is possible but i don't know hot to do it.
The feature you are missing is nemd Indexes and has noting to do with php. Please open your apache configuration file and chenge the part: Code: <Directory /home/www/*/web> Options +Includes +FollowSymlinks -Indexes AllowOverride Indexes AuthConfig Limit FileInfo Order allow,deny Allow from all <Files ~ "^\.ht"> Deny from all </Files> </Directory> to: Code: <Directory /home/www/*/web> Options +Includes +FollowSymlinks +Indexes AllowOverride Indexes AuthConfig Limit FileInfo Order allow,deny Allow from all <Files ~ "^\.ht"> Deny from all </Files> </Directory> The difference is that I changed -Indexes to +Indexes in the Options directive. Dont forget to remove your phpinfo file