2012 in review

Tags

, , , ,

The WordPress.com stats helper monkeys prepared a 2012 annual report for this blog.

Here’s an excerpt:

The new Boeing 787 Dreamliner can carry about 250 passengers. This blog was viewed about 1,800 times in 2012. If it were a Dreamliner, it would take about 7 trips to carry that many people.

Click here to see the complete report.

How to solve Jquery conflict- themeforest’s echoes-premium-wordpress theme

Tags

, ,

I am  using   Theme forest’s echos premium theme   for my current wordpress project. But there is a JQuery confilct started when i try to add some jquery functionalty to my home page.  The error is looking like “Object # has no method ‘kwicks’” ,

Solution:

To avoid this conflict open kwicks-custom.js file in the JS/kwicks/ folder

nsert the following line above line after line 1

jQuery.noConflict();

and then change all the ’$’ to ‘jQuery’

Following is a changed line example

From

$('.slide-minicaptiontitle').hide();

To

jQuery('.slide-minicaptiontitle').hide();

This will resolve jquery conflicts with the Kwicks accordion.

Note:This is a solved forum topic…for detail visit theme forests forum page below.

http://themeforest.net/item/echoes-premium-wordpress-11-in-1/discussion/107217?page=3

Create a new project using yii framework in ubuntu

Tags

,

yii framework is the most popular Php  framework in the web for web 2.0 development. This article guide u to start your new php application from scratch using yii framework. Let’s download the framework from the website, always chose the Latest Release e.g  1.1.9 (Jan 1, 2012) .Extract the zip files to your localhost and rename the folder as your wish. Here i wish to rename my framework as (yiifw), thats all now checks  your server configuration meets the requirements for running Yii Web applications or not . To check the requirements open the http://localhost/yiifw/requirements/ path in your browser. if it passed all result, you are successfully setup your yii framework development environment. for detail visit http://www.yiiframework.com/doc/guide/1.1/en/quickstart.installation .now i will saw you step by step how to create a new project.

step-1:Open your terminal and type the following code or CD to your framework folder.

 cd /var/www/yiifw

Step-2: Now tell yiic command line program to generate the Yii application files for your new project. run the following command in your terminal.

</pre>
./framework/yiic webapp /home/username/public_html/yiifw
<pre>

that’s all check your localhost framework folder, the yiic command line program already generate your new project skeleton in MVC  structure called newproject.Now you can check your application in your localhost trough the link: http://localhost/yiifw/newproject/

Now your new project will look like the following image.

Cheer’s

Follow

Get every new post delivered to your Inbox.