| Name | Last modified | Size | Description | |
|---|---|---|---|---|
| Parent Directory | - | |||
| phpBB3-2026-02-07_020001.sql.gz | 2026-02-07 02:00 | 49 | ||
| phpBB3-2026-02-06_020001.sql.gz | 2026-02-06 02:00 | 49 | ||
Open your terminal or command prompt.
Create New the target database phpBB3.
If it doesn't, connect to your MySQL server and create it:
mysql -u root -p # Enter your password when prompted mysql> CREATE DATABASE phpBB3; |
Run the restore command (from your system's command line, not inside the mysql> prompt):
mysql -u dbuser_name -p phpBB3 < backup_file.sql # Enter your password when prompted |
Use the GRANT ALL PRIVILEGES command
to give the user full access to a specific database.
Replace database_name and dbuser with your actual names.
GRANT ALL PRIVILEGES ON phpBB3.* TO 'dbuser'@'localhost'; FLUSH PRIVILEGES; exit; |