简体   繁体   中英

PHP5 include() Problem

So, I've got task from my boss to install opendocman on our newly installed PHP5 running on openbsd. When I try to install opendocman on my ubuntu laptop (running 9.04) it was run smoothly. But, when I try to install in on server, I've got these error:

Warning: include(templates_c/%%0E^0E4^0E407559%%footer.tpl.php) [function.include]: failed to open stream: No such file or directory in /usr/local/www/apache22/data/myphp/opendocman/includes/smarty/Smarty.class.php on line 1258

Warning: include() [function.include]: Failed opening 'templates_c/%%0E^0E4^0E407559%%footer.tpl.php' for inclusion (include_path='.:/usr/local/share/pear') in /usr/local/www/apache22/data/myphp/opendocman/includes/smarty/Smarty.class.php on line 1258

My though, this is generated because of some misconfigured on php.ini, but I can't find the specific setting. Care for some help or guidance? I google a bit but no result (maybe wrong keyword:().

Thank you.

You must be using a template engine called Smarty . templates_c is where Smarty compiles *.tpl files to PHP. Check your Webserver has permissions to write to this directory. The normal setup for a Webserver is that it can't write to anything but it needs to write to the templates_c directory.

I'd suggest you peruse the Smarty Manual , especially Basic Installation .

I just had a look. Opendocman does in fact use Smarty as a templating engine so I'm fairly sure it's a permissions problem you have.

Alternatively you may want to delete the contents of the templates_c directory to force a refresh (ie a recompile of the original templates).

对我来说,它看起来像opendocman配置问题。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM