| Issue 2: | processes.php error | |
| 1 person starred this issue and may be notified of changes. | Back to list |
after setting up the constants.php i uploaded the folder to my host. i got this error. Fatal error: Call to undefined function phperror_reporting() in /home/content/93/11087893/html/website/auth/loginscript/include/processes.php on line 1 what the hack is this?
Oct 18, 2013
#1
ma...@getchatlabs.com
Nov 5, 2013
same here
Dec 14, 2013
Goto admin_processes.php
and on lines 199, 224, and 255
delete the underscore before POST
(i.e.) function delete_user($_POST, $delete) {
==TO==
(i.e.) function delete_user($POST, $delete) {
Jan 4, 2014
Im still getting an error after doing what you said... the error I get is... Fatal error: Call to undefined function phperror_reporting() in public_html/include/processes.php on line 1 any other solutions?
Mar 18, 2014
remove the space between error_reporting (E_ERROR | 0); so it is error_reporting(E_ERROR | 0); Who ever wrote this script needs to look over it all... Its horrific!
Jun 3, 2015
To solve this problem first add space after <?php error_reporting on process.php and then on mail.php that's it, it should work now. Hope I helped |