Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
1k views

mod_php vs cgi vs fast-cgi

I have been trying to understand the exact meaning/purpose of loading php as an apache module vs the rest. When php is installed as an apache module, what exactly happens? For example, does reading ...
6
votes
2answers
4k views

Apache's mod_php OR FastCGI? Which is good for Wordpress?

I have basic idea about running PHP in different configurations like mod_php, cgi, FastCGI, etc. In my findings and test I found FastCGI is slightly better. I like FastCGI's support for SuEXEC most. ...
5
votes
3answers
3k views

Detect browser connection closed in PHP

Does anyone know if it is possible to detect whether the browser has closed the connection during the execution of a long PHP script, when using apache and mod_php? For example, in Java, the ...
4
votes
6answers
5k views

Is there a difference between apache module vs cgi (concerning security)?

E.g. Is it more secure to use mod_php instead of php-cgi? Or is it more secure to use mod_perl instead of traditional cgi-scripts? I'm mainly interested in security concerns but speed might be an ...
3
votes
2answers
645 views

How can I tell Apache2, run mod_php5 by default but run this VH in CGI mode?

The Server I have a development server that I'm using to host my current projects. Here are some stats: root@myserver:/usr/bin $ cat /etc/*-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=10.10 ...
2
votes
2answers
224 views

Does mod_php honor HEAD requests properly?

The HTTP/1.1 RFC stipulates "The HEAD method is identical to GET except that the server MUST NOT return a message-body in the response." I know Apache honors the RFC but modules don't have to. My ...
1
vote
1answer
53 views

How to prevent Apache / mod_rewrite from treating path as file with same name

I'm using WAMP Server, mostly configured as-is out of the box. I'm having trouble getting mod_rewrite to behave as expected locally (everything works fine on a production server). I have a PHP file ...
1
vote
2answers
96 views

Call PHP from virtual/custom “web server”

Basically, I'm trying to figure out how PHP can be called from a "web server". I've read the documentation, but it didn't help much. As far as I can tell, there are three ways to invoke PHP: via ...
1
vote
2answers
250 views

Disable HTML stack traces by Xdebug

The administrator has installed Xdebug 2.1.1 in our shared PHP 5.3.0 server in order to use its debugger. Now, I can hardly read the stack traces of uncatched exceptions because they are formatted by ...
1
vote
0answers
362 views

Configure/compile mod_php (PHP 5.2.17 for Apache 2.2.17) with “Thread Safety” disabled

My Linux distributive is RedHat / CentOS 5.x i386/x86_64. I'm using custom compiled Apache version 2.2.17 (both worker and prefork) modes with mod_php (PHP 5.2.17) custom compiled too. phpinfo() ...
1
vote
1answer
883 views

iconv utf-8 to ascii transliteration in mod_php/apache2

I need to compare strings and match names to one another even if they are not spelled the same way. For example DÉSIRÉ-Smith should match Desireesmith as well as Desiree or Desi'ree Smith So i had ...
1
vote
2answers
356 views

Web programming: Apache modules: mod_python vs mod_php

I've been using for more than 12 years PHP with Apache (a.k.a mod_php) for my web development work. I've recenlty discovered python and its real power (I still don't understand why this is not always ...
1
vote
4answers
104 views

How would I perhaps reduce the processor footprint of a php script?

I'm attempting to make a php script that can load the current weather forecast and it uses a bit of XML pre-processing to digest the input, however it is accessed quite often and reloaded. The problem ...
1
vote
2answers
104 views

mod_php5 uses temporary files for parsing? [closed]

I've noticed that most of my more annoying errors generate parse errors similar to this one in my logs: PHP Parse error: syntax error, unexpected T_FUNCTION in ...
0
votes
0answers
23 views

Is it possible to make APC cache 1 version of wp-includes only?

I currently have httpd in prefork mode with mod_php and apc. I host multiple wordpress installs on my server but with w3-total-cache i find that my apc cache is caching multiple versions of the same ...
0
votes
2answers
56 views

How do mod_php, mod_python, mod_Language work

Some of the Apache modules are related to programming languages, like mod_php and mod_python. The description is basically "enables usage of php within apache" or "enables usage of python within ...
0
votes
0answers
41 views

Rewrite rule works on Mod-PHP, but not Fast-CGI

Below are the re-writes I'm using in my .htaccess The intended outcome is a url like 'www.example.com/user/1/' avoiding url's like 'www.example.com/user.php?val=1'. The url can have as many values ...
0
votes
0answers
57 views

Confixx resetting always owners and permissions

I'm using Debian with confixx 3.3.5 installed. The problem is about confixx always resetting the permissions of the files and folders. When I want to write with apache user (www-data) some file into ...
0
votes
0answers
92 views

INstalled Zend Server - found out that its not bundled with mod_php, how do I install mod_php?

I just downloaded the Zender Server Community Edition, and tried to run my old applications on it - I got an error from usage of the: php_flag magic_quotes_gpc Off statement in an htaccess file ...
0
votes
1answer
94 views

Apache mod_wsgi and php in the same domain

is it possible to make my webserver run python and php in the same domain? I have a website in python/django that is www.mydomain.com. Now, i have to host a blog in www.mydomain.com/blog in ...
0
votes
1answer
485 views

The reason why mod_php is less efficient than fastcgi php(php-fpm)

I see most answers believe mod_php is less efficient because memory footprint will be higher due to serving static files,like this one. But I have a different opinion as follows: As a matter of ...
0
votes
2answers
169 views

.htaccess adding php type

i been tring to add .inc page as php page using .htaccess, but each time i add it to my existing code in the end of the line, it downloads the page rather then process as a php file. my existing ...
0
votes
1answer
94 views

Apache mod php and script invocation

Say I am running a PHP script, foo.php, inside apache configured with mod php, then, say I invoke the script from my browser(or any other means), does apache spawn off a new process in which the ...
0
votes
6answers
10k views

How to configure PHP under Apache web server in GENTOO Operating System?

is there anyone who knows how to install / configure php under apache? I have emerge php apache both. I wanted to use mod_php for apache in GENTOO OS. php temp.php command line runs fine, but ...