Zend Framework : Could not determine temp directory, please specify a cache_dir manually

后端 未结 8 747
忘了有多久
忘了有多久 2021-01-14 15:44

I am just learning Zend Framework. I created a simple Zend_Form and when I submitted the form I got following error:

An error occurred
Application error
Exce         


        
8条回答
  •  天涯浪人
    2021-01-14 16:09

    I think this solve the problem , it solved it for me

    Zend_Date::setOptions(array('cache' => $cache)); // Active aussi pour Zend_Locale
    Zend_Translate::setCache($cache);
    

    add it after setting your cache in the bootstrap.php

提交回复
热议问题