MyBB Community Forums

Full Version: Need Fast Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

so my english is not good but i need help, sorry for that.

My Forum looks like this:

My Forum

i alredy have put in a new theme but it totlay dont work.. Can anyone help me?
hmm., what is urgency !!
anyway, www is forced for your forum url (may be it is done at web host panel) - remove that and check
or assuming that you can login to forum admin panel, add www for the board url at the Site Details (configuration --> settings)
If you can access admin panel, follow the istructions given by .m.

Otherwise, go to your phpmyadmin and execute these queries:

UPDATE 
	`mybb_settings` 
SET 
	value = REPLACE(value, 'http://', 'http://www.') 
WHERE 
	name = 'bburl' 
	AND value NOT LIKE 'http://www.%'

UPDATE 
	`mybb_settings` 
SET 
	value = REPLACE(value, 'http://', 'http://www.') 
WHERE 
	name = 'homeurl' 
	AND value NOT LIKE 'http://www.%'


PS: if your table prefix isn't mybb_ you have to change it in queries.

If it isn't working, add this to the end of your .htaccess file:

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

If you do this, you need also to update the cookie path.