Skip to content

Commit

Permalink
Added "Common Errors" section
Browse files Browse the repository at this point in the history
Added file permission error fix
  • Loading branch information
davidhoeck committed Jul 13, 2019
1 parent 3b4c904 commit 7749df3
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Expand Up @@ -46,3 +46,17 @@ service apache2 reload
After the installer is finished, you can open in your Browser:
* Frontend: http://localhost:2000
* Backend: http://localhost:2000/admin

### Common Errors

#### File permissions
On some machines docker has problems with the relative symlinked (static) files. Run those commands in your `pimcore-php` container

```bash
docker-compose exec php bash
chown www-data: . -R
```

This could take a while because of the amount of files inside the directory (especially because of the `vendor` folder). There is no guarantee that those commands on all machines and operating systems.


0 comments on commit 7749df3

Please sign in to comment.