mod_fcgid: too much php process(current:8, max:8), skip the spawn request

if your websites are not loading and you encounter the above error in the error_log mod_fcgid: too much (file path/name) php process(current:8, max:8), skip the spawn request you can enable Piped Logs in the Plesk server to allow more open files , in 2 steps:

How To log apache errors to a custom file

Ever needed to solve a matter in your php website but you could not see the errors or didn’t have access to the error_log of your vhost? a workarround:

Mambo mosConfig_absolute_path exploit & solution

I know that not lots of people use mambo these days, and most of them upgraded to joomla 1.5 but in case you happen to have one hosted in your server, there is a known vulnerability , hack scripts using the mosConfig_absolute_path variable to load malicious code from other webhosts ,and that gives them the ...

Redirecting http:// to https:// automatically & Forcing SSL for a particular folder

To redirect all http:// traffic to the corresponding https:// traffic, we make use of a bit of mod_rewrite magic. RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.example.com/$1 [R,L] Replace www.example.com with your own SSL URL. To force SSL for a particular folder (not the entire site), use the following instead:

How do I setup all subdomains *.domain.tld to point to a domain domain.tld? | wildcard dns in plesk

For that purpose you should add an entry into domain’s zone DNS  like:

Linux Plesk how to add www to a subdomain

To create www prefix for subdomains you need to take the following steps: 1) Create vhost.conf file in the /home/httpd/vhosts/domain.com/subdomains/subdomain/conf directory with the following content: ServerAlias www.subdomain.domain.com 2) Add appropriate A record to the DNS zone of the domain in Server->Domains->domain.com->DNS (specify this domain’s IP address instead of 192.168.1.1): www.subdomain.domain.com.          A     192.168.1.1 3) Run wersrvmng ...