Community Support for OpenDocMan (Deprecated)

Full Version: Installation Issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have installed opendocman on a linux server. When trying to access the page I get a Warning:include(templates_c/...header.tpl.php) [function.include]: failed to open stream: No such file or directory in .../smarty/Smarty.class.php on line 1258
Warning: include() [function.include]:Failed opening 'templates_c...header.tpl.php)' for inclusion (include_path='/usr/lib64/php') in .../includes/smarty/Smarty.class.php on line 1258


Is this issue a php issue or a permission issue?
tolock Wrote:I have installed opendocman on a linux server. When trying to access the page I get a Warning:include(templates_c/...header.tpl.php) [function.include]: failed to open stream: No such file or directory in .../smarty/Smarty.class.php on line 1258
Warning: include() [function.include]:Failed opening 'templates_c...header.tpl.php)' for inclusion (include_path='/usr/lib64/php') in .../includes/smarty/Smarty.class.php on line 1258


Is this issue a php issue or a permission issue?

What version of OpenDocMan is it?

Also, is that path ("templates_c/...header.tpl.php") the actual text that the error message is displaying? the "..." in the ...header.tpl.php part is strange.
The issue was a php.ini issue. The fix was to go into the php.ini file and edit the include_path to include the .: before the path directory

include_path '.:/usr/lib64/php'
ah, sounds right.

Thanks.