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
A phpBB extension that will allow you to check, optimize and repair phpBB's MySQL database tables from a phpMyAdmin-like interface in the Administration Control Panel or from the CLI.
3
+
A phpBB extension that will allow you to check, optimize and repair phpBB's MySQL database tables in the Administration Control Panel or from the Command Line Interface.
> Use this extension at your own risk! There have been cases with certain shared web hosts where a database table could crash for a very large forum. This extension will perform the same functions on your database as phpMyAdmin, so if you have been using phpMyAdmin on your database with no problems, then it should be safe to use this extension. It is always safest to run a backup of your database before performing any Optimize or Repair functions just in case anything goes wrong.
34
+
> Use this extension at your own risk! There have been cases with certain shared web
35
+
> hosts where a database table could crash for a huge forum. This extension will perform
36
+
> the same functions on your database as phpMyAdmin, so if you have been using phpMyAdmin
37
+
> on your database with no problems, then it should be safe to use this extension. It is
38
+
> always safest to run a backup of your database before performing any Optimize or Repair
39
+
> functions just in case anything goes wrong.
35
40
36
41
> Note: InnoDB table types do not support the Repair option.
37
42
@@ -40,21 +45,29 @@ The Optimize & Repair Tool can also be run from the command line interface in
40
45
phpBB using the `db:tool` command. The tool will prompt you to choose an operation:
41
46
Optimize, Repair, or Check.
42
47
43
-
To check, optimize or repair all tables:
48
+
To check, optimize, or repair all tables:
44
49
45
-
`$ php bin/phpbbcli.php db:tool`
50
+
```bash
51
+
php bin/phpbbcli.php db:tool
52
+
```
46
53
47
-
To check, optimize or repair a specific table:
54
+
To check, optimize, or repair a specific table:
48
55
49
-
`$ php bin/phpbbcli.php db:tool table_name`
56
+
```bash
57
+
php bin/phpbbcli.php db:tool table_name
58
+
```
50
59
51
60
To disable the board during an operation, use the `--disable-board` or `-D` option:
52
61
53
-
`$ php bin/phpbbcli.php db:tool --disable-board`
62
+
```bash
63
+
php bin/phpbbcli.php db:tool --disable-board
64
+
```
54
65
55
-
For help with the Optimize & Repair Tool command:
66
+
To see help for the Optimize & Repair Tool command:
56
67
57
-
`$ php bin/phpbbcli.php db:tool --help`
68
+
```bash
69
+
php bin/phpbbcli.php db:tool --help
70
+
```
58
71
59
72
## Uninstall
60
73
1. Navigate in the ACP to `Customise -> Manage extensions`.
Copy file name to clipboardExpand all lines: composer.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
"type": "phpbb-extension",
4
4
"description": "A phpBB extension that allows you to check, optimize and repair phpBB's MySQL database tables from a phpMyAdmin-like interface in the Administration Control Panel or from the CLI.",
0 commit comments