01-12-2016, 04:13 PM
Here's what was happening. A login or register to the form just looked like the form was refreshing and nothing was happening...and it wasn't.
User sevol graciously gave me access to his server for some debugging. I enabled some extra error reporting on the register/login forms using the code
I was getting the following error...
This tells me that the fopen feature was disabled. Enabling it in the php.ini file seemed to have no affect. Adding a .htaccess with the right syntax caused an error 500 on the server. So, I added the line
to the top of the register and login forms. It fixed the problem on this server, and I'm currently exploring to see if that's something I should do in the main UserSpice code.
Thanks again, sevol!
User sevol graciously gave me access to his server for some debugging. I enabled some extra error reporting on the register/login forms using the code
Code:
error_reporting(E_ALL);
Code:
ini_set('display_errors', 1);
I was getting the following error...
Quote:Warning: file_get_contents(): https:// wrapper is disabled in the server configuration by allow_url_fopen=0
This tells me that the fopen feature was disabled. Enabling it in the php.ini file seemed to have no affect. Adding a .htaccess with the right syntax caused an error 500 on the server. So, I added the line
Code:
ini_set("allow_url_fopen", 1);
to the top of the register and login forms. It fixed the problem on this server, and I'm currently exploring to see if that's something I should do in the main UserSpice code.
Thanks again, sevol!