Wednesday, April 22, 2009

Mozilla again come with fantastic things called Personas.

Personas-Easy to install and easy to change "skins" for your Firefox web browser.

I am really impressed for this functionality and i think it is widely acceptable for all web users.

It is also challenging for all the other browser to give this types of ad-ones.

what is the next step for Google Crome, IE, Safari etc .. browser...??????



What are Personas?

Personas are lightweight “skins” that change the look of your Firefox web browser. You can easily switch between Personas with just a few clicks. There are hundreds of Personas to choose from, with more added every day. You can even create your own and share it with others.

How do I add Personas to my Firefox?

In less than 60 seconds, you can install a Persona and transform the look of your Firefox web browser. Visit GetPersonas.com and click the download button. After installation, you will be asked to restart Firefox.

you want to see how it works, you can watch a quick video demonstration here.

Once Personas are installed, you’ll be able to choose and change your selected Persona any time simply by clicking on the little fox mask in the lower left-hand corner of your browser window.
How can I add or change my current Persona?

There are two easy ways to change your Personas:

1. Visit the Personas website at GetPersonas.com, check out the gallery, choose your favorite Persona, and click on your choice to instantly change the look of your browser.
OR
2. Click on the little fox mask in the lower left hand corner of your browser, then select a Personas that suits your style.

More

Note: This information is get from the http://www.getpersonas.com/faq

Tuesday, April 21, 2009

CakePHP Manual

CakePHP Offline Manual. Personally I was extremely happy to download this new release because it finally contains documentation and howtos related to CakePHP’s Model Associations, which is perhaps one of the most used advanced CakePHP features. So I’ll have no excuses not to learn how to use them, great…

The manual is available in the following formats:
  • Windows compressed HTML (.chm)

  • PDF

  • HTML (multiple pages or single page)

Furthermore, the CakePHP API is also available for download in .chm format, thanks to Mladen Mihajlovic.

Well done guys. Really useful for people like me who are on dialup sometimes :)

Monday, April 20, 2009

Solve the Fatal error: Allowed memory size of - bytes exhausted

PHP Fatal error: Allowed memory size of -------- bytes exhausted (tried to allocate ---- bytes) in connection.class on line 899

To solve this issue use
(1)You can directly open php.ini file and direct
memory_limit = 8M ; Maximum amount of memory a script may consume (8MB)

--This affect the globally to all site on same server.
--You need to restart the server to make it work.

(2)Put the following code at your php file.
ini_set("memory_limit", "128M"); //128 represent Memory in MB