| Re: problem: new user registration + confirmation code |
| by cybersensei on 2008/12/18 18:57:02 You were on the right track if (!isActive()) { $is_valid = true; } elseif ( is_object($GLOBALS["xoopsUser"]) && !empty($skipMember) ) { should be if ($this->config['disabled']) { $is_valid = true; } elseif ( is_object($GLOBALS["xoopsUser"]) && !empty($skipMember) ) { |
| Re: problem: new user registration + confirmation code |
| by Pirigoso on 2008/10/5 18:08:47 thx i set defaul config install and instalad php5-gd all work |
| Re: problem: new user registration + confirmation code |
| by Pirigoso on 2008/10/5 17:58:28 please help-me i installed php5-gd in system administrator show module instaled # openssl # apache # gd # mysql # mysqli i modify /class/captcha/config.php change "disabled" => false, // Disable CAPTCHA to "disabled" => true, // Disable CAPTCHA and if ( is_object($GLOBALS["xoopsUser"]) && !empty($skipMember) ) { to if (!isActive()) { $is_valid = true; } elseif ( is_object($GLOBALS["xoopsUser"]) && !empty($skipMember) ) { dont register new member, please help me i clean templeates and restart my apache server http://www.vipnetsul.com.br |
| Re: problem: new user registration + confirmation code |
| by Shiroku on 2008/9/23 22:03:35 I installed php5-gd (on Kubuntu Linux) and now users registration works! Thank's! |
| Re: problem: new user registration + confirmation code |
| by Marco on 2008/9/23 21:46:04 hy, that's the explanation go to admin/system overview, php extension, you should see GD (you have to make use of the default admin theme, set in general preferences). if you can not see the GD extension listed, that's the explanation for both of your problems. you can disable captcha in class/captcha/config, as explained here |