• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Account maker error

Norse

New Member
Joined
Sep 25, 2009
Messages
177
Reaction score
1
Location
Norway <3
Hello : )

I get this error when i try to make account in gesior

Warning: fsockopen() [function.fsockopen]: unable to connect to smtp.poczta.onet.pl:25 (A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. ) in C:\xampp\htdocs\phpmailer\class.smtp.php on line 105

Some one know how to fix ? :s
 
Last edited:
Do you have opted in to automatically send e-mail after completing the form. Try disabling this option, or configure your config.php

PHP:
$config['site']['create_account_verify_mail'] = 0; // when create account player must use right e-mail, he will receive random password to account like on RL tibia, 1 = yes, 0 = no
$config['site']['generate_new_reckey'] = 0; // let player generate new recovery key, he will receive e-mail with new rec key (not display on page, hacker can't generate rec key)
$config['site']['generate_new_reckey_price'] = 5; // you can get some Premium Points for new rec key
$config['site']['send_mail_when_change_password'] = 0; // send e-mail with new password when change password to account, set 0 if someone abuse to send spam
$config['site']['send_mail_when_generate_reckey'] = 0; // send e-mail with rec key (key is displayed on page anyway when generate), set 0 if someone abuse to send spam
$config['site']['send_register_email'] = 0; // send e-mail when register account
 
Last edited:
Back
Top