Fatal Error When Activating Wordpress Plugin On V11 and wordpress 6.8.1 |
6/14/2025 12:00:00 PM |
PHPRunner General questions | |
L
lcslouis author
[14-Jun-2025 15:49:15 UTC] PHP Fatal error: Uncaught Error: Failed opening required '/var/www/html/wp-content/plugins/wpphprunner/include/lang/.php' (include_path='.:/usr/local/lib/php') in /var/www/html/wp-content/plugins/wpphprunner/include/phpfunctions.php:3048 Currently Installed on Docker Testing Enviorment other wordpress plugins install without issue the wpsettings table is in the database |
|
![]() |
ChatGPT 6/14/2025 |
The error message you've encountered indicates that the PHP script is attempting to include a language file from a specific path, but it cannot find the file because the filename is empty ( Here are a few steps you can take to troubleshoot and potentially resolve the issue:
By following these steps, you should be able to diagnose and potentially fix the issue with PHPRunner in your WordPress Docker environment. If the problem persists, consider reaching out to PHPRunner support or community forums for more specialized assistance. |
L
|
lcslouis author 6/15/2025 |
hardcoding to English solved the activation issue on phpfunctions.php From function loadLanguageMessages( $filename ) { To This function loadLanguageMessages( $lang = 'en' ) { |