
How to install YII Profiler to elevate or optimize your YII code in seconds
YII Profiler help you examine the performance of your applications and improve poorly execution sections of code. They deliver dimensions of how long a routine takes to execute, how often it is called, where it is called from, and how much of total time at some spot is spent executing that routine. Profiling is exclusively valuable when functioning with database since SQL executions are often the main performance holdup of an application. Developed using Yii Framework 1.1.8 but it may work with other versions. Here are the simple step-by-step instructions to use this extension. – Download and extract the contents of the zip to your extensions folder – Add the following code to your app configuration file found at protected/config/main.php…

Amazon S3 Integration with YII Framework
Amazon S3 is an online file storage repository offered by Amazon Web Services. It provides extensive storage capabilities in the cloud through a number of web services interfaces. Launched in 2006, Amazon S3 serves thousands of customers and stores billions of objects. Using the extension I have described below, you can interact with Amazon S3 using the class created by Donovan Schönknecht. This wrapper class enhances the S3 class and creates an extension for YII. The important function of this wrapper class is that it can be used easily with one line of code in your YII controller. Apart from that, you can also extend it to create your own functions as required. Here are the simple step-by-step instructions to…