How activation on mail off? MuWordpress stand on local server ):
P.S. English bad :)
How activation on mail off? MuWordpress stand on local server ):
P.S. English bad :)
Not sure but you as the site admin can create blogs at the bottom of Dashboard -> Site Admin -> Blogs.
No, i need this form registration: http://wordpress.com/signup/?new=mu (example).
The wp_mail function sends the email and it is a pluggable function. You'll find it in wp-includes/pluggable.php So you can replace it with a function of the same name that does nothing if you don't want the email sent.
eg.
function wp_mail($to, $subject, $message, $headers = '') {
}
oh, you may have to return something from this new function maybe return 1?? Not sure, you can play with it.
Hope this helps,
Richard
you can go to phpmyadmin (or whatever your database manager), check on (wp_)signups table, then find activation key for your newly registered user.
next, copy the key then go to http://your-localhost/wpmu-folder/wp-activate.php?key=XXXX
while XXXX is the activation key (normally 16 digits)
next, you will be shown your password. memorized it, or copy-paste it, login, then change to familiar password
There was a way to skip the activation email and auto approve the signups. Dang that I caqn't find it right off though.
drmiketemp , if you find it, you make us happy, a re-captcha would be more usefull than an email activation.