|
I followed the instructions on PHP5 readme file to do a manual install on Windows and as a module on top of Apache.
I ran phpinfo() and it appeared all OK.
Then, every time I run php code calling MySQL it crashed . I just could prevent the crashes installing...
Started by Ipsa Scientia on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
How to Install and Configure PHP 5 to Run with Apache on Windows has instructions on how you can.
|
|
Hello,
I have a debian etch server running php+apache. I am using php5-cli, php5-common, php5-mysql and php5-sybase. I want to use APD to profile my php code, but a php5-apd package is not available in debian. Even pear package is missing (only php4-pear...
Started by Rajkumar S on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Pecl install apd
Will install....
You may then need to enable.
You can use the PECL installer to install the package:
pecl install apd
It will download, compile and install the package automatically.
APD is part of PECL.
|
|
I'm trying to install PHP5 from source on FC5 and everything is configures and compiles fine. When I try to run php however I receive the following errors.
PHP Warning: PHP Startup: mysql: Unable to initialize module Module compiled with module API=20...
Started by xenon on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
My opinion, install them, modify the .specfiles to refer to the newer versions, and build using his .specfiles PHP-5.3 RPMs for FC6 install fine ....
On RPM-based distros unless the build ends up generating an RPM that I can install.
|
Ask your Facebook Friends
|
I'm creating a script that'll work on a Lighttpd, PHP5 and MySql5. The point is, it must be full-offline script installed and configured with all the requirements by one installer. It's a bit modified wiki thing. How to do a such thing?
Started by MinkoSoft on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Do you want to install a whole installation of Lighty, PHP + Mysql or are you just trying to get something installed in a preconfigured environment?
I'd package it up as a VM if you need to install everything
I recommend you....
|
|
Hi,
I have a debian etch server with php5 packages installed.
My issue is that I can't find any php executable to run scripts on the command line. Running " whereis php5 " return folders with only config files, .so files and no executables and " whereis...
Started by Wadih M. on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
There is libapache2-mod-php5 which is the php5 module used by apache (.so file), php5-cli will install a standalone binary file that can be used to run php script locally descriptions says it all :
php5....
php5' isn't php itself.
|
|
I know with python and a couple other languages there is a way to safely make install a newer generational version of a language onto a machine, but after digging through PHP5's configure & makefile the only thing I've seen is the prefix dir option and...
Started by David on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
But is possible to run php version X:
Setting up PHP5 in parallel with....
The cli version should be easy
configure --prefix=/usr/local/php5 make install-cli
It's not possible to run PHP4 and PHP5 as module together in one Apache server.
|
|
PHP4 was removed from lenny package lists. Any suggestions what might be the best approach to install php4 (Apache mod and cli) on a lenny box without breaking php5? And possibly still having the ability to uninstall later on.
Started by Karolis T. on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
The easiest thing to do would install OpenVZ (this needs a reboot....
It should be possible to install php4 along side php5; they were available before and the packaging was designed to have php4 or php5 in the paths that they used.
|
|
Hello,
I've installed XAMPP Apache server and put my website into htdocs. I've started Apache server. On my website I've got files with extension PHP and with extension PHP5.The difference is that when I type in into browser localhost/file.php - I see...
Started by tomaszs on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Httpd-php .php .php5
worked for me under OS X and Apache 2.2.10, I cannot imagine it being different:
LoadModule php5_module modules/libphp5.so AddType application/x-httpd-php .php .php5
Then restart extensions to PHP: .php .php5....
|
|
Hi,
I have a personal website with a MediaWiki installation on a shared host. The Apache configuration treats all .php request with PHP 4, and all .php5 requests with PHP5.
For compatibility reasons I need to be able to use the .php extension, but MediaWiki...
Started by Luk on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It was ghetto with PHP3 and very ....
Php4 and php5 allow you to choose which install you would like to run for the domainTry this
AddType x-mapp-php .php5
It might be the other way around, try it though, i cant atm :S the extension.
|
|
I've installed apache and the server runs fine. I then installed PHP5, and it gave me a warning that it failed to edit the needed apache files.
I did some googling and I found an article that said I just needed to add this to any spot on the httpd.conf...
Started by Chris Sobolewski on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
BTW, for those like me who are looking to get started using a WAMP, I highly .
I found the issue:
The distro of PHP5 (windows 32 installer .msi package from php.net) that I got a manual install.
|