Snippets tagged “fatal-error”
6 snippets use this tag.
- Codeigniter: fatal error call to undefined function mysqli_init()PHP
Here's an example of how the error might appear in a Codeigniter application:
- Fatal error: Call to undefined function mysqli_connect()PHP
The "Fatal error: Call to undefined function mysqli_connect()" error in PHP typically occurs when the MySQLi extension is not enabled or properly configured in your PHP environment.
- PHP Fatal Error Failed opening required FilePHP
A "PHP Fatal Error: Failed opening required file" error usually occurs when a PHP script tries to include a file that does not exist or cannot be accessed.
- PHP Fatal error: Call to undefined function curl_init()PHP
This error message indicates that the PHP script is trying to use the cURL library, which is not installed or enabled on the server.
- PHP Fatal error: Call to undefined function json_decode()PHP
This error usually occurs when you are trying to use the json_decode() function, which is used to decode a JSON string into a PHP variable, but the function is not available.
- PHP Fatal error: Cannot access empty propertyPHP
This error message typically occurs in PHP when you are trying to access a property of an object or variable that has not been initialized or does not exist.