In administration interface, system information:
HP Built On Darwin imac-de-pere-castanyer-sarda.local 11.3.0 Darwin Kernel Version 11.3.0: Thu Jan 12 18:47:41 PST 2012; root:xnu-1699.24.23~1/RELEASE_X86_64 x86_64
Database Version 5.1.44
Database Collation utf8_general_ci
PHP Version 5.2.13
Web Server Apache
WebServer to PHP Interface apache2handler
Joomla! Version Joomla! 2.5.1 Stable [ Ember ] 2-Feb-2012 14:00 GMT
Joomla! Platform Version Joomla Platform 11.4.0 Stable [ Brian Kernighan ] 03-Jan-2012 00:00 GMT
User Agent Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11
In php settings:
Safe Mode Off
Open basedir None
Display Errors Off
Short Open Tags On
File Uploads On
Magic Quotes On
Register Globals Off
Output Buffering Off
Session Save Path /Applications/MAMP/tmp/php
Session Auto Start 0
XML Enabled Yes
Zlib Enabled Yes
Native ZIP Enabled No
Disabled Functions None
Mbstring Enabled Yes
Iconv Available Yes
----
In php error logs:
This is shown when I try to click the component (even if the plugin is activated or not)
04-Mar-2012 12:20:59] PHP Fatal error: Using $this when not in object context in /Applications/MAMP/htdocs/netnerd2/libraries/joomla/plugin/plugin.php on line 103
And in line 103 of this file...
Code:
$lang = JFactory::getLanguage();
return $lang->load(strtolower($extension), $basePath, null, false, false)
------------>|| $lang->load(strtolower($extension), JPATH_PLUGINS . '/' . $this->_type . '/' . $this->_name, null, false, false)
|| $lang->load(strtolower($extension), $basePath, $lang->getDefault(), false, false)
|| $lang->load(strtolower($extension), JPATH_PLUGINS . '/' . $this->_type . '/' . $this->_name, $lang->getDefault(), false, false);
}