PHP installed as an Apache module
1
vote
1answer
40 views
Can Nodejs run behind Apache and is it supported?
Apache creates a new Thread for each request or more accurately, it re-uses a Thread from a pool of Threads but Node.js is essentially a single Thread. Would there be any complication in running a ...
0
votes
1answer
27 views
Can I use the same PHP code for module and CGI installation
A simple and maybe stupid question:
Can I use the exact same PHP code no matter whether PHP is installed as a module or as a cgi binary? I understand that the processing is different in these two ...
0
votes
2answers
87 views
Getting mod_wsgi(reviewboard) and mod_php(wordpress) working on same servername but different path
I'm trying to get my wordpress site as well as my reviewboard site working under the same domain name.
Ex:
www.mysite.com (this is where i host my wordpress site)
www.mysite.com/reviewboard (this is ...
4
votes
1answer
1k views
PHP processing speed apache 2.4 mpm-prefork mod_php 5.4 vs nginx 1.2.x PHP-FPM 5.4
I've been looking for days to see if someone has done a good, documented, PHP processing speed comparison between
apache-mpm-prefork 2.4 with mod_php 5.4
and
nginx 1.2.x + PHP-FPM 5.4
Why I'm ...
11
votes
4answers
682 views
Long Time to First Byte value for an empty php file
I had such question some months ago. Now to isolate the problem I tried a new approach. I put an empty file to my server.
File name is "foobar.php". Its content is as follows:
<?php
echo "hello ...
3
votes
1answer
206 views
Run background process from PHP on FastCGI
I know it is possible to create a background PHP process which can be started on demand from another PHP file:
$command = "/usr/bin/php5 -f script.php";
exec( "$command > /dev/null 2>&1 ...
0
votes
0answers
42 views
Return values from PHP script for use in Apache mod_rewrite rules?
has anybody any suggestions for how to accomplish the following in an Apache with mod_php and mod_rewrite?
Receive an incoming HTTP request
Forward the request to a PHP script, say test.php
Have the ...
0
votes
2answers
160 views
mod_php and world writable files on a VPS
I have a centos 5.8 VPS which is running mod_php rather than fastcgi which i'm used to on shared hosting, and I've run in to the problem that various bits of php intended to write to files need those ...
1
vote
0answers
199 views
How to run mod_php and fastcgi side-by-side?
Is it possible to run certain PHP scripts through mod_php when your apache server is configured to run as FastCGI? (FPM/FastCGI).
This could be configured at the directory level, but I'm not sure what ...
0
votes
1answer
176 views
Apache php library caching
If I running a php script in Apache that "require"s a php file, is there a way that I can keep that in memory so that it doesn't need to be pulled from disk each time?
1
vote
0answers
2k views
Install PHP 5.4 on Ubuntu 11.10 [closed]
I need to install php 5.4 on my ubuntu 11.10 x64.
It needs to figure with pretty much all the other php packages that are on the ubuntu repository. Most importantly php-mysql, php-ldap, imagick, gd2 ...
0
votes
1answer
419 views
dso (mod_php) and FTP/File permissions
I'm a bit baffled here. But it might just be my lack of experience.
I have setup PHP DSO (mod_php) and my server runs smoothly and stable. The issue is, though, that in order to run php with includes ...
0
votes
0answers
186 views
Apache mod_php5 causes error [500]
After I enable the php5 module in apache2, my website returns an error 500.
I didn't make any change in the config files of apache2, but I'd have to do something with the php5 module ...
5
votes
2answers
229 views
PHP can't use 300MB of RAM
I'm trying to increase the allowed memory for certain PHP script. No matter what I do, for instance this:
ini_set('memory_limit', '512M');
... the script always runs out of memory at around 300MB:
...
0
votes
0answers
52 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
179 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 ...
1
vote
1answer
791 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 ...
0
votes
1answer
676 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 ...
2
votes
2answers
431 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 ...
3
votes
2answers
3k 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 ...
0
votes
1answer
3k 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 ...
1
vote
0answers
625 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() ...
4
votes
2answers
2k 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
...
0
votes
2answers
726 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 ...
20
votes
3answers
9k 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 ...
1
vote
1answer
2k 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 ...
0
votes
1answer
148 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 ...
2
votes
2answers
605 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 ...
4
votes
2answers
805 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
4answers
127 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 ...
12
votes
2answers
10k 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. ...
3
votes
5answers
18k 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 ...
1
vote
2answers
123 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
...
5
votes
3answers
4k 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 ...
8
votes
6answers
10k 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 ...