To check the version of joomla! that you are using on for your website you can simply login to the admin panel and see the version on the top right of the admin panel once you are logged in. However, some times there could be situations when you can’t it that simply, like:
- you cannot/don’t have access to login to the joomla! admin panel
- the admin panel template is edited and doesn’t show the version on the top right
<joomla! root>/libraries/joomla/version.phpFind and open/edit the file. In the version.php on the above location in your joomla installation, check for this part:
class JVersionThe release + dev_status is your joomla! current version. Like in this case its 1.5.15
{
/** @var string Product */
var $PRODUCT = ‘Joomla!’;
/** @var int Main Release Level */
var $RELEASE = ‘1.5‘;
/** @var string Development Status */
var $DEV_STATUS = ‘Stable’;
/** @var int Sub Release Level */
var $DEV_LEVEL = ‘15‘;
0 comments:
Post a Comment