Author Topic: Avatar not showing (only mine)  (Read 946 times)

Offline Clannad_92

  • Member
  • Posts: 1259
  • The return of Isurugi Noe
Avatar not showing (only mine)
« on: February 19, 2013, 03:16:40 PM »
okay...hi all...
today, i noticed a problem after online using my laptop...

only my avatar and sig is not showing, other member are normal...this is on laptop only...on phone its okay...
my question is what is happening? i already switch from universal sig rotator something to sigava, nothing changes...
i already check if the size is the problem, but not...



help me...thanks

Offline mrdkreka

  • Member
  • Posts: 1904
Re: Avatar not showing (only mine)
« Reply #1 on: February 19, 2013, 03:23:09 PM »
What are you using to host your pictures?
"Nothing is either good or bad, only thinking makes it so." - William Shakespeare

Offline Clannad_92

  • Member
  • Posts: 1259
  • The return of Isurugi Noe
Re: Avatar not showing (only mine)
« Reply #2 on: February 19, 2013, 03:24:01 PM »
Photobucket...

Oh, i need to sleep now...tomorro got an important class...so, if im not replying, well im already sleep...g'night~
« Last Edit: February 19, 2013, 03:26:44 PM by Clannad_92 »

Offline mrdkreka

  • Member
  • Posts: 1904
Re: Avatar not showing (only mine)
« Reply #3 on: February 19, 2013, 03:26:39 PM »
Photobucket has most likely deleted your photos, so either use another image service, or re upload your pictures to photobucket again.
"Nothing is either good or bad, only thinking makes it so." - William Shakespeare

Offline xgraphy

  • Staff
  • Member
  • Posts: 1305
Re: Avatar not showing (only mine)
« Reply #4 on: February 19, 2013, 03:26:47 PM »
I don't think you can use Photobucket and SignAvatar together, or you are just using the link altogether.


For help please refer to the wiki and search the help forum!

PM is through my tracker profile only
 

Offline Clannad_92

  • Member
  • Posts: 1259
  • The return of Isurugi Noe
Re: Avatar not showing (only mine)
« Reply #5 on: February 19, 2013, 03:30:37 PM »
Photobucket has most likely deleted your photos, so either use another image service, or re upload your pictures to photobucket again.
I dont think so...

I don't think you can use Photobucket and SignAvatar together, or you are just using the link altogether.
Already use them together about 3 months maybe...

Well, this problem exist only on my laptop...its okay on my phone...
Will try it on my friends laptop tomorrow...

Any help/explanation is much appreciated...

Offline blubart

  • Member
  • Posts: 2349
Re: Avatar not showing (only mine)
« Reply #6 on: February 19, 2013, 03:32:03 PM »
sound more like an overeager adblocker at work.
i can see your avatar and signature images just fine.

Offline mrdkreka

  • Member
  • Posts: 1904
Re: Avatar not showing (only mine)
« Reply #7 on: February 19, 2013, 03:39:54 PM »
Photobucket has most likely deleted your photos, so either use another image service, or re upload your pictures to photobucket again.
I dont think so...
Yeah you were right, the problem lies somewhere else

sound more like an overeager adblocker at work.
i can see your avatar and signature images just fine.
I have adblock turned off and still can't see it in firefox, but the pictures are visible in chrome, so it is probably firefox that doesn't want to show the images, because they go trough a secondary website before showing them.
"Nothing is either good or bad, only thinking makes it so." - William Shakespeare

Offline blubart

  • Member
  • Posts: 2349
Re: Avatar not showing (only mine)
« Reply #8 on: February 19, 2013, 03:42:05 PM »
I have adblock turned off and still can't see it in firefox, but the pictures are visible in chrome, so it is probably firefox that doesn't want to show the images, because they go trough a secondary website before showing them.
i have adblock turned on and using firefox - but no issue whatsoever.

Offline Fwind4

  • Member
  • Posts: 55
Re: Avatar not showing (only mine)
« Reply #9 on: February 19, 2013, 03:44:41 PM »
I have adblock turned off and still can't see it in firefox, but the pictures are visible in chrome, so it is probably firefox that doesn't want to show the images, because they go trough a secondary website before showing them.

Yeah I'm using firefox and can't see his avatar either.

Online Tiffanys

  • Member
  • Posts: 7743
  • real female girl ojō-sama
Re: Avatar not showing (only mine)
« Reply #10 on: February 19, 2013, 03:54:47 PM »
It's even more bizarre that it shows on your phone considering it doesn't show for us. o_O

Well, I tested on Chrome and it seems that it shows there. Doesn't show for Firefox though. My guess is it's a problem with the signavatar site not being compatible with some browsers.

You could just sign up here: http://0fees.net/

