Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

similar avatar appearing on new signups but different emails

AoleeAolee Hobbyist & Coder ✭✭
edited December 2011 in Vanilla 2.0 - 2.8

hi i dont know if vanillicon has problems lately but im seeing similar icons on new members -- please check

http://pinoyau.info/activity

Best Answer

  • Options
    ToddTodd Chief Product Officer Vanilla Staff
    Answer ✓

    Wow. We were off by a factor of 2x and hit our limit of vanillicons. I've cleared out the cache and will have to allow our servers to generate more vanillicons/folder in the future.

    You guys will have to refresh your pages to get rid of the bombs, but it should be fine now.

Answers

  • Options
    shozen1shozen1 New
    edited December 2011

    @Aolee

    this is also affecting my forum. each user that signs up gets the same 'bomb face' icon an issue with vanilla icon servers/configuration.

    There was an error rendering this rich post.

  • Options

    There was an error rendering this rich post.

  • Options
    AoleeAolee Hobbyist & Coder ✭✭

    i found the isssue!

    image

    this is the problem

    image

    hope vanillicon can fix or regenerate the icon this soon. thanks!

  • Options
    AoleeAolee Hobbyist & Coder ✭✭

    there seems to be a problem with vanillicon generating size 100x100 avatar, hope someone can help fix the problem :(

  • Options
    shozen1shozen1 New
    edited December 2011

    @Aolee very nice work detective! hope someone at Vanilla can fix this soon so my forum doesnt get overwhelmed by mr. bomb face!!

    There was an error rendering this rich post.

  • Options
    ToddTodd Chief Product Officer Vanilla Staff
    Answer ✓

    Wow. We were off by a factor of 2x and hit our limit of vanillicons. I've cleared out the cache and will have to allow our servers to generate more vanillicons/folder in the future.

    You guys will have to refresh your pages to get rid of the bombs, but it should be fine now.

  • Options
    AoleeAolee Hobbyist & Coder ✭✭

    @shozen1

    you can use this temporary work around while they are still sorting out the issue,

    change

    $PhotoUrl = 'http://vanillicon.com/'.md5($Email).'.png';

    to

     $size = getimagesize('http://vanillicon.com/'.md5($Email).'.png');      
     $PhotoUrl = 'http://vanillicon.com/'.md5($Email).(($size[0] == 200)?'_50':'').'.png';     
    

    i noticed that the bomb face is always 200px and normal size is always gives 100 width,

    this code checks if the normal size of the image from vanillicon is 200px or not, if 200px (meaning bomb face).... use the 50px size vanillicon.

  • Options
    AoleeAolee Hobbyist & Coder ✭✭
    edited December 2011

    @todd, didn't see your reply :) my reply is only 1min late from your reply. ok will check now :D

  • Options

    Awesome, I was gonna post something about this. Thanks @Todd

Sign In or Register to comment.