MyBB Community Forums

Full Version: Registering Gives 404?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
A few people have contacted me on my forum saying they get a 404 on registering. It doesn't seem to be a problem with any of my plugins (Unless it's the Google SEO plugin or the Registration Security Question).

Some help on this would be great, I can't help but wonder how many members I could have if this problem wasn't occurring.


Edit: And creating a profile for them still results in the 404 when they try to log in apparently.
Forum URL?
http://pokebattlecenter.net Sorry, forgot to include that.
It works perfect for me!!!
It's after you submit the form. Do you have anything in your .htaccess?
Yeah, it does work for some people, just not all.

And here's the contents of my .htaccess file:

RewriteEngine on

# Some hosts require RewriteBase to make RewriteRules work.
RewriteBase /

# Google SEO workaround for search.php highlights:
# Make this rule the first rewrite rule in your .htaccess!
RewriteRule ^([^&]*)&(.*)$ http://pokebattlecenter.net/$1?$2 [L,QSA,R=301]

# Google SEO 404:
ErrorDocument 404 /misc.php?google_seo_error=404

# Google SEO Sitemap:
RewriteRule ^sitemap-([^./]+)\.xml$ misc.php?google_seo_sitemap=$1 [L,QSA,NC]

# Google SEO URL Forums:
RewriteRule ^Forum-([^./]+)$ forumdisplay.php?google_seo_forum=$1 [L,QSA,NC]

# Google SEO URL Threads:
RewriteRule ^Thread-([^./]+)$ showthread.php?google_seo_thread=$1 [L,QSA,NC]

# Google SEO URL Announcements:
RewriteRule ^Announcement-([^./]+)$ announcements.php?google_seo_announcement=$1 [L,QSA,NC]

# Google SEO URL Users:
RewriteRule ^User-([^./]+)$ member.php?action=profile&google_seo_user=$1 [L,QSA,NC]

# Google SEO URL Calendars:
RewriteRule ^Calendar-([^./]+)$ calendar.php?google_seo_calendar=$1 [L,QSA,NC]

# Google SEO URL Events:
RewriteRule ^Event-([^./]+)$ calendar.php?action=event&google_seo_event=$1 [L,QSA,NC]