Zend framework and WHB
From EKiniWiki
Contents |
[edit] How to SSH to Web Hosting Buzz
To access SSH use this:
ssh -p 65321 username@servername
[edit] Zend Framework Requirements
Zend Framework Requirements
- Apache 2
- MySQL 5.x
- PHP 5.x
- PDO
- MySQL Driver
- i'll add more here. forgot the others.
[edit] PHP configure example:
You must remove linebreaks before copy-paste into Terminal.
'./configure' '--with-apxs2=/usr/local/apache2/bin/apxs' '--enable-fastcgi' '--with-libxml-dir' '--with-zlib' '--with-curl' '--with-openssl' '--enable-ftp' '--with-mysql' '--with-readline' '--enable-soap' '--enable-sockets' '--with-pear' '--enable-pdo=shared' '--with-pdo-sqlite=shared' '--with-sqlite=shared' '--enable-pdo-mysql=shared,/var/lib/mysql'
[edit] How to make Zend Framework work on Web Hosting Buzz
Make ZF work on WHB
- Get a copy of php.ini and place it inside the "starcraftdomain" directory.
- Turn off magic_quotes_gpc.
- Uncomment the session.save_path part.
- Only apache stuff must be inside the .htaccess file. So, you have to remove the following lines:
- php_flag magic_quotes_gpc off
- php_flag register_globals off
That's about it!

