Installing Zend Server Community (Zend CE) on Ubuntu 11.10 [Tutorial]
First, you need to add the Zend Key to your Aptitude (So you can use their repository), and for this we need root.
Enter Sudo Console
sudo bash
Add the key to our local key storage (Zend's key was unavailable, so I put one on my server.. Got it from pastebin
wget http://anebg.net/zend.key -O- | sudo apt-key add -
After downloading the download script from zend,
http://www.zend.com/en/products/server-ce/downloads
Extract it,go to the directory where you extracted it on the terminal and Install Zend CE for PHP 5.3
./install_zs.sh 5.3 ce
Install pdo_mysql on CentOS
I tried installing it by runing pecl install pdo_mysql but I got this error:
configure: error: cannot run C compiled programs. If you meant to cross compile, use `--host'. See `config.log' for more details. ERROR: `/root/tmp/pear/temp/PDO_MYSQL/configure' failed
The problem is that the /tmp and /var/tmp directories are noexec, which prevents pecl build scripts from running.
Here is what can be done to resolve the problem (assuming root account)
mkdir /root/tmp.pear
mkdir /root/tmp.pear-build-rootrm -rf /tmp/pear*
ln -s /root/tmp.pear /tmp/pear
ln -s /root/tmp.pear-build-root /tmp/pear-build-root
pecl install pdo_mysql should now work.
Mac OSX wont connect to my domain?
Then it's probably because your domain isn't fully qualified.
Try adding "local" to Search domains (System Prefs>Network>Ethernet)
How to set up a web domain (godaddy) to your xserve (mac os server)
If you want to start your own hosting service using osx server, or you just want to point your domain to your local mac machine.. here's how to do it.