Hello,
I am trying to add a php file into FORUMHOME, and this is what I did.
I created a plugin with global_start and pasted the following code:
Code:
ob_start();
include('my/server/path/file.php');
$includedphp = ob_get_contents();
ob_end_clean();
I then pasted $includedphp in FORUMHOME and get these 2 errors:
Warning: include(my/server/path/file.php) [function.include.html]: failed to open stream: No such file or directory in [path]/global.php(405) : eval()'d code on line 2
Warning: include() [function.include.html]: Failed opening 'my/server/path/file.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in [path]/global.php(405) : eval()'d code on line 2
Any ideas?