Re: [users@httpd] directoryindexing or what?

2011-10-20 Thread Georgi Georgiev
I didn't edit the virtualhosts, but I think that it's other (I don't have more than one IP, just one subdir - wordpress), wrong? Also the output of the command httpd -S is: VirtualHost configuration: Syntax OK

Re: [users@httpd] directoryindexing or what?

2011-10-20 Thread Georgi Georgiev
the problem is solved, thank you for your losed time. the problem was in overriding index.html index.php but not .php as all.

Re: [users@httpd] directoryindexing or what?

2011-10-19 Thread Georgi Georgiev
I have that lines on the config, but the result is same. One person sayed here that ifmudule line is wrong. Whether the problem may be here? I added new lines so there is #FilesMatch ^\.ht # Order allow,deny # Deny from all # Satisfy All #/FilesMatch FilesMatch \.php$ SetHandler

Re: [users@httpd] directoryindexing or what?

2011-10-19 Thread Frank Gingras
On 19/10/2011 11:03 AM, Georgi Georgiev wrote: I have that lines on the config, but the result is same. One person sayed here that ifmudule line is wrong. Whether the problem may be here? I added new lines so there is #FilesMatch ^\.ht # Order allow,deny # Deny from all # Satisfy All

Re: [users@httpd] directoryindexing or what?

2011-10-19 Thread Georgi Georgiev
After edit the same thing... Whether the problem may be in other section (or line) to post it here or php..and I don't know. Searched, reading documentation, asking people - not found solution..

Re: [users@httpd] directoryindexing or what?

2011-10-19 Thread Frank Gingras
On 19/10/2011 11:42 AM, Georgi Georgiev wrote: After edit the same thing... Whether the problem may be in other section (or line) to post it here or php..and I don't know. Searched, reading documentation, asking people - not found solution.. Georgi, What is happening, exactly, and what did

Re: [users@httpd] directoryindexing or what?

2011-10-19 Thread Georgi Georgiev
I have domain (documentroot - /var/www/htdocs) and subdirectory wordpress, but when open it with browser ...//wordpress it lists the .php files (example wp-config, wp-login.php etc) instead of loading the page. Previously solved the problem as put DirecoryIndex, but now whatever I try to do when

Re: [users@httpd] directoryindexing or what?

2011-10-19 Thread Frank Gingras
On 19/10/2011 12:26 PM, Georgi Georgiev wrote: I have domain (documentroot - /var/www/htdocs) and subdirectory wordpress, but when open it with browser ...//wordpress it lists the .php files (example wp-config, wp-login.php etc) instead of loading the page. Previously solved the problem as put

Re: [users@httpd] directoryindexing or what?

2011-10-19 Thread Georgi Georgiev
http://pastebin.com/TpRkeaVq some lines are commented (but tryed and when teh were uncommented - just experiments)

Re: [users@httpd] directoryindexing or what?

2011-10-19 Thread Frank Gingras
On 19/10/11 01:01 PM, Georgi Georgiev wrote: http://pastebin.com/TpRkeaVq some lines are commented (but tryed and when teh were uncommented - just experiments) Georgi, Best move the DirectoryIndex directive out of the Directory / block. Also, you keep remove the history from this thread,

[users@httpd] directoryindexing or what?

2011-10-18 Thread Georgi Georgiev
Hello, I have slackware 13.37 web server, but when I open from browser wordpress for example list the php file instead loading the site. I have in httpd.conf (tryed different variants) Directory / Options Indexes FollowSymLinks MultiViews AllowOverride Indexes #Order deny,allow

Re: [users@httpd] directoryindexing or what?

2011-10-18 Thread Mark Montague
On October 18, 2011 10:44 , Georgi Georgiev georgi@gmail.com wrote: Hello, I have slackware 13.37 web server, but when I open from browser wordpress for example list the php file instead loading the site. I have in httpd.conf (tryed different variants) Directory / Options Indexes

Re: [users@httpd] directoryindexing or what?

2011-10-18 Thread Tom Evans
On Tue, Oct 18, 2011 at 3:44 PM, Georgi Georgiev georgi@gmail.com wrote: Hello, I have slackware 13.37 web server, but when I open from browser wordpress for example list the php file instead loading the site. I have in httpd.conf (tryed different variants) Directory /     Options Indexes

Re: [users@httpd] directoryindexing or what?

2011-10-18 Thread Mark Montague
On October 18, 2011 14:35 , Frank Gingras francois.ging...@gmail.com wrote: You should not use AddType for this. Instead, use: FilesMatch \.php$ SetHandler application/x-httpd-php /FilesMatch See http://wiki.apache.org/httpd/PHPDownload and http://www.php.net/manual/en/install.unix.apache2.php

Re: [users@httpd] directoryindexing or what?

2011-10-18 Thread Frank Gingras
On 18/10/11 02:51 PM, Mark Montague wrote: On October 18, 2011 14:35 , Frank Gingras francois.ging...@gmail.com wrote: You should not use AddType for this. Instead, use: FilesMatch \.php$ SetHandler application/x-httpd-php /FilesMatch See http://wiki.apache.org/httpd/PHPDownload and