This morning, when i checked my Give Back India site’s access log i found some scripts/setup.php request attempts. In fact, not ‘some’ but hundreds of them. All requests were made targeting phpMyAdmin’ installations on my server. Here are a few…
Converting a text string into comma separated words
Today, i was looking at some old code of mine to find something when i found this little but useful piece of code which i had written for one of my old projects (and of course when i didn’t had…
Changing “Remember Me” text string in user box in Joomla 1.5
I wanted to change “Remember Me” text in the user login box in Joomla 1.5 to just “Remember” so that it should fit with the login button to the right of it while keeping them in same row.
Krishna font text to UTF-8 (Web Content) Converter
I received news documents (.doc files) written in Krishna(Devanagari ) font from my state government’ press release department and i wanted them posted in one of my blog sites, as it is. I posted some of them as it is…
Cakephp important facts you must know – Part 3
You load a plugin model like this: $this->loadModel(“Forum.Topic”) You output requestAction result using $this->requestAction(array(‘controller’ => ‘articles’, ‘action’ => ‘featured’), array(‘return’)); // see array(‘return’)
Tips on fixing “IE8 Developer Tools not working” issue in Windows
If you discovered that the “Developer Tool” in your IE8 browser in Windows was not showing properly check this good question/answer i.e. http://stackoverflow.com/questions/1234163/ie-8-developer-tools-not-working-in-windows at stackoverflow.
A simple javascript image slide show using setTimeout and jQuery
Just now i created a small slideshow. The slideshow uses some static images stored in a javascript object (array) and runs till the last image in this array. For example, the array:
A possible fix for file saving permission issues on Windows
You might face permission problems while editing and saving some system files on Windows. While searching something over there i found this information as a possible fix for such permission warnings.
A note on difference between app:import and loadmodel in CakePHP
Posting for, someone searched for terms “cakephp what is the difference between app:import model and loadmodel” and “cakephp what is the difference between app:import and loadmodel” and landed on my blog page but unfortunately i could not provide the answer…
Setting up a catch-all email forwarder and parsing emails using php
In one of my ongoing projects i had to set up a “catch-all” email parsing script. Here’s how it came out to be. What is catch-all? In the context of emails, “catch-all” refers to a destination to which all incoming…