The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#11
|
|||
|
|||
Anyone here please help me to solve this problem please.....
|
#12
|
||||
|
||||
Check in vboptions/Site Name and URL, make sure all is correct.
BACKUP YOUR .htaccess file before you edit it Check your .htaccess file for the following. Add this if it does not have it. Code:
RewriteEngine on RewriteCond %{HTTP_HOST} ^webmasterforumuk\.com$ [OR] RewriteCond %{HTTP_HOST} ^www\.webmasterforumuk\.com$ RewriteRule ^/?$ "http\:\/\/webmasterforumuk\.com\/" [R=301,L] --------------- Added [DATE]1385011625[/DATE] at [TIME]1385011625[/TIME] --------------- IN vboptions, Site Name & URL, remove WWW, that should correct your issue. |
#13
|
|||
|
|||
The htaccess file has following content:
Code:
# Comment the following line (add '#' at the beginning) # to disable mod_rewrite functions. # Please note: you still need to disable the hack in # the vBSEO control panel to stop url rewrites. RewriteEngine On # Some servers require the Rewritebase directive to be # enabled (remove '#' at the beginning to activate) # Please note: when enabled, you must include the path # to your root vB folder (i.e. RewriteBase /forums/) #RewriteBase / #RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com #RewriteRule (.*) http://www.yourdomain.com/forums/$1 [L,R=301] RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L] RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap|api\.php) RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/ RewriteRule ^(.+)$ vbseo.php [L,QSA] --------------- Added [DATE]1385016016[/DATE] at [TIME]1385016016[/TIME] --------------- Have edited the htaccess and removed the www...but now firefox is saying: The page isn't redirecting properly Firefox has detected that the server is redirecting the request for this address in a way that will never complete. --------------- Added [DATE]1385016572[/DATE] at [TIME]1385016572[/TIME] --------------- This is the htaccess now: Code:
# Comment the following line (add '#' at the beginning) # to disable mod_rewrite functions. # Please note: you still need to disable the hack in # the vBSEO control panel to stop url rewrites. RewriteEngine On # Some servers require the Rewritebase directive to be # enabled (remove '#' at the beginning to activate) # Please note: when enabled, you must include the path # to your root vB folder (i.e. RewriteBase /forums/) #RewriteBase / RewriteEngine On RewriteCond %{HTTP_HOST} ^webmasterforumuk\.com$ [OR] RewriteCond %{HTTP_HOST} ^www\.webmasterforumuk\.com$ RewriteRule ^/?$ "http\:\/\/webmasterforumuk\.com\/" [R=301,L] RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L] RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap|api\.php) RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/ RewriteRule ^(.+)$ vbseo.php [L,QSA] I have also noticed that this problem is coming on index page......is there anything wrong in index.PHP? |
#14
|
||||
|
||||
In vboptions, Site Name & URL, are you using www? If so, remove it.
|
#15
|
|||
|
|||
When i added that .htaccess code and removed www in site url, i was getting error in firefox that :
Code:
The page isn't redirecting properly Firefox has detected that the server is redirecting the request for this address in a way that will never complete. Code:
The site has a Rediretion loop Eddie, Please tell me a better solution, if possible can we have a team viewer session please..? |
#16
|
||||
|
||||
Don't remove www from the .htaccess, that needs to stay.
In your admincp/vbulletin options/Site Name & URL, you are using www in the URL, remove www. |
#17
|
|||
|
|||
I haven't removed www from htaccess, i had removed it from vbulletin options>>site url
Can you tell if this htaccess code is ok: Code:
# Comment the following line (add '#' at the beginning) # to disable mod_rewrite functions. # Please note: you still need to disable the hack in # the vBSEO control panel to stop url rewrites. RewriteEngine On # Some servers require the Rewritebase directive to be # enabled (remove '#' at the beginning to activate) # Please note: when enabled, you must include the path # to your root vB folder (i.e. RewriteBase /forums/) #RewriteBase / RewriteEngine On RewriteCond %{HTTP_HOST} ^webmasterforumuk\.com$ [OR] RewriteCond %{HTTP_HOST} ^www\.webmasterforumuk\.com$ RewriteRule ^/?$ "http\:\/\/webmasterforumuk\.com\/" [R=301,L] RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L] RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap|api\.php) RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/ RewriteRule ^(.+)$ vbseo.php [L,QSA] Now i have removed www from vbulletin options>>site url and have this code in htaccess file: Code:
# Comment the following line (add '#' at the beginning) # to disable mod_rewrite functions. # Please note: you still need to disable the hack in # the vBSEO control panel to stop url rewrites. # Some servers require the Rewritebase directive to be # enabled (remove '#' at the beginning to activate) # Please note: when enabled, you must include the path # to your root vB folder (i.e. RewriteBase /forums/) RewriteEngine on #RewriteBase / RewriteCond %{HTTP_HOST} ^webmasterforumuk\.com$ [OR] RewriteCond %{HTTP_HOST} ^www\.webmasterforumuk\.com$ RewriteRule ^/?$ "http\:\/\/webmasterforumuk\.com\/" [R=301,L] RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L] RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap|api\.php) RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/ RewriteRule ^(.+)$ vbseo.php [L,QSA] Code:
The page isn't redirecting properly Firefox has detected that the server is redirecting the request for this address in a way that will never complete. This problem can sometimes be caused by disabling or refusing to accept cookies. Eddie is offline, Why no vbulletin official replying here? I was told in the ticket that i will be helped on the forums..... |
#18
|
||||
|
||||
It all looks good and will work fine as soon as you delete your cookies & edit your shortcut to your site on your desk top removing www from it.
I have no issues using FF or IE logging in and out. |
#19
|
|||
|
|||
So it will not work with WWW...?
--------------- Added [DATE]1385181872[/DATE] at [TIME]1385181872[/TIME] --------------- its not working and giving the same error on firefox.... I deleted the cookies and tried to hard refresh ctrl+f5 but that redirection error is still coming... |
#20
|
||||
|
||||
It will work with both but will redirect to site without www.
Check your navbar template to see if you used full URL in links & remove www from them, in fact search all templates & remove www if you have it in them. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|