1
Hey, if any one could help that would be greatly appreciated. I was getting a blank page but I was able to turn on debugging.
I'm getting "Failed opening required '*:/****/****/****/****/xoops/class/smarty/core\core.assemble_plugin_filepath.php' " (my actual server info starred out).
I'm definitely not a PHP expert, but it looks like the problem is that there are back slashes instead of forward slashes.
I went into the file in question and it is setting the root directory info by using this:
if (!defined('SMARTY_DIR')) {
define('SMARTY_DIR', dirname(__FILE__) . DIRECTORY_SEPARATOR);
and this is their explanation just above that code:
/**
* set SMARTY_DIR to absolute path to Smarty library files.
* if not defined, include_path will be used. Sets SMARTY_DIR only if user
* application has not already defined it.
*/
I have no idea how to make it create back slashes instead of forward slashes..
Any ideas?