PDA

View Full Version : Disabling user registration and pointing people to a contact page


ShyK
06-22-2010, 08:21 PM
I know this may seem like an easy case but I'd like to verify what's the best way of doing this.
I manage a small forum that only has a few registrations from real, living human beings (as opposed to an insane amount of bots, no matter with what anti-bot measures), so manually registering them myself would not be a problem at all.

I suppose I should just "disable new registrations" completely in the vB options. If so, then is there a "streamlined" way of changing the "Sorry, registration has been disabled by the administrator." text on that page, or do I have to modify some php file in every update?

Thanks.

Edit: alright, I figured I had to enter a "translation" for that "phrase". If anyone has any suggestion (except attempting to deal with neverending spam), let me know.

JasonReynolds
06-23-2010, 02:11 AM
I would say put up the built in maintenance page on VBulletin, and use a php/html code re-directing to the contact us form, See if that works

noppid
06-23-2010, 04:22 AM
create a phrase named contact_us_to_register containing something like... "Registration is done via email. Please contact us to have an account set up." Put it in the Phrase Type register.

Now create a plugin on hook register_start.

Name the hook and title it "Redirect Register Page to Contact us.

For the php code, put....

eval(print_standard_redirect('contact_us_to_regist er '));

Then maybe edit template contactus and add info about asking to be registered.

Something like that.