diff options
author | M.Gergo | 2018-03-28 20:48:05 +0200 |
---|---|---|
committer | M.Gergo | 2018-03-28 20:48:05 +0200 |
commit | cf30dceb15fa65f503c2a3f31f95b08ce1c65d35 (patch) | |
tree | 3d51eabdf4c9bc7a3daca03d265c052fb0601ac2 /mayor-installer.fcgi/install.d/30php.sh | |
parent | 20a9412f1f5bc7b7e40ffb24e262cdf20420983c (diff) | |
download | mayor-cf30dceb15fa65f503c2a3f31f95b08ce1c65d35.tar.gz mayor-cf30dceb15fa65f503c2a3f31f95b08ce1c65d35.zip |
installer javítás 1
Diffstat (limited to 'mayor-installer.fcgi/install.d/30php.sh')
-rwxr-xr-x | mayor-installer.fcgi/install.d/30php.sh | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/mayor-installer.fcgi/install.d/30php.sh b/mayor-installer.fcgi/install.d/30php.sh deleted file mode 100755 index 49000c68..00000000 --- a/mayor-installer.fcgi/install.d/30php.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash -# - -cat <<EOF -A PHP memória limit beállítása - -Az alapértelmezett 16MB-os memória a rendszer futtatásához a -legtöbb esetben elég, de egyes esetekben (például a nyomtatványok -generálásakor) kevésnek bizonyul. Ezért a telepítő ezt a küszöböt -256MB-ra emeli. Az eredeti php.ini állományról másolat készül -php.ini.mayor néven. - -EOF - -read -n 1 -p "A php.ini-t módosíthatom? (i/N)" -s DO -if [ "$DO" != "i" ]; then echo -e "\nNem módosítom a php.ini-t.\n"; exit 1; fi - -exit 1 - -echo -n " A PHP memória limit beállítása: " -if [ ! -e /etc/php5/apache2/php.ini.mayor ]; then - mv /etc/php5/apache2/php.ini /etc/php5/apache2/php.ini.mayor -fi -cat /etc/php5/apache2/php.ini.mayor | sed "s/memory_limit/memory_limit = 256M ; old value: /" > /etc/php5/apache2/php.ini -echo 256M - -echo " Az web szerver újraindítása" -/etc/init.d/apache2 restart - |