MySQL error query PHP mainly occurs due to incorrect data in the PHP file or due to permissions and ownership error.
Here at Bobcares, we receive requests to fix the MySQL error query PHP as a part of our Server Management Services for web hosts and online service providers.
Today, we’ll look at how our Support Engineers fix the MySQL error query PHP.
How we fix MySQL error query PHP
There can be many causes for this error message to occur. Fortunately, there are fixes for these different causes as well.
Now, let’s discuss the causes and see how our Support Engineers fix them.
1. Incorrect details in the PHP file leads to MySQL error
The MySQL details in the PHP file must be set correctly. If any data is incorrect then an error will display.
Recently, one of our customers approached us with an error message ‘MySQL error query PHP’.
Our Support Engineers were able to confirm that the trouble was with the PHP file in which the customer had set all the database details. The code in the file was as below:
<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
// Perform a query, check for error
if (!mysqli_query($con,"INSERT INTO Persons (FirstName) VALUES ('Glenn')"))
{
echo("Error description: " . mysqli_error($con));
}
mysqli_close($con);
?>
Here, the customer had set the wrong username under the my_user section present in the code. This caused the error. Our Support Engineers fixed the error by updating the username in the file.
2. Incorrect Permissions
Permissions are important for any file to load properly on the server. If there are any incorrect permissions set for any file then it generates an error or the output will not display.
So, all the files must have the permission of 644. We use the below command to change the permissions.
chmod 644 filename
Also, the folder in which these files reside must be set with the right permissions. The correct folder permission is 755. We use the below command to change the folder permissions:
chmod 755 folder_name
3. Incorrect ownerships
Similar to permissions, the ownership of the files also plays an important role. The ownership of the file can be either root or the username of the server. However, the right one must be set for the proper functionality of the file.
We change the ownership of the file using the below command:
chown username:username filename
If we need to set the ownership of the file as root then we run the below command:
chown root:root filename
4. MySQL server down
It is very important for the MySQL server to be up and running well. If MySQL is down, then the PHP file will not work that is connected to the database of the server.
We check the status of the MySQL using the command:
systemctl status mysql
In case, if the MySQL server is down and displays any error then we restart the MySQL server using the command:
systemctl restart mysql
[Need any further assistance on MySQL error? – We’ll fix it for you]
Conclusion
In short, the MySQL error query PHP is mainly related to the PHP file. And this can be either caused due to incorrect database details in the PHP file or incorrect permissions or incorrect ownership in files. Today, we saw how our Support Engineers fix this error.
0 Comments