View Full Version : php include
Arura
12-09-2003, 03:53 AM
I try to include my forum for a custom plugin at my website.
<?php include("http://forums.arura.com");
?>
doesn't work.
Any suggestion how I can solve this?
Thanks for fast support.
Custom plugins do not support php.
Besides you will get many header errors by including your forum into your website. Header errors can appear if html is displayed to the browser before the code is executed.
Arura
12-09-2003, 04:27 AM
will custom plugins support php in later versions of subdreamer?
They probably will in a later release, although not any time soon.
Samurai
12-09-2003, 04:54 AM
Couldn't he just create a real plugin or just edit his skin?
For example you could edit your current skin like this:
(x represents the category that you want to include the file in)
if($categoryid == x)
{
@include('thefile'); // @ is to get hide errors
}
vBulletin, Copyright ©2000-2009, Jelsoft Enterprises Ltd.