Search This Blog

14 November, 2011

XAMPP joomla error: Strict Standards: Accessing static property JCache::$_handler as non static

 i was getting the below error message in firefox after installing the Joomla 1.7.6 version with XAMPP

Strict Standards: Accessing static property JCache::$_handler as non static in E:\xampp\htdocs\joomla_176\libraries\joomla\cache\cache.php on line 422

 After googling,  i found the below recommendation to be done to solve this issue

  1. First check for php.ini file in your server folder (XAMPP), in that replace display_errors=false
  2. Change error_reporting = E_ALL | E_STRICT to error_reporting = E_ALL & ~E_NOTICE
  3. One more thing select the Server (XAMPP) application and right click-> and check for 'run always as administrator'

After doing the above points, its working fine...




16 September, 2011

linux search using grep and excluding .svn folder

to search in linux using grep and excluding the hidden directory of the svn folder

grep -nr <search string> * | grep - v svn

29 August, 2011

auto increment option not working in excel 2007

Unable to drag cell corner to auto increment in excel 2007

To enabled the auto increment feature in the excel sheet, enable the check mark in the

Excel Options -> Advanced

Enable fill handle and cell drag-and-drop 



06 August, 2011

How to check-out a particular version of code from svn?

There are different ways you can achieve it, below are the different ways

svn checkout svn+ssh://<ipaddress>/Project/trunk@<revision number>

example: 
1) svn checkout svn+ssh://192..168.1.10/project/trunk@1978
2) svn checkout -r 1978  svn+ssh://192..168.1.10/project/trunk

23 July, 2011

XAMPP and skype issues

If you installed skype and xampp in a PC and when you try to start the Apache, you will have issue in starting it. If you first login to the skype account and then start the XAMPP apache server, it wont start.

To solve this go to the
Options -> Advanced -> Connections
Uncheck the Check box written as Use Port 80 and 443 as alternatives for incoming connections.

As shown below

21 July, 2011

logging the linux shell session


To start logging the linux bash shell session to a file, type in the bash shell console the command script

dino@dino-laptop:~$ script
Script started, file is typescript
dino@dino-laptop:~$

This will start logging what all comes in the bash shell to the file typescript in the path from where u typed the command script. To stop the logging, just type exit in the bash shell or type control + D

dino@dino-laptop:~$ exit
exit
Script done, file is typescript
dino@dino-laptop:~$


16 July, 2011

embedded systems, embedded forums, www.embeddedcircle.com

articles, tutorials, forum for discussing topics related to embedded systems, visit the web site
http://www.embeddedcircle.com

i had posted some tutorials and planning to add more slowly.

tmux enabling mouse interaction

Add the below line to the ~/.tmux.conf setw -g mouse on save the file and exit from the tmux shell, you should be able to use your mouse to ...