The following warnings occurred: | ||||||||||||
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.2.25 (Linux)
|
Login page error - Printable Version +- UserSpice (https://userspice.com/forums) +-- Forum: Miscellaneous (https://userspice.com/forums/forumdisplay.php?fid=28) +--- Forum: Off-topic Discussions (https://userspice.com/forums/forumdisplay.php?fid=10) +--- Thread: Login page error (/showthread.php?tid=752) |
Login page error - kingnath - 09-16-2017 My logging page is showing error "This page isn’t working betajobs.com.ng is currently unable to handle this request. HTTP ERROR 500" please how can i resolve it. Login page error - mudmin - 09-16-2017 Nearly every time this is caused by a misconfigured .htaccess file. If you have one in your root (or the folder above your root), rename it to htaccess.txt or something like that. Otherwise, there is a good chance that your php is not set to display errors so it gives a more generic error. Add these two lines beginning at line 2 of the page that is causing the errors... Code: error_reporting(E_ALL); Code: ini_set('display_errors', 1); Hopefully that will give you more information. Login page error - kingnath - 09-16-2017 In which folder will i locate the htaccess to rename because am having it in CLASSES, INCLUDES, HELPERS FOLDER. Login page error - kingnath - 09-16-2017 login.php already has the above code line but with a // comment tag, i just remove the comment tag but its still not working. The other pages have tested are working well so far. Login page error - mudmin - 09-16-2017 Those .htaccess files belong to userspice and are fine. They prevent people from looking in those folders. It's usually an .htaccess file in the root or even the folder below the root. Can you copy the entire file that you're having problems with to pastebin and paste the link here? Login page error - kingnath - 09-16-2017 OK this is it https://pastebin.com/jQ4mbvvw thanks... Login page error - mudmin - 09-16-2017 I'm going to send you an email... look for one from mudmin. |