Search This Blog

Showing posts with label Joomla. Show all posts
Showing posts with label Joomla. Show all posts

22 March, 2012

joomla, removing the string "Subcategories" from showing in the category list


In Joomla, removing the string "Subcategories" from showing in the category list, follow the steps shown below

1) Login to your  FTP manager or File Manager
2)  Select your language directory and edit your language.ini file.  For English GB language  – /language/en-GB/en-GB.ini
3)  Find the code:
JGLOBAL_SUBCATEGORIES=”Subcategories”
4) Replace the code with:
JGLOBAL_SUBCATEGORIES=”"

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...




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 ...