How to fix the error “Strict Standards: Accessing static property JCache::$_handler as non static” in cache.php on line 422 in Joomla 1.7.3?
"Strict Standards: Accessing static property JCache::$_handler as non static" error will get when you access the Site ater insatlling Joomla 1.7.3. Just you can open the mentioned file and go to the line where you are getting the error, and modify the code.
The following code steps will help to fix this error in cache.php on line 422 in Joomla 1.7.3 installation.
Step (1) Open the cache.php file in the code editor and go to the line 422. cache.php file is located in the follwing path.
libraries/joomla/cache/cache.php
Step (2) You will see the following lines of code in cache.php file on line 422.
/**
* Get the cache storage handler
*
* @return JCacheStorage A JCacheStorage object
*
* @since 11.1
*/
public function &_getStorage()
{
if (!isset($this->_handler)) {
$this->_handler = JCacheStorage::getInstance($this->_options['storage'], $this->_options);
}
return $this->_handler;
}
Step (3) Replace the above lines of code with the following.
/**
* Get the cache storage handler
*
* @return JCacheStorage A JCacheStorage object
*
* @since 11.1
*/
public function &_getStorage()
{
if (!isset(JCache::$_handler)) {
JCache::$_handler = JCacheStorage::getInstance($this->_options['storage'], $this->_options);
}
return JCache::$_handler;
}
Step (4) Once you made the changes; Save the changes and Refresh your webpage. Now you will not see the error.
by µToolbox
What changes needs to made in Business Objects XI Server after Server Migration?
After the Server Migration, the CMS name of Business Object XI Server still points to the old server. We have to manually do the configuration changes in order to point to the new server. The following steps explain the common changes we have to made after the server migration.
Step (1) Open the Central Configuration Manager (CCM) window. This window will list out all the BO servers.
Step (2) Stop all the BO severs.
Step (3) Once the BO servers are stopped, delete the servers including CMS (Central Management Server).
Step (4) Add all the deleted servers by using Add Server button. Make sure that provide the new server name under CMS name, wherever required.
Step (5) Once you made all the necessary changes start the all the servers.
Step (6) Once all the servers are up and running, access the Info View. If Info View is pointing to the old server, made the changes to point to the new server.
by µToolbox
How to change site_name in website created by Concrete5?
Concrete5 is a Open Source Content Management System used to build websites using PHP and MySQL.
The following steps explain how to change the site_name in website which is created by Concrete5 Open Source CMS.
Step (1) Sign in to your website to edit.
Step (2) Once you signed in click on Dashboard icon to display the Dashboard.
Step (3) Then click on Scrapbook tab. It will display the Scrapbook names.
Step (4) Click on Global Scrapbook name and select Edit to edit the Scrapbook..
Step (5) It will display the Edit window to allow you to change the site_name.
Step (6) Change the site_name to your website name. And click on Update button.
Step (7) The site_name will change to given website name. Click on Return to Website button to see your changes.
by Pune Network