mod-fcgid Questions
3
I would like to hide the index.php page and just show the domain.
Is this possible with .htaccess?
RewriteRule ^index\.php/?$ / [L,R=301,NC]
Also tried:
RewriteEngine On
RewriteBase /
Rewrit...
Thelmathem asked 6/2, 2013 at 16:29
8
Solved
I wrote a simple crawling script (in php) at localhost (with 4 variations). All of them worked fine at localhost. But when I made move them to shared hosting, two of them worked others gave interna...
3
Solved
This has been asked and answered before https://stackoverflow.com/a/12686252/219116 but, the solution there is not working for me.
mod_fcgid config
<IfModule mod_fcgid.c>
AddHandler fcgid-...
1
Solved
I am using /server-status to monitor the Apache processes. When starting they look like this:
_____W_K__K____________C_K________C_____________W_..............
........................................
Claw asked 12/1, 2017 at 7:37
0
I have Apache with PHP installed (on Windows) and run as fastCGI.
My php.ini has this value, upload_max_filesize = 2M.
I override this value in .user.ini file to 10M.
Every thing works fine until...
1
Solved
This .htaccess file:
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 4 month"
</IfModule>
<IfModule mod_headers.c>
Header merge X-ModHeaders "Yes, it is ...
Brahmanism asked 21/8, 2015 at 18:47
6
Solved
I added this to my .htaccess file:
AddHandler fcgid-script .test
(I'm using FastCGI / VirtualMin / WebMin)
And crated a test.test file with the contents;
<?php echo "test"; ?>
This res...
1
A page is resulting in a 500 error and the log shows this:
[Wed Mar 20 11:19:23 2013] [warn] [client 127.0.0.1] (104)Connection reset by peer: mod_fcgid: ap_pass_brigade failed in handle_request_i...
1
The fact so far
According to “mod_fcgi is NOT a replacement for mod_fastcgi” and “Issues with mod_fcgid and multi-threaded FastCGI application”, mod_fcgid, is not designed to expect FastCGI server...
Coracle asked 25/3, 2013 at 19:47
2
Solved
Every time I request a .php file I get the 500 error code.
I tried many different file permissions and searched the whole internet (or at least, it felt like this), but i couldn't find anything h...
Mercaptopurine asked 11/9, 2012 at 11:18
1
Solved
I get the following warning:
mod_fcgid: can't apply process slot for
/var/www/cgi-bin/cgi_wrapper/cgi_wrapper
As soon as this warning appears server CPU raises to 97% - 101%
The server gets ...
1
Solved
I have an issue with a URL my application is trying to access timing out. I am trying to catch this timeout and to solve this problem am using this code:
$timeout = 120;
if(false == $handle = @...
5
Solved
I've been programming a site using:
Zend Framework 1.11.5 (complete MVC)
PHP 5.3.6
Apache 2.2.19
CentOS 5.6 i686 virtuozzo on vps
cPanel WHM 11.30.1 (build 4)
Mysql 5.1.56-log
Mysqli API 5.1.56
...
Coworker asked 20/7, 2011 at 22:54
4
I'm not of the Perl world, so some of this is new to me. I'm running Ubuntu Hardy LTS with apache2 and mod_fcgid packages installed. I'd like to get MT4 running under fcgid rather than mod-cgi (it ...
Se asked 3/12, 2008 at 22:55
1
I have a couple Perl scripts I'm taking public soon, and I want to make sure they'll run under mod_fcgid in order to keep the server load as low as possible. Previously, I've only ever run scripts ...
1
© 2022 - 2024 — McMap. All rights reserved.