Jump to content

ninevolt

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

ninevolt's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I have websites where the cookie worked for both the domain and subdomain like the following up until today when people would log in. mainforum.com profiles.mainforum.com The cookie setting in the forum software only is checking .mainforum.com so that is not the issue (it was previously working) Then we recompiled PHP to add curl and imap now all of a sudden no one can get logged in to profiles, keep in mind; it was working before we recompiled and we have changed nothing aside from recompiling php Does anyone know what could cause this?
  2. RewriteEngine On #make the index work RewriteRule ^$ index.php #finds http://aardvarkspace.aardvarkforum.com/j.love #then turns it into http://aardvarkspace.aardvarkforum.com/j.love/ #checks if there is no slash on the end RewriteCond %{REQUEST_URI} !/$ #rewrites with the slash RewriteRule (^[-_A-Za-z0-9\ ].[-_A-Za-z0-9\ ]*)$ /$1/ [R=301,L] #Typical error document handler ErrorDocument 404 /notfound.php #if you go to http://aardvarkspace.aardvarkforum.com/j.love/ this makes it work RewriteCond %{REQUEST_URI} ^(.*)/ RewriteRule ^([^/]*)/$ member.php?username=$1 See how it has [-_A-Za-z0-9\ ].[-_A-Za-z0-9\ ] well its looking for period in the center somewhere When I try to make it look for EVERYTHING (including periods since usernames can have them), it just makes the thing go into an infinite loop or something Right now it can get j.love as a username but not a.b.c. as a username since that has multiple periods in it
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.