Archive for April, 2005

Solar 0.2.0 Released

Sunday, April 24th, 2005 (08:18)

Solar is a simple object library and application repository for PHP5 under E_STRICT. It takes hints from PEAR and Horde, and bears some superficial resemblance to Ruby on Rails for its MVC application directory structure.
API documentation is becoming voluminous, and is bundled with the package now, along with an example Solar.config.php file.
The change notes [...]

My Yawp Article Is Published

Sunday, April 24th, 2005 (06:33)

This month’s International PHP Magazine has my article on Yawp; woohoo! :-)
Yawp (for PHP4 and non-strict PHP5) is a single PEAR-compliant class that encapsulates a number of other PEAR classes, and ties them all together with a simple configuration file. When you use Yawp as the base of your application, you get…

[...]

How is Solar different from PEAR?

Sunday, April 17th, 2005 (11:30)

Regarding the latest release of Solar, Atrus asked: “How is this significantly different from PEAR?” It’s a good question. In this post, I outline some of what I think are the major differences.

Solar 0.1.2 released

Saturday, April 16th, 2005 (22:06)

Busy weekend; lots of MBA coursework completed, and three releases of Solar. This one is a combined bugfix and function enhancement. Change notes are:

* WARNING: This is a public development release, and is not
yet stable.

* Removed notify() method and related properties from
Solar_Cell_Comments, as that method is more properly in
the realm of the application [...]

Solar Bug Tracking

Saturday, April 16th, 2005 (09:31)

Bug tracking for Solar is now available at http://solarphp.com/bugs.php. This is the proof-of-concept Solar_App_Bugs application (eat your own dog food, right?).

Solar 0.1.1 released

Saturday, April 16th, 2005 (05:45)

Some bugfixes in this release. You really should join the mailing list; good info on setting up Solar.config.php is there.

Going To Cancun!

Friday, April 15th, 2005 (15:28)

Well, I just signed up for PHP Tropics conference in Cancun being held by PHP Architect. This is my first PHP conference, and I’m really looking forward to meeting in person some of the people with whom I have corresponded for so long. And goodness knows I need a vacation. :-)

Solar 0.1.0 Released

Thursday, April 14th, 2005 (23:09)

A new release, with a del.icio.us clone application included.

Htpasswd and crypt() in Solar — fixed!

Thursday, April 14th, 2005 (09:52)

Well, sort of fixed. The crypt() portion is still limited to 8 characters, but I’ve added support for SHA1 (thanks Tomas Cox!) and APR1-MD5 (thanks Mike Wallner!).

Password problems with crypt() and htpasswd files

Wednesday, April 13th, 2005 (13:01)

Using crypt and htpasswd with passwords longer than 8 characters can be a security problem. (Updated with good fix!)