Mysidia Adoptables Support Forum

Mysidia Adoptables Support Forum (http://www.mysidiaadoptables.com/forum/index.php)
-   Questions and Supports (http://www.mysidiaadoptables.com/forum/forumdisplay.php?f=18)
-   -   User login dependant on if there's a "www." in the url (http://www.mysidiaadoptables.com/forum/showthread.php?t=1296)

Quillink 02-02-2010 08:36 AM

User login dependant on if there's a "www." in the url
 
I've noticed that if you're logged in (on my site and other adoptable sites using this script) that if you log in on "www.site.com/etc" and then switch over to just "site.com/etc" they are logged out. Is there any way around this? Such as automatic redirection to "www.site" or something else?

Thanks in advance. ;)

Arianna 02-02-2010 11:29 AM

RE: User login dependant on if there's a "www." in the url
 
This is because the cookies are set this way.
Perhaps on when it sets the cookies, have it set it both ways? Some people like www, some don't, so you can't win by redirection, I think... :P

BMR777 02-02-2010 03:11 PM

RE: User login dependant on if there's a "www." in the url
 
That's odd. The cookies should work for both versions. I'll look into it.

fadillzzz 02-03-2010 02:57 AM

RE: User login dependant on if there's a "www." in the url
 
put this in your .htaccess to redirect all non www to www
Code:

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yoursite.com [NC]
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [L,R=301]


Quillink 02-03-2010 06:10 AM

RE: User login dependant on if there's a "www." in the url
 
Hmm doesnt seam to work. :\

I don't need to enable htaccess anywhere, do I?

fadillzzz 02-03-2010 12:17 PM

RE: User login dependant on if there's a "www." in the url
 
have you change the yoursite.com to your domain?

If it still doesn't work, try to put this code in your .htaccess instead
Code:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^yourdomain\.com$
RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L]


Quillink 02-03-2010 09:38 PM

RE: User login dependant on if there's a "www." in the url
 
This is what my .htaccess looks like with your code:

Code:

RewriteEngine On

RewriteCond %{HTTP_HOST} arvyre\.com$
RewriteRule (.*) http://www.arvyre.com/$1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^get/([0-9]+).gif$ /adoptables200/siggy.php?id=$1 [L]

It doesn't seem to be working. Is there anything incorrect in the extract above?

fadillzzz 02-04-2010 02:07 AM

RE: User login dependant on if there's a "www." in the url
 
You forgot to put a "^" before arvyre\.com$ on line 3
Code:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^arvyre\.com$
RewriteRule (.*) http://www.arvyre.com/$1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^get/([0-9]+).gif$ /adoptables200/siggy.php?id=$1 [L]

oh and I just realized on your registration page the allowed length value for the password and password confirmation box are not the same...shouldn't you be fixing it?

Quillink 02-04-2010 02:16 AM

RE: User login dependant on if there's a "www." in the url
 
Quote:

Originally Posted by fadillzzz
oh and I just realized on your registration page the allowed length value for the password and password confirmation box are not the same...shouldn't you be fixing it?

Hmm that's interesting, I haven't edited that text area at all..? Thank's for pointing it out. :D

The .htaccess still doesn't seem to work. :S Any other ideas?

fadillzzz 02-04-2010 02:21 AM

RE: User login dependant on if there's a "www." in the url
 
hmm...this should be a lot easier if you configure it throught cPanel...don't you have cPanel access to your website?


All times are GMT -5. The time now is 09:53 AM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.