JannuBl22t
04-21-2011, 11:21 AM
Hey!
I have a problem.. I created a plugin that looks like this:
$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:
<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?
I have a problem.. I created a plugin that looks like this:
$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:
<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?