Skip to content

Commit f9141a7

Browse files
author
aleksandr.shelestov
committed
Troubleshooting section in README.md file
1 parent b85724b commit f9141a7

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ developers and businesses looking for a reliable and GDPR-compliant form managem
1212
- **Robust Admin Panel**: Manage your forms with ease using our user-friendly admin panel, designed for efficient and intuitive form management.
1313
- **Cost-Effective**: Designed to run smoothly on inexpensive hosting or free cloud services, reducing your operational costs.
1414
- **GDPR Compliant**: We prioritize your data privacy. PHPForm ensures that all your data remains yours, complying fully with GDPR regulations.
15-
- **Open Source**: Dive into the code, customize, and contribute! Our community-driven approach means PHPForm is continually evolving.
15+
- **Browser Push and Email notifications**: Get notified when a new form submission is received.
16+
- **reCaptcha Protection**: Protect your forms from spam and abuse with Google reCaptcha.
17+
- **Token-based Protection**: Ideal protection for mobile and desktop apps.
1618

1719
# Requirements
1820
### PHP Version
@@ -108,6 +110,20 @@ php bin/console doctrine:migrations:diff
108110
php bin/console doctrine:migrations:migrate
109111
```
110112

113+
## Troubleshooting
114+
#### Vendor folder is missing
115+
If you see an error that the vendor folder is missing, you need to install the dependencies.
116+
```
117+
Warning: require_once(/app/vendor/autoload_runtime.php): Failed to open stream: No such file or directory in /app/public/index.php on line 5
118+
```
119+
The main problem usually when you run composer install from the root user.
120+
If you still want to run composer install from the root user, you can use the following command:
121+
```bash
122+
COMPOSER_ALLOW_SUPERUSER=1 composer install
123+
```
124+
125+
126+
111127
## Deploy instructions
112128
- [Installing PHPForm on DigitalOcean Apps](https://medium.com/@ashelestov/installing-flexform-on-digitalocean-apps-b3e5b1ba868a)
113129

0 commit comments

Comments
 (0)