The controller that calls a service Controller: https://gist.github.com/BarryCarlyon/78dfdce06074f29a431e55288e9ec660 Service: https://gist.github.com/BarryCarlyon/d3327fd065eadbb358c58bae7dbc285f Had to remove the cURL calls and some other NDA/secrets I can prepare the rest of it into a whole zip b...
Hmm… That could be it. My function in ext/me/module/service/thing.php doesn't grab $config at all. It literally: include_once('includes/functions_user.php'); /* misc bits and pieces/some cURL calls */ $user_row = array( 'username' => SOMEUSERNAME, 'user_password' => phpbb_hash(time()), 'user_email' ...
Yes. My code does basically what the add user ext does The problem is that when two or more people are user_add'ed at the same time the result is: "duplicate entry for newest_user_colour" Again user_add is working fine with the assigned groups untile the lines of // set the newest user and...