Then use this script:
<?php
/*
By Matt Mullenweg > http://photomatt.net
Inspired by Dan Benjamin > http://hiveware.com/imagerotator.php
Latest version always at:
http://photomatt.net/scripts/randomimage
*/

// Make this the relative path to the images, like "../img" or "random/images/".
// If the images are in the same directory, leave it blank.
$folder '';

// Space seperated list of extensions, you probably won't have to change this.
$exts 'jpg jpeg png gif';

$files = array(); $i = -1// Initialize some variables
if ('' == $folder$folder './';
$handle opendir($folder);
$exts explode(' '$exts);
while (
false !== ($file readdir($handle))) {
foreach(
$exts as $ext) { // for each extension check the extension
if (preg_match('/\.'.$ext.'$/i'$file$test)) { // faster than ereg, case insensitive
$files[] = $file// it's good
++$i;
}
}
}
closedir($handle); // We're not using it anymore
mt_srand((double)microtime()*1000000); // seed for PHP < 4.2
$rand mt_rand(0$i); // $i was incremented as we went along

header('Location: '.$folder.$files[$rand]); // Voila!
?>


Just call it index.php and put it in a folder like "image.gif" for your avatars and "image2.gif" for your sigs or something.

Offline megido-rev.M

  • Member
  • Posts: 16121
Re: Avatar not showing (only mine)
« Reply #11 on: February 19, 2013, 07:47:23 PM »
Huh, I don't see it either.

Offline Belmakar

  • Member
  • Posts: 426
  • Yukkuri shiteitte ne!!
Re: Avatar not showing (only mine)
« Reply #12 on: February 19, 2013, 07:56:06 PM »
I can see it at work, but not at home... both PCs have the most recent firefox installed

Offline Clannad_92

  • Member
  • Posts: 1259
  • The return of Isurugi Noe
Re: Avatar not showing (only mine)
« Reply #13 on: February 19, 2013, 11:26:31 PM »
Forgot to mention that this only happen in firefox in my laptop...havent try my friends laptop...

And Tiffanys, how to use that code? Im not that good at codes...

Offline Fwind4

  • Member
  • Posts: 55
Re: Avatar not showing (only mine)
« Reply #14 on: February 19, 2013, 11:32:12 PM »
And Tiffanys, how to use that code? Im not that good at codes...
Just call it index.php and put it in a folder like "image.gif" for your avatars and "image2.gif" for your sigs or something.
Copy/paste it into notepad and save it as index.php

Offline buchno

  • Member
  • Posts: 3473
  • Fången i universitetslivet
Re: Avatar not showing (only mine)
« Reply #15 on: February 20, 2013, 12:02:16 AM »
(click to show/hide)
Huh, I wasn't aware of free web hosts that had reasonable bandwidth limits. I tried that script before with Dropbox, but apparently they have disabled PHP.
Thanks for the tip.
Edit: http://www.000webhost.com/ has ten times the amount of bandwidth :]
Edit2: Although, apparently they have a very low "CPU limit".
« Last Edit: March 26, 2013, 06:17:43 PM by buchno »

Offline Clannad_92

  • Member
  • Posts: 1259
  • The return of Isurugi Noe
Re: Avatar not showing (only mine)
« Reply #16 on: February 21, 2013, 08:52:51 AM »
now online using cybercafe's pc...chehck my ava n sig, there it is...
i think the problem is the firefox itself...maybe...

well, will uninstall firefox and try latest version to see if that correct the problem...
thanks minna~

Online Tiffanys

  • Member
  • Posts: 7743
  • real female girl ojō-sama
Re: Avatar not showing (only mine)
« Reply #17 on: February 21, 2013, 10:56:41 AM »
000webhost are total douchebags. I've used them before... and I don't recommend them. They'll randomly permanently ban you for seemingly no reason, and don't offer backups or anything. I've lost 3 or 4 different phpBB forums with them for guilds that were just completely lost when absolutely no rule was broken.

Uninstalling Firefox isn't going to fix the problem dude. None of us with Firefox can see it either. It's a big problem. You're gonna have to switch hosts.
« Last Edit: February 21, 2013, 10:58:13 AM by Tiffanys »

Offline Clannad_92

  • Member
  • Posts: 1259
  • The return of Isurugi Noe
Re: Avatar not showing (only mine)
« Reply #18 on: February 21, 2013, 11:02:06 AM »
Uninstalling Firefox isn't going to fix the problem dude. None of us with Firefox can see it either. It's a big problem. You're gonna have to switch hosts.
ehhh?!

(click to show/hide)
open the spoiler, you have to answer it~  8) ...

Online Tiffanys

  • Member
  • Posts: 7743
  • real female girl ojō-sama
Re: Avatar not showing (only mine)
« Reply #19 on: February 21, 2013, 11:16:13 AM »
Image hosting provider... the website you're using for your avatar and signature. In case we haven't made it obvious, this is what you look like for us too: