the wp login for is not opening. This is the response i keep getting
This page isn’t working
ejeoinvestments.com is currently unable to handle this request.
HTTP ERROR 500
The reason for the error should be visible in the error log. You can find it in your hosting area. If necessary, the support of your hosting can help you.
Alternatively, you could also enable debugging in WordPress. How to do this is described here: https://wordpress.org/support/article/debugging-in-wordpress/ – also here the support of your hosting can help you if necessary to edit the file accordingly.
In both cases you should be able to see what the cause is in the logfile.
Good morning,
I have a similar problem to Kross147. I cannot access my WP Admin to access my site. There is an error in my functions.php that I worked on yesterday, adding a short navigation function, and apparently an unknown syntax error in the Astra theme code base. I don’t know about the theme code base error because I did not work on the Astra theme base code at all. I could probably fix the problem if only I can access my Admin sign-in screen. I’ve contacted my host.
This is the error message: “Parse error: syntax error, unexpected token “$”, expecting variable in /home/safootball/domains/safootball.net/public_html/wp-content/themes/astra/functions.php on line 187
There has been a critical error on this website.”
Anyone able to guide how I could access my Admin sign-in or is that something only the host that can assist with?
Hallo,
Ich habe ein anderes Problem: besitze keine Zugangsdaten. Wie komme ich an diese? Wurden von anderer Person erstellt und nicht weitergegeben.
@anerju: bitte erstell dein eigenes Topic zu deinem eigenen Anliegen am besten gleich im deutschsprachigen Supportforum: https://de.wordpress.org/support/forum/allgemeine-fragen/#new-topic-0
I had the same issue before, and it’s usually caused by a plugin conflict, a corrupted .htaccess file, or PHP errors. Here’s what worked for me:
Disable Plugins – Connect via FTP or cPanel, go to wp-content/plugins, and rename the folder to plugins_old. This will deactivate all plugins. Try logging in.
Check .htaccess – Rename the .htaccess file in your root directory to .htaccess_old, then try logging in. If it works, reset permalinks in Settings > Permalinks.
Increase PHP Memory – Add this to wp-config.php:
define(‘WP_MEMORY_LIMIT’, ‘256M’);
Enable Debug Mode – Add this to wp-config.php to see errors in wp-content/debug.log:
define(‘WP_DEBUG’, true);
define(‘WP_DEBUG_LOG’, true);
define(‘WP_DEBUG_DISPLAY’, false);
If none of these work, it might be a hosting issue—reaching out to your provider could help. Hope this helps!