Dear members we a very proud to announce that our templates and extensions run smoothly on joomla 2.5.1 beta.
We are still in testing phase for all possible server versions and 1 issue that is an actual joomla 2.5 requirement could give you some headache. PHP 5.3.
There is new php class introduced in php 5.3 version called
Everyone who is not able to upgrade their php version from PHP 5.2.x to PHP 5.3.x will have trouble with default Joomla 2.5.x and up.
You will see an error saying
Code:
Fatal error: Call to undefined function get_called_class() in your_joomla/libraries/joomla/form/field.php on line 203
or something similar
Do not be alarmed , if you are using our templates or our extensions this error might be visible only in admin backend when you try to go in extensions/template settings , quick fix for this is available. Please download the file attached , extract the zip and add file name yjsgclassfix.php in :
template-or-extensions/elements folder .
example: Yougrids template
your_joomla/templates/yougrids/elements/
example: YJME module engine
your_joomla/modules/mod_yjme/elements
Now go to that elements folder and open any custom elements you see there.
Which are usually solo php files and are in elements folder
not in elements/sub_folder if one is available.
example: Yougrids template
your_joomla/templates/yougrids/elements/yjsglist.php
example: YJME module engine
your_joomla/modules/mod_yjme/elements/yjmelist.php
Right after
Code:
defined('JPATH_BASE') or die();
add
Code:
include_once('yjsgclassfix.php');
all set.