Re: [users@httpd] Stumped: Apache Permissions, What's Wrong?

2013-12-02 Thread Kevin Smith
Here is my latest, revised config file and it works. Thanks for all the help, everyone. DocumentRoot /var/www/phreebooks ServerName billing.website.com Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all On Mon, Dec

Re: [users@httpd] Stumped: Apache Permissions, What's Wrong?

2013-12-02 Thread Freek de Kruijf
Op maandag 2 december 2013 13:46:12 schreef Kevin Smith: > I modified it to look like this, but I've tried this, before to no effect > and it still has no effect, now. > > > DocumentRoot /var/www/phreebooks > ServerName billing.website.com > > Order Allow,Deny

Re: [users@httpd] Stumped: Apache Permissions, What's Wrong?

2013-12-02 Thread Eric Covener
On Mon, Dec 2, 2013 at 2:46 PM, Kevin Smith wrote: > I modified it to look like this, but I've tried this, before to no effect > and it still has no effect, now. > > > DocumentRoot /var/www/phreebooks > ServerName billing.website.com > > Order Allow,Deny > Allow From All > Require Allow All > >

Re: [users@httpd] Stumped: Apache Permissions, What's Wrong?

2013-12-02 Thread Kevin Smith
I modified it to look like this, but I've tried this, before to no effect and it still has no effect, now. DocumentRoot /var/www/phreebooks ServerName billing.website.com Order Allow,Deny Allow From All Require Allow All Log file /var/log/apache2/error.log

Re: [users@httpd] Stumped: Apache Permissions, What's Wrong?

2013-12-02 Thread Eric Covener
No mention of an error.log. That's step 1. The error may point you towards either Apache or OS/filesystem permissions (incl e.g. SELinux). - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mai

Re: [users@httpd] Stumped: Apache Permissions, What's Wrong?

2013-12-02 Thread Darryle Steplight
Add "Order Allow, Deny" above "allow from all" On Mon, Dec 2, 2013 at 11:23 AM, Freek de Kruijf wrote: > Op maandag 2 december 2013 09:37:23 schreef Kevin Smith: >> I have been fighting an apache server for 2 days, trying to figure out why >> this thing keeps denying access to the server. Check o

Re: [users@httpd] Stumped: Apache Permissions, What's Wrong?

2013-12-02 Thread Freek de Kruijf
Op maandag 2 december 2013 09:37:23 schreef Kevin Smith: > I have been fighting an apache server for 2 days, trying to figure out why > this thing keeps denying access to the server. Check out the settings: > > > DocumentRoot "/var/www/phreebooks" > ServerName billing.website.com (omitted for sec

[users@httpd] SSLRequire thread safety

2013-12-02 Thread Philip Wigg
Hi, I'm going to use SSLRequire using the worker MPM. The docs say, "The implementation of SSLRequire is not thread safe. Using SSLRequire inside .htaccess files on a threaded MPM may cause random crashes." Does this mean that I'm okay with threaded MPM if I'm only using SSLRequire inside httpd.

[users@httpd] Stumped: Apache Permissions, What's Wrong?

2013-12-02 Thread Kevin Smith
I have been fighting an apache server for 2 days, trying to figure out why this thing keeps denying access to the server. Check out the settings: DocumentRoot "/var/www/phreebooks" ServerName billing.website.com (omitted for security) allow from all Options +Indexes File permissions throughou

Re: [users@httpd] Re: Stopping httpd.exe on windows

2013-12-02 Thread Jeff Trawick
On Mon, Dec 2, 2013 at 10:05 AM, Tim Streater wrote: > On 02 Dec 2013 at 12:42, Jeff Trawick wrote: > > > On Mon, Dec 2, 2013 at 7:04 AM, Tim Streater > wrote: > > > >> I start httpd.exe from a PHP script, using this command string on Win7: > >> > >> start /b "" /d "c:\Program Files (x86)\Apa

[users@httpd] Re: Stopping httpd.exe on windows

2013-12-02 Thread Tim Streater
On 02 Dec 2013 at 12:42, Jeff Trawick wrote: > On Mon, Dec 2, 2013 at 7:04 AM, Tim Streater wrote: > >> I start httpd.exe from a PHP script, using this command string on Win7: >> >> start /b "" /d "c:\Program Files (x86)\Apache Software >> Foundation"\Apache2.2\bin httpd.exe -f z:\path\to\my\

Re: [users@httpd] Curious inability to mod_rewrite absolute paths

2013-12-02 Thread Tom Evans
On Sat, Nov 30, 2013 at 12:51 PM, Eric Covener wrote: > On Sat, Nov 30, 2013 at 2:53 AM, Borden Rhodes wrote: >> Assuming that the above steps accurately represent the exchange >> between Ff and httpd, am I to understand that there's no way to tell >> httpd in a .htaccess file at step 3 that a re

Re: [users@httpd] Stopping httpd.exe on windows

2013-12-02 Thread Jeff Trawick
On Mon, Dec 2, 2013 at 7:04 AM, Tim Streater wrote: > I start httpd.exe from a PHP script, using this command string on Win7: > > start /b "" /d "c:\Program Files (x86)\Apache Software > Foundation"\Apache2.2\bin httpd.exe -f z:\path\to\my\httpd.conf > > where z: is some drive letter and the ba

[users@httpd] Stopping httpd.exe on windows

2013-12-02 Thread Tim Streater
I start httpd.exe from a PHP script, using this command string on Win7: start /b "" /d "c:\Program Files (x86)\Apache Software Foundation"\Apache2.2\bin httpd.exe -f z:\path\to\my\httpd.conf where z: is some drive letter and the backslashes are doubled as they are within a PHP string. This ap