Posts Tagged ‘Solar’

Screen cast: Installing and setting up the Solar system

Posted in Solar on March 17th, 2009 by Jon – 2 Comments

Sometimes it’s difficult to properly explain in writing how to do something. You know the old expression, “a picture is worth a thousand words”? Well, sometimes, the same holds true for a video. I took a little time to create a screen cast of how I installed and set up the Solar PHP web application framework on my home computer running Ubuntu. Now, please remember, the production budget was pretty low, and I am not exactly a voice actor :)

The Solar configuration file

Posted in Solar on March 13th, 2009 by Jon – 3 Comments

The main Solar manual has a really good section on setting up and working with the Solar config file. Be sure to read the information posted there as well.

Setting up the config

Once you get Solar installed, you will probably want to tweak some settings, such as your database configuration. One of the features I like the most is Solar’s unified configuration file with its tight integration into each controller. The configuration file is simply a returned array, and entries in the configuration file use the name of the class as an array key. Those values are then available to the class via $this->_config. Below is an example.
read more »

Getting started with Solar

Posted in Solar on March 11th, 2009 by Jon – 3 Comments

Solar is a web application framework written in PHP. It follows the general Model View Controller (MVC) design pattern so those familiar with other MVC-based frameworks will have a pretty easy time figuring out how it works.

There are some good Getting Started documents on the Solar website. Much of this is taken from there with some elaboration.

Keep in mind that Solar is still in an alpha state, so you might not want to use it on production web sites. There are some changes coming in the next release which will make some of the documentation obsolete.
read more »