المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : حل مشكلة PHP Warning: require_once(Cache/Lite.php):



Rise Company
10-04-2016, 06:16
to solve the problem with this issue

Follow the path to /public_html/libraries/joomla/cache/storage/cachelite.php

and temporarily name the file cachelite.ph

Joomla will now allow you to log on to back end there will be some errors but this is ok.

Go to your global configuration, under system you will see the cache option. Enable progressive caching hit save and the errors will disappear and rename your file back to cachelite.php

I put mine back to NO Caching ht save and have had no issues.

Also make sure you have a cache file under administrator/cache

mine was not there after a site move but I re uploaded it from original install file from a regular 1.7 full installation file.

There all fixed......

or

Edit your configuration.php file in the root of your site, specifically this line:


public $cache_handler = 'cachelite';


remove "cachelite" so it looks like this:



public $cache_handler = '';



OR:
Code:
public $caching = '0';

to:
Code:
public $caching = '2';

Rise Company
10-04-2016, 06:32
This error is not related to the Avenue template .

Something is wrong with your webserver's configuration. The file Lite.php cannot be found. Mind Lite.php is not a Joomla file but one belonging to your webserver.

Rise Company
10-04-2016, 06:33
so the solution is simple, just remove the 'cachelite' from $cache_handler variable :)