Will DirectAdmin release update for php 4.3.10?

noneto

Verified User
Joined
Dec 14, 2004
Messages
8
Will DirectAdmin release update for php 4.3.10?

Or must I do it myself manually?
Will it cause problems?

And if I must do it manually, is this right:
wget file.tar.gz
tar -zxvf file.tar.gz
./configure
make
make install



Thanks for helping
 
Good news! DA has already included PHP 4.10 into the standard customapache build.

So you simply need to follow the directions for ./build update.

http://files.directadmin.com/services/customapache/

[For future reference, your way will (I am pretty sure) cause problems. if you want to update to a level not yet included by the DA default, you should edit the DA build script to include the right version numbers after you have downloaded the new packages to the customapache directory and unzipped them. Then run ./build all]
 
Last edited:
California said:
Good news! DA has already included PHP 4.10 into the standard customapache build.

So you simply need to follow the directions for ./build update.

http://files.directadmin.com/services/customapache/

[For future reference, your way will (I am pretty sure) cause problems. if you want to update to a level not yet included by the DA default, you should edit the DA build script to include the right version numbers after you have downloaded the new packages to the customapache directory and unzipped them. Then run ./build all]
So i just download the php-4.3.10.tar.gz file, untar it, and run ./build update?
 
noneto said:
So i just download the php-4.3.10.tar.gz file, untar it, and run ./build update?

Just do these:

# cd /usr/local/directadmin/customapache/

# ./build update
# ./build php


Follow all instructions in that installations.
After compile php done, don't forget to restart your apache:

# /etc/init.d/httpd restart

Good luck :D
 
alex2k said:
Just do these:

# cd /usr/local/directadmin/customapache/

# ./build update
# ./build php


Follow all instructions in that installations.
After compile php done, don't forget to restart your apache:

# /etc/init.d/httpd restart

Good luck :D
WOW, DirectAdmin rocks!
 
alex2k said:
Just do these:

# cd /usr/local/directadmin/customapache/

# ./build update
# ./build php


Follow all instructions in that installations.
After compile php done, don't forget to restart your apache:

# /etc/init.d/httpd restart

Good luck :D

I get these errors, how to fix?

checking how to run the C++ preprocessor... /lib/cpp
configure: error: C++ preprocessor "/lib/cpp" fails sanity check
See `config.log' for more details.
make: *** [all] Error 1
 
I looked in the log but this doesn't helped... I'm attaching it here..
 

Attachments

  • config.txt
    33.2 KB · Views: 369
alex2k said:
Just do these:

# cd /usr/local/directadmin/customapache/

# ./build update
# ./build php


Follow all instructions in that installations.
After compile php done, don't forget to restart your apache:

# /etc/init.d/httpd restart

Good luck :D
Any reason you wouldn't just run:

# ./build all instead of ./build php

Seems like it would take care of the zend or ioncube update's as well no?
 
We use "build all", but it does take longer.

Build all does NOT build Zend Optimizer.

Probably because there's no way to automate passing required parameters to the Zend Optimizer install program and they want to be able to automate the use of "build all" in scripts.

I don't think anything touches IonCube; I think that's completely optional; a do-it-yourself project.

Jeff
 
IonCube is NOT part of the DA install.

If you want it, you should install it yourself.

Jeff
 
Back
Top