um think i need mycrpt support for php, I need it to run this application:
http://www.hotscripts.com/
our linux distribution is :: Linux 2.6.9-023stab044.4-enterpr
Many Thanks
--s--
Main Topics
Browse All TopicsHi
I am running all my hosting pacakges off a dv dedicated server and have root access to the server via ssh access. I am very new to the command line, but i woul say i have a basic understanding now.
I have followed mediatemple.com (the hosting company) instructions to install php5 on the server, it works ona domain basis.
I now want to install the mcrypt library, but this is not a supportedv install, its allowed as we have root access, but it leaves me slightly concerned about diving in without being confident about what im doing.
Has anyone done this before?
Can anyone advise the neccesary steps to install it? or a formular to follow when installing lphp libraries?
Many thanks
---s--
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
um think i need mycrpt support for php, I need it to run this application:
http://www.hotscripts.com/
our linux distribution is :: Linux 2.6.9-023stab044.4-enterpr
Many Thanks
--s--
Easiest way is to yum it ( assuming you are using a distro that uses yum)
>yum install php-mcrypt.i386
you will also need the c library libmcrypt and the php-devel packages however the above command should take care of the dependancies for you.
p.s. Linux 2.6.9-023stab044.4-enterpr
yum is a rpm package management tool. It is the default management tool for Red Hat, Fedora, Cent and many others. Yum makes it very easy to install, update and remove applications.
Ubuntu and Debian use apt-get and the syntax is almost the same as yum.
use yum or apt-get in this way.
Search for a package
> yum search mcrypt
you will get a long list of packages matching "mcrypt". One should be
php-mcrypt.i386 5.1.6-1.el4.centos centosplus
Matched from:
php-mcrypt
Standard PHP module provides mcrypt library support
Standard PHP module provides mcrypt library support
install a package
> yum install php-mcrypt.i386
and boom your done.
type
yum -h
for info on yum
You can download yum from here since it doesn't seem to be on your system.
http://rpm.pbone.net/index
pbone.net a great site to search for RPMs
you can also download the mcrypt libs from pbone, but once you have yum installed package management is a breeze
first make sure that you actually don't have yum installed already
locate yum | grep bin
my system prints:
[andy@app02 ~]$ locate yum | grep bin
/usr/bin/yum
/usr/sbin/yum-updatesd
if it is installed just use the whole path like
> /usr/bin/yum install .....etc
if not
log in
su to root
type
wget ftp://ftp.pbone.net/mirror
that will download the rpm
to install type
rpm -i yum-2.4.0-5.py24.noarch.rp
if there are no dependency errors you can start using yum
yum search superawsomepackage
i get some dependency errors
[root@fruit-studios /]# rpm -i yum-2.4.0-5.py24.noarch.rp
warning: yum-2.4.0-5.py24.noarch.rp
error: Failed dependencies:
libxml2-python24 is needed by yum-2.4.0-5.py24.noarch
python(abi) = 2.4 is needed by yum-2.4.0-5.py24.noarch
python24-elementtree is needed by yum-2.4.0-5.py24.noarch
python24-sqlite is needed by yum-2.4.0-5.py24.noarch
python24-urlgrabber is needed by yum-2.4.0-5.py24.noarch
python24-yum = 2.4.0 is needed by yum-2.4.0-5.py24.noarch
rpm-python24 is needed by yum-2.4.0-5.py24.noarch
[root@fruit-studios /]#
ANy ideas??
Just ordered the pocket guide, looks really good?
ok thanks
still slightly confused about the process of getting files and what comman you use to install them.
See
http://www.experts-exchang
This is where i am and where im stuck
--s--
Before installing yum or compiling your own cgi, take a look at this mt article. You'll need to have them install the developer tools.
http://kb.mediatemple.net/
After having the developer tools installed you can modify the dreamhost install script to compile php5.
http://wiki.dreamhost.com/
Business Accounts
Answer for Membership
by: ravenplPosted on 2007-08-10 at 00:55:10ID: 19668266
You need mcrypt support for php, or mcrypt tools?
What Linux distribution is installed there?