View Single Post
  #55  
Old 28th October 2011, 12:57
Optix's Avatar
Optix Optix is offline
Senior Member
 
Join Date: Sep 2011
France
Posts: 145
Default
Quote:
Originally Posted by patyex View Post
hey how it could be solved without memcached?

memcahe not give me no hosting

thanx:
ZenTracker is using Doctrine : it's the component which communicate between the platform and the database.

In the documentation, you can use 3 different cache drivers : memcache, apc or a little sqlite file (through DPO), stored on your ftp.

http://www.doctrine-project.org/proj...g%3Adrivers/en

For you, the best way to do that is using a SQLite file :
- Open /apps/frontend/config/frontendConfiguration.class.php
- Modify the $cacheDriver variable with that :
PHP Code:
$cacheDriver = new Doctrine_Cache_Db(array('connection' => Doctrine_Manager::connection(new PDO('sqlite:/home/your_username/path/cache/doctrine.sq3')))); 
- Do the same modification on the backend's part.
- Reload index.php and enjoy :)