473,379 Members | 1,312 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,379 software developers and data experts.

multiple PHP 5 subversions

Hello,

Is it possible to use multiple PHP 5 subversions in Apache e.g. PHP
5.2.5 and PHP 5.3 . I just want to use PHP 5.2.5 by default and PHP
5.3 for partucular Virtual Host. The problem is that the LoadModule
directive in httpd.conf is php5_module but I want to have e.g.
php5_module and php5.3_module ?

The modules are apxs. The server is runing on Linux

- Ivan
Mar 28 '08 #1
5 1545
Ivan Slavkov wrote:
Hello,

Is it possible to use multiple PHP 5 subversions in Apache e.g. PHP
5.2.5 and PHP 5.3 . I just want to use PHP 5.2.5 by default and PHP
5.3 for partucular Virtual Host. The problem is that the LoadModule
directive in httpd.conf is php5_module but I want to have e.g.
php5_module and php5.3_module ?

The modules are apxs. The server is runing on Linux

- Ivan
Nope, don't think you can do it. But you could run multiple Apache
servers on different ports.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================

Mar 28 '08 #2
On Mar 28, 11:49*pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
Ivan Slavkov wrote:
Hello,
Is it possible to use multiple PHP 5 subversions in Apache e.g. PHP
5.2.5 and PHP 5.3 . I just want to use PHP 5.2.5 by default and PHP
5.3 for partucular Virtual Host. The problem is that the LoadModule
directive in httpd.conf is php5_module but I want to have e.g.
php5_module and php5.3_module ?
The modules are apxs. The server is runing on Linux
- Ivan

Nope, don't think you can do it. *But you could run multiple Apache
servers on different ports.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
Where is the problem to change the module name in some way ?
Mar 29 '08 #3
..oO(Ivan Slavkov)
>Is it possible to use multiple PHP 5 subversions in Apache e.g. PHP
5.2.5 and PHP 5.3 . I just want to use PHP 5.2.5 by default and PHP
5.3 for partucular Virtual Host. The problem is that the LoadModule
directive in httpd.conf is php5_module but I want to have e.g.
php5_module and php5.3_module ?
You could run one version as a module and the other(s) as CGI.

Micha
Mar 29 '08 #4
Ivan Slavkov wrote:
On Mar 28, 11:49 pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
>Ivan Slavkov wrote:
>>Hello,
Is it possible to use multiple PHP 5 subversions in Apache e.g. PHP
5.2.5 and PHP 5.3 . I just want to use PHP 5.2.5 by default and PHP
5.3 for partucular Virtual Host. The problem is that the LoadModule
directive in httpd.conf is php5_module but I want to have e.g.
php5_module and php5.3_module ?
The modules are apxs. The server is runing on Linux
- Ivan
Nope, don't think you can do it. But you could run multiple Apache
servers on different ports.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================

Where is the problem to change the module name in some way ?
Because it doesn't work, that's why. There's a lot more than just a
module name involved.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================

Mar 29 '08 #5
On Fri, 28 Mar 2008 23:03:03 -0700 (PDT), Ivan Slavkov
<iv**********@gmail.comwrote:
>On Mar 28, 11:49*pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
>Ivan Slavkov wrote:
Hello,
Is it possible to use multiple PHP 5 subversions in Apache e.g. PHP
5.2.5 and PHP 5.3 . I just want to use PHP 5.2.5 by default and PHP
5.3 for partucular Virtual Host. The problem is that the LoadModule
directive in httpd.conf is php5_module but I want to have e.g.
php5_module and php5.3_module ?
The modules are apxs. The server is runing on Linux
- Ivan

Nope, don't think you can do it. *But you could run multiple Apache
servers on different ports.
Where is the problem to change the module name in some way ?
The problem is not the module names, but the names of
the entry points in the php libraries and in the php
extension libraries.

The solution of Michael Fesser is the only one that
will work within one Apache instance.

Running more than one Apache is really not all that
bad. One of them could even be a proxy for the other
one.
--
( Kees
)
c[_] I tried to daydream, but my mind kept wandering. (#22)
Mar 29 '08 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Rolf Wester | last post by:
Hi, I have a form with a select element with multiple="true". When using the GET method (I suppose the same happens with the POST method) I can seen that the form sends channels=CH1&channels=CH2...
66
by: Darren Dale | last post by:
Hello, def test(data): i = ? This is the line I have trouble with if i==1: return data else: return data a,b,c,d = test()
11
by: Ohaya | last post by:
Hi, I'm trying to understand a situation where ASP seems to be "blocking" of "queuing" requests. This is on a Win2K Advanced Server, with IIS5. I've seen some posts (e.g.,...
6
by: Ben Hallert | last post by:
Hi guys, I'm trying to figure out what bone headed mistake I made on something I put together. I've got a form (named 'context') that has a variable number of select-multiple inputs on it. ...
22
by: Matthew Louden | last post by:
I want to know why C# doesnt support multiple inheritance? But why we can inherit multiple interfaces instead? I know this is the rule, but I dont understand why. Can anyone give me some concrete...
9
by: Abhishek Srivastava | last post by:
Hello All, In IIS 6.0 We have a concept of worker processes and application pools. As I understand it, we can have multiple worker process per appliction pool. Each worker process is dedicated...
9
by: Graham | last post by:
I have been having some fun learning and using the new Controls and methods in .Net 2.0 which will make my life in the future easier and faster. Specifically the new databinding practises and...
4
by: Matt Kruse | last post by:
While developing an internal IE6-only webapp, a discussion started about the 'best' way to apply classes to data tables across multiple pages. The two arguments were: 1. Apply a single class to...
35
by: keerthyragavendran | last post by:
hi i'm downloading a single file using multiple threads... how can i specify a particular range of bytes alone from a single large file... for example say if i need only bytes ranging from...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.