Topic: How to Setting PvPGN WebRegistration with "email" method
What are all the steps for setting up with email method??
PvPGN Community Forums |
forums.pvpgn.pro → 3d Party Tools → How to Setting PvPGN WebRegistration with "email" method
What are all the steps for setting up with email method??
Do you mean activation new accounts via email?
Do you mean activation new accounts via email?
yes right...
how to do?
is it possible do web register if yes how? ty!
1. Execute "awaiting_activation.sql" into your db
2. config.php
$activation['method'] = "email";
3. Webregister uses php function mail(), which calls local smtp server. So it must be installed on your server.
oke done...
thanks you ^_^
how can install smtp on server
how can set smtp.gamil on that
You can deploy smtp server on your server machine (like a pvpgn) or use any external mail server like gmal, hotmail, yahoo etc.. SMTP settings for gmail
can you tell me if i want to use gmail smtp how can config web registry to use gmail smtp ?
webregister uses mail function with default smtp server settings in php.ini (localhost:25).
PHP doesn't support smtp authentication, but I can suggest you two ways to use gmail as smtp server:
a) Configure local smtp server. For example sendmail for windows.
b) Replace mail() function in includes\mail.php (line 22) with another, if you have some programming skill. For example good php mailer class with smtp authentication.
But you have to understand that gmail and other mail providers have restrictions like a number of emails to send per a day. So, if you have a dedicated server it's advisable to host your own mail server.
forums.pvpgn.pro → 3d Party Tools → How to Setting PvPGN WebRegistration with "email" method