PDA

View Full Version : htaccess help please


shane94
11-04-2001, 12:00 AM
Ok here is the deal I go tmy paysite moved to my colocated server and am having hell setting up the htaccess file for my dialer. Here is the origional:

AuthUserFile /raid/sites/www.totallypornstars.com/ccbill/password/.htpasswd
AuthGroupFile /dev/null
AuthName Members
AuthType Basic

<Limit GET POST>
require valid-user
</Limit>


Here is what i am trying and getting a 500 error...what is wrong here? I have used this one before and it worked fine.

AuthUserFile /raid/sites/www.totallypornstars.com/ccbill/password/.htpasswd
# Name for this password-protected database:
AuthName "Members Area"
AuthType Basic
<limit GET>
require valid-user
Satisfy any
order deny,allow
deny from all
allow from 62.232.37.0/24
allow from 195.8.12.0/24
allow from 202.139.152.0/24
allow from 207.18.32.0/24
</limit>


Shane

Unknown
11-04-2001, 12:10 AM
Are you sure the path is correct?

shane94
11-04-2001, 12:12 AM
yes

shane94
11-04-2001, 12:14 AM
the whole site does not get a 500 error just when you try to go into it threw the ccbill entrance into the members area

Shane

mr. mpg
11-04-2001, 09:00 AM
Have you checked your error log? Perhaps it may point you in the correct direction.

shane94
11-04-2001, 10:56 AM
how do i access the error log =) I am a total dumbass at serer stuff hehe =)

shane94
11-04-2001, 11:02 AM
serer=server starting early this morning LOL

kafka
11-04-2001, 11:46 AM
Try this:


AuthUserFile /raid/sites/www.totallypornstars.com/ccbill/password/.htpasswd
AuthGroupFile /dev/null
AuthName Members
AuthType Basic

<Limit GET POST>
require valid-user
</Limit>


Here is what i am trying and getting a 500 error...what is wrong here? I have used this one before and it worked fine.

AuthUserFile /raid/sites/www.totallypornstars.com/ccbill/password/.htpasswd
# Name for this password-protected database:
AuthName "Members Area"
AuthType Basic


Satisfy any
order deny,allow
deny from all
allow from 62.232.37.0/24
allow from 195.8.12.0/24
allow from 202.139.152.0/24
allow from 207.18.32.0/24


<limit GET>
require valid-user
</limit>

kafka
11-04-2001, 11:49 AM
I mean:

AuthUserFile /raid/sites/www.totallypornstars.com/ccbill/password/.htpasswd
# Name for this password-protected database:
AuthName "Members Area"
AuthType Basic


Satisfy any
order deny,allow
deny from all
allow from 62.232.37.0/24
allow from 195.8.12.0/24
allow from 202.139.152.0/24
allow from 207.18.32.0/24


<limit GET>
require valid-user
</limit>

shane94
11-04-2001, 12:21 PM
I think I may have a configuration error in Apache. Going to let the techs look at it. Thank you for your advise though.

Shane