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
Copy file name to clipboardExpand all lines: README.md
+5-16Lines changed: 5 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,9 +59,9 @@ phpBB boards require a web server running PHP and one of the following database
59
59
60
60
## QuickInstall CLI
61
61
62
-
QuickInstall now includes a cross-platform, Docker-based CLI and local sandbox web UI for creating phpBB test boards. They work on macOS, Linux, and native Windows and write generated state to `.qi/` without changing the legacy web application.
62
+
QuickInstall now includes a cross-platform, Docker-based CLI and local Dashboard UI for creating phpBB test boards. They work on macOS, Linux, and native Windows and write generated state to `.qi/` without changing the legacy web application.
The examples use `php bin/qi`, which works on every supported operating system when PHP is in `PATH`. Windows users can alternatively use the supplied Command Prompt launcher from either Command Prompt or PowerShell:
78
-
79
-
```powershell
80
-
.\bin\qi.cmd board:list
81
-
```
82
-
83
76
The QuickInstall CLI targets phpBB 3.2+ installer-based boards. phpBB 3.0/3.1 remain legacy-web-app territory and are not planned for the QuickInstall CLI.
84
77
85
-
Downloaded extensions can be unzipped into `customisations/` and mounted into boards:
78
+
If you prefer a browser workflow, start the QuickInstall Dashboard UI:
86
79
87
80
```bash
88
-
php bin/qi ext:mount test customisations/vendor/extname
81
+
php bin/qi ui:start
89
82
```
90
83
91
-
Downloaded styles can be unzipped into `customisations/` and mounted into boards:
92
-
93
-
```bash
94
-
php bin/qi style:mount test customisations/stylename
95
-
```
84
+
The examples use `php bin/qi`, which works on every supported operating system when PHP is in `PATH`. Windows users can alternatively use `.\bin\qi.cmd` from either Command Prompt or PowerShell.
96
85
97
86
See the complete [QuickInstall CLI docs](docs/sandbox-cli.md).
Copy file name to clipboardExpand all lines: docs/sandbox-cli.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ If you ever need help with commands, run:
48
48
php bin/qi help
49
49
```
50
50
51
-
If you prefer a browser workflow, start the local sandbox UI:
51
+
If you prefer a browser workflow, start the QuickInstall Dashboard UI:
52
52
53
53
```bash
54
54
php bin/qi ui:start
@@ -381,9 +381,9 @@ Fetched sources live under:
381
381
.qi/sources/phpbb-<source>
382
382
```
383
383
384
-
## Web UI
384
+
## Dashboard UI
385
385
386
-
QuickInstall includes a local browser UI for the same sandbox workflows exposed by the CLI. It is served by PHP's built-in web server and backed by the same `.qi/`project state. The UI server can be started, checked, restarted, and stopped on macOS, Linux, or native Windows.
386
+
The QuickInstall Dashboard UI provides a local browser interface for the same workflows exposed by the CLI. It is served by PHP's built-in web server and backed by the same `.qi/`workspace. The Dashboard UI can be started, checked, restarted, and stopped on macOS, Linux, or native Windows.
387
387
388
388
Start the UI:
389
389
@@ -403,7 +403,7 @@ Use a different local port:
403
403
php bin/qi ui:start --port 8088
404
404
```
405
405
406
-
Check or stop the tracked UI server:
406
+
Check or stop the tracked Dashboard UI server:
407
407
408
408
```bash
409
409
php bin/qi ui:status
@@ -416,7 +416,7 @@ Restart it:
416
416
php bin/qi ui:restart
417
417
```
418
418
419
-
Supported UI server hosts are loopback-only:
419
+
Supported Dashboard UI server hosts are loopback-only:
Copy file name to clipboardExpand all lines: src/QuickInstall/Sandbox/Web/Application.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -287,7 +287,7 @@ private function disableExecutionTimeLimit(): void
287
287
@ini_set('max_execution_time', '0');
288
288
if ((int) ini_get('max_execution_time') !== 0)
289
289
{
290
-
thrownewRuntimeException('QuickInstall could not disable the PHP execution time limit for this action. Allow set_time_limit or set max_execution_time=0 for the sandbox UI.');
290
+
thrownewRuntimeException('QuickInstall could not disable the PHP execution time limit for this action. Allow set_time_limit or set max_execution_time=0 for the Dashboard UI.');
0 commit comments