You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue can cause an error while exporting sql code to database of phpmyadmin. This error don't verify the user login system. After analysis the sql code of file "SQL_Database_edoc.sql".
The missing code was after following comment line
--"-- Dumping data for table webuser"
The issue can be solve by adding
--"START TRANSACTION;".
=>To solve a problem:
open a file name "SQL_Database_edoc.sql"
go to line number 240 and paste the following code on it
START TRANSACTION;
Here you go, you can see the issue has been solve.
The text was updated successfully, but these errors were encountered:
The issue can cause an error while exporting sql code to database of phpmyadmin. This error don't verify the user login system. After analysis the sql code of file "SQL_Database_edoc.sql".
The missing code was after following comment line
--"-- Dumping data for table
webuser
"The issue can be solve by adding
--"START TRANSACTION;".
=>To solve a problem:
START TRANSACTION;
Here you go, you can see the issue has been solve.
The text was updated successfully, but these errors were encountered: