Php CMS and Frameworks


What is a php framework? A php framework is a set of prebuilt libraries that allows any php developer to use and develop websites with. The main difference between CMS and Frameworks is the flexibility. Php frameworks just extends on the current php language so as to provide a quicker way for developing websites or applications. Thus these frameworks are more commonly known as Rapid Application Development. Most frameworks support normal php code as well as extended php functions or classes; and quite a number of them boasts a learning curve of 1 to 2 days (considering if you have experience with php beforehand).

Zend Php(Free License) – ZendPhpFramework

Qcodo(Fully MIT) – Qcodo

Symfony(MIT) – Symfony

CakePHP(Fully MIT) – CakePHP
Wiki Software
Content Management System
Setting up WordPress

Dokuwiki(Fully MIT) – Monobook for DokuwikiDokuwiki

Mediawiki(Fully MIT) – Mediawiki

Joomla – Joomla

Typo3 – Typo3

Mambo



[Another big topic. please read other installation guide]
[ftp into your main domain]
[download the latest version of wordpress]
[upzip and upload to public folder]
[the following copies the wordpress setup from mydomain.com to mydomain2.com]
> cd /home/mydomain2.com/public
> cp -R /home/mydomain.com/wp wp
> chown -R mydomain2.com wp
[remember to regenerate API keys.]
[remember to create new db and update config file]
[recommended plugins: zero conf mail, configure smtp, google anilicator]
[make sure ownership is correct.]
[this might come in handy: > chown -R mydomain.com:www-data /home/mydomain.com/public]
[Adding lighttpd supported permalinks]
[Ref: http://www.cyberciti.biz/tips/lighttpd-and-wordpress-setup-clean-seo-friendly-urls.html]

Setting up Joomla
  1. Go to Joomla website (http://www.joomla.org/)
  2. Download the latest 1.0x version stable full package from the site.
  3. Unzip joomla onto your local desktop and rename the folder to joomla
  4. Setup a new connection with WinSCP to your webserver and make sure you are in the htdocs folder
  5. Drag the unzipped folder of joomla into the folder.
  6. Now try to access the joomla site with your browser. Eg (www.myjoomlasite.com/joomla)
  7. You should get a new installation screen right now with all the requirements.
  8. Going back to your winscp connection, create a folder called tmp in joomla folder on the server.
  9. Now right click on the tmp folder and set permissons to 777 by checking all the checkboxes
  10. Now create and upload a file called configuration.php. make sure its empty
  11. Rename htaccess.txt to .htaccess
  12. Edit the htaccess file and add the following lines to the end of the page
  • php_value register_globals 0
  • php_value session.save_path ‘/tmp/’
  • open globals.php and change
    • define( ‘RG_EMULATION’, 1 ); to
    • define( ‘RG_EMULATION’, 0 );
  • now alter all the folders and set the permissions to 777.. make sure all the requirements on the page is green 😀
  • now set up and follow the sql server instructions
  • Finally when you have finished, remember to delete the installtion folder and all its contents. and volia!.. you have installed Joomla CMS
  • Php on IIS 6.0
    I was trying to enable an extension (xml-rpc) on iis6 with php, but i didnt want to restart iis. The steps is to:

    1. create a php file in your root folder or subfolder with a php code “phpinfo();”
    2. navigate to that page and search for the extension you want.
    3. locate the php.ini file on your server (check the phpinfo to get hints on where this is)
    4. now enable the extension by removing the semi colon.
    5. go to iis6 manager on your server
    6. right click on default application pool
    7. and select recycle.
    8. check your phpinfo file again and the extension should be loaded