Hey!
I have a problem.. I created a plugin that looks like this:
PHP Code:
$url = $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
$url = str_replace('?', '_', $url);
$url = str_replace('&', '-', $url);
$vbulletin->options['DisplayLogo'] = file_get_contents('http://myrurl.com/displaylogo.php?url='.$url);
And I added it to template like this:
HTML Code:
<div class="profile_widgets">
{vb:raw vboptions.DisplayLogo}
</div>
The thing is that.. script "displaylogo.php" works correctly.. but it shows logo only on my profile, others can't see their logo.. output is blank. Anybody has any idea why is it so?