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
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,14 +60,16 @@ FrameTrail supports a wide range of embeddable content:
60
60
61
61
## Installation
62
62
63
-
### Option 1: Server Deployment (Apache + PHP)
63
+
### Option 1: Server Deployment (PHP)
64
64
65
65
1. Download the [latest release](https://github.com/OpenHypervideo/FrameTrail/releases) or build from source
66
-
2. Extract to your web server directory
67
-
3.Open in your browser and follow the setup wizard
68
-
4.Create an admin account — you're ready to go
66
+
2. Extract to any directory
67
+
3.In that directory, run: `php -S localhost:8080`
68
+
4.Open `http://localhost:8080` and follow the setup wizard
69
69
70
-
**Requirements:** Apache 2.2.29+ with PHP 5.6.2+. The web server needs write permissions to the installation directory.
70
+
**Requirements:** PHP 7.4+. The directory needs write permissions so FrameTrail can create `_data/`.
71
+
72
+
For public deployments, use Apache (`.htaccess` included) or nginx with PHP-FPM. No PHP installed? Use [XAMPP](https://www.apachefriends.org/) (Windows) or [MAMP](https://www.mamp.info/) (Mac/Windows).
Copy file name to clipboardExpand all lines: docs/DEPLOYMENT.md
+11-4Lines changed: 11 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,21 @@ This guide covers the three ways to run FrameTrail (server, local folder, and in
4
4
5
5
## Deployment Options
6
6
7
-
### Option 1: Server Deployment (Apache + PHP)
7
+
### Option 1: Server Deployment (PHP)
8
8
9
9
Full multi-user mode with file uploads, user management, and collaboration.
10
10
11
11
**Requirements:**
12
-
- Apache 2.2.29+ with PHP 5.6.2+
13
-
- The web server needs write permissions to the installation directory
14
-
-`mod_rewrite` enabled (for the `.htaccess` rules)
12
+
- PHP 7.4+
13
+
- The directory needs write permissions so FrameTrail can create `_data/`
14
+
15
+
**Quickest local setup:**
16
+
```bash
17
+
php -S localhost:8080
18
+
```
19
+
Then open `http://localhost:8080`. No Apache, no XAMPP needed if PHP is installed.
20
+
21
+
**Public / production server:** Use Apache (`.htaccess` included and handles security rules) or nginx + PHP-FPM (add a deny rule for `_data/` in your nginx config).
0 commit comments