[ticket/14547] Fix Docs and increase PHP memory limit

PHPBB3-14547
This commit is contained in:
Matt Friedman 2016-06-19 09:40:51 -07:00
parent 40aac1cd57
commit d5e342db3a
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@ phpBB uses the [Laravel/Homestead](https://laravel.com/docs/5.1/homestead) Vagra
$ vagrant up $ vagrant up
``` ```
* Access phpBB at `http://192.168.33.10/` * Access phpBB at `http://192.168.10.10/`
* Username: **admin** * Username: **admin**
* Password: **adminadmin** * Password: **adminadmin**

View file

@ -28,6 +28,6 @@ sudo chown -R vagrant /tmp/phpbb.sqlite3
sed -i "$ a @define('DEBUG', true);" ${PHPBB_CONFIG} sed -i "$ a @define('DEBUG', true);" ${PHPBB_CONFIG}
# Update the PHP memory limits (enough to allow phpunit tests to run) # Update the PHP memory limits (enough to allow phpunit tests to run)
sed -i "s/memory_limit = .*/memory_limit = 768M/" /etc/php5/fpm/php.ini sed -i "s/memory_limit = .*/memory_limit = 1024M/" /etc/php5/fpm/php.ini
echo "Your board is ready at http://192.168.10.10/" echo "Your board is ready at http://192.168.10.10/"