*

officela

  • ***
  • 64 posts
After New Register Error 500
« on: December 08, 2020, 02:35:29 PM »
Hello,

Updated to 4.2.0 and when i have a new user registration when i press register i should go to the main page with popup box informing me that i should check my email to activate the account, instead i get a white page of Error 500 ...... pressing refresh the page and it goes to the home page but without the popup..... something is not working as it should? how to fix this?   keep in mind the user is created normal when i go to back-end i can see the user i just created.

I found that i get the same error when i publish new property ! error 500
« Last Edit: December 08, 2020, 02:55:15 PM by officela »

*

MB Themes

Re: After New Register Error 500
« Reply #1 on: December 08, 2020, 03:20:44 PM »
@officela
1) enable error log and check what you have there
2) try to disable all plugins and test again
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

Marked as best answer by frosticek on December 08, 2020, 03:43:37 PM
*

officela

  • ***
  • 64 posts
Re: After New Register Error 500
« Reply #2 on: December 08, 2020, 03:39:53 PM »
Hello,
I've found the error!
Settings > Mail Server > Use POP before SMTP

I unchecked that and everything works great!
« Last Edit: December 08, 2020, 03:44:06 PM by MB Themes »

*

MB Themes

Re: After New Register Error 500
« Reply #3 on: December 08, 2020, 03:43:33 PM »
@officela
Yes if mail is being sent and error is thrown from PHP mailer, it will end up with error.
It's good to test mail server as first.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

officela

  • ***
  • 64 posts
Re: After New Register Error 500
« Reply #4 on: December 08, 2020, 03:45:15 PM »
I haven't touched that since 3.8 version or last time i upgraded on 4.1.1 version and could not think at all for this.....

happy to found from debug ........ Thanks Maybe this will help others too :)



*

cartagena68

  • ***
  • 71 posts
Re: After New Register Error 500
« Reply #5 on: December 14, 2020, 04:15:17 PM »
Also can be fixed in core side, in utils.php at the function osc_sendMail()
You can add this line after if (osc_mailserver_pop()) {
Code: [Select]
require_once osc_lib_path() . 'vendor/phpmailer/phpmailer/class.pop3.php' ;
But will be overwritten with every osclass update
« Last Edit: December 14, 2020, 04:17:33 PM by cartagena68 »

*

MB Themes

Re: After New Register Error 500
« Reply #6 on: December 14, 2020, 05:16:46 PM »
@cartagena68
PHP mailer does not use this file from 6 version, not quite sure if this would be correct solution.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

cartagena68

  • ***
  • 71 posts
Re: After New Register Error 500
« Reply #7 on: December 14, 2020, 11:13:48 PM »
@MB Themes

I find it using the error log, was saying that no such file (class.pop3.php) in the directory, added that line to the file had solved the problem for me, of course, today with the new update I had to add the line again

*

MB Themes

Re: After New Register Error 500
« Reply #8 on: December 15, 2020, 03:43:38 PM »
@cartagena68
Yes but in vendors folder, if you would clean up before installation, you would realize this file is not part of PHP mailer anymore.
https://github.com/PHPMailer/PHPMailer/tree/master/src
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

cartagena68

  • ***
  • 71 posts
Re: After New Register Error 500
« Reply #9 on: December 15, 2020, 08:41:22 PM »
@MB Themes
Ok, but in the function osc_sendMail($params) in utils.php the POP3 class is called, where it gets the class from? I see that there is a POP3.php file with the class POP3, maybe you should require that file

*

MB Themes

Re: After New Register Error 500
« Reply #10 on: December 15, 2020, 10:44:38 PM »
Autoloader from vendors folder handle all dependencies and is generated by composer.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots