How to integrate fckeditor in smarty application?

This post explains how to integrate fckeditor in smarty application. Integration of fckeditor in smarty application   1 . in libs\plugins write the foolowing file called function.fckeditor.php 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394<?php /** * Smarty plugin * @package Smarty * @subpackage plugins */ /** * Smarty function plugin * Requires PHP >= 4.3.0 * Read more…

Simple steps to install php5 in ubuntu

1. Open a terminal box in Ubuntu. 2. Edit /etc/apt/sources.list Comment out the following two lines. (Add a “#” to the front) # deb http://us.archive.ubuntu.com/ubuntu dapper universe main restricted universe # deb http://security.ubuntu.com/ubuntu dapper-security universe 3. Run command sudo apt-get update 4.Run the following commands: sudo apt-get install apache2 sudo Read more…