Hello all,
I just upgraded my vb from 3.8.2 to 4.1.7. With the old version I used to include a php script from my forum´s root directory, which contained PHP code in order to display random graphics.
I wanted to reinstall this file with 4.1.7, but I somehow can´t manage to get it done, even after fiddling around and searching forums & google for a few hours. Yes, I feel stupid.
So basically what I did was this as per the manual.
I created a plugin with the following code:
Then I went to edit the style I am using, Smooth Red. Locating the header template, I put the following inside the
tag. I also tried to put it directly into the first DIV tag of the header template. Same result.
But it´s not working, no graphics showing up. Not even an odd "hello world" I put in the php file. What am I doing wrong?
P.S.: my forum is located at www.ducati1.de and I´d like to include the graphics right under the login fields on the top right.
Cheers,
Benjamin
I just upgraded my vb from 3.8.2 to 4.1.7. With the old version I used to include a php script from my forum´s root directory, which contained PHP code in order to display random graphics.
I wanted to reinstall this file with 4.1.7, but I somehow can´t manage to get it done, even after fiddling around and searching forums & google for a few hours. Yes, I feel stupid.
So basically what I did was this as per the manual.
I created a plugin with the following code:
HTML Code:
ob_start(); include('/blabla.php'); $includedphp = ob_get_contents(); ob_end_clean();
HTML Code:
<div class="ad_global_header">
HTML Code:
{vb:raw includedphp}
P.S.: my forum is located at www.ducati1.de and I´d like to include the graphics right under the login fields on the top right.
Cheers,
Benjamin
Comment