A PCRE internal error occured. This might be caused by a faulty plugin
====== Differences ====== This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
packages:amp:php [2014/09/24 02:51] admin [Add Selected PHP Versions] |
packages:amp:php [2014/09/24 03:45] (current) admin [Add Selected PHP Versions] |
||
---|---|---|---|
Line 129: | Line 129: | ||
</WRAP> | </WRAP> | ||
- | My setup requested the following additional packages installation: | + | My setup required the following additional packages installation: |
* apt-get install libxml2 libxml2-dev | * apt-get install libxml2 libxml2-dev | ||
* apt-get install libcurl3-dev | * apt-get install libcurl3-dev | ||
- | * | + | * apt-get install libjpeg62 libjpeg62-dev |
+ | * apt-get install libpng12-0 libpng12-dev | ||
+ | * apt-get install libicu-dev | ||
+ | * apt-get install libmcrypt4 libmcrypt-dev | ||
For what comes next, you should first have suEXEC and the mod_fcgid apache module installed [[packages:amp:apache#Install apache suEXEC|as described here]]. | For what comes next, you should first have suEXEC and the mod_fcgid apache module installed [[packages:amp:apache#Install apache suEXEC|as described here]]. | ||
Line 154: | Line 157: | ||
(Ctrl-x - Y: to exit nano saving file) | (Ctrl-x - Y: to exit nano saving file) | ||
+ | </code> | ||
+ | |||
+ | Then make it executable: | ||
+ | <code> | ||
+ | > chmod ug+x /var/www/php-fcgid/php-cgi-5.2.17 | ||
</code> | </code> | ||
Line 166: | Line 174: | ||
You can read a detailed explanation for all of this in the [[http://httpd.apache.org/docs/2.2/suexec.html|apache page regarding suEXEC]]. | You can read a detailed explanation for all of this in the [[http://httpd.apache.org/docs/2.2/suexec.html|apache page regarding suEXEC]]. | ||
+ | |||
+ | <color coral>**TO ACHIEVE THIS WE'LL HAVE TO ADAPT THE SHARED FOLDERS MOUNTING OPTIONS IN /etc/fstab (TBC)**</color> | ||
**YOU ALSO HAVE TO USE A NON SYSTEM USER**, (i.e. with a uid/gid above 1000) to run the SuEXEC process, which is defined in the Apache VHost configuration file hereunder. Otherwise you might get an error of type: "cannot run as forbidden uid".\\ | **YOU ALSO HAVE TO USE A NON SYSTEM USER**, (i.e. with a uid/gid above 1000) to run the SuEXEC process, which is defined in the Apache VHost configuration file hereunder. Otherwise you might get an error of type: "cannot run as forbidden uid".\\ | ||
Line 180: | Line 190: | ||
sudo nano /etc/apache2/sites-available/domain.conf | sudo nano /etc/apache2/sites-available/domain.conf | ||
- | <VirtualHost *> | + | <VirtualHost *:80> |
ServerName domain | ServerName domain | ||
ServerAlias domain | ServerAlias domain | ||
ServerAdmin webmaster@domain | ServerAdmin webmaster@domain | ||
- | DocumentRoot /var/www/domain/web/ | + | DocumentRoot /var/www/sites/domain/web/ |
<IfModule mod_fcgid.c> | <IfModule mod_fcgid.c> | ||
- | SuexecUserGroup <username> <group-name> | + | SuexecUserGroup suexec suexec |
#PHP_Fix_Pathinfo_Enable 0 | #PHP_Fix_Pathinfo_Enable 0 | ||
- | <Directory /var/www/domain/web/> | + | <Directory /var/www/sites/domain/web/> |
Options +ExecCGI | Options +ExecCGI | ||
AllowOverride All | AllowOverride All | ||
AddHandler fcgid-script .php | AddHandler fcgid-script .php | ||
- | FcgidWrapper /var/www/php-fcgid/php-cgi-5.3.4 .php | + | FcgidWrapper /var/www/php-fcgid/php-cgi-5.4.4 .php |
Order allow,deny | Order allow,deny | ||
Allow from all | Allow from all | ||
Line 199: | Line 209: | ||
</IfModule> | </IfModule> | ||
- | # ErrorLog /var/log/apache2/error.log | + | ErrorLog /var/www/sites/domain/log/error.log |
- | # CustomLog /var/log/apache2/access.log combined | + | CustomLog /var/www/sites/domain/log/access.log combined |
ServerSignature Off | ServerSignature Off | ||
- | |||
</VirtualHost> | </VirtualHost> | ||
</code> | </code> |