server side PHP problem please help

what does that error mean? it popped up all of a sudden even though i had the app uploaded in the server a few weeks ago and it didn’t have that kind of error… and in my local server, no such error pops up. please help.

Try restarting memcached.

hi! error fixed by disabling memcached. instead of this




/*'cache' => array(

      'class'=>'system.caching.CFileCache',

      'cachePath'=>'cache',

      ),*/

         'cache'=>array(

            'class'=>'system.caching.CMemCache',

            'servers'=>array(

                array('host'=>'localhost', 'weight'=>60),

            ),

            'keyPrefix'=>'vod_ee_',

            'useMemcached' => false,

        ),



in the configuration file, i changed it to this




'cache' => array(

      'class'=>'system.caching.CFileCache',

      'cachePath'=>'cache',

      ),

         /*'cache'=>array(

            'class'=>'system.caching.CMemCache',

            'servers'=>array(

                array('host'=>'localhost', 'weight'=>60),

            ),

            'keyPrefix'=>'vod_ee_',

            'useMemcached' => false,

        ),*/



will it affect future processes of my webapp?