PDA

View Full Version : why doesn't my signature work? (should be a simple question)


Child
09-21-2007, 09:46 PM
it's one of those thigns where my char's stats and stuff is displayed. i put that in there hours ago (7 hours), but it still hasn't changed.did i do it wrong?

SapphireSnip
09-21-2007, 10:37 PM
Please read the stickied thread at the top of this forum called <a href="http://forums.station.sony.com/eq2/posts/list.m?topic_id=355740" rel="nofollow" target="_blank">"How to use your sig graphic" and Sig FAQ</a>  tells you everything you need to know <img src="/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" border="0" alt="SMILEY" />

Child
09-21-2007, 11:19 PM
<cite>SapphireSniper wrote:</cite><blockquote>Please read the stickied thread at the top of this forum called <a rel="nofollow" href="http://forums.station.sony.com/eq2/posts/list.m?topic_id=355740" target="_blank">"How to use your sig graphic" and Sig FAQ</a>  tells you everything you need to know <img src="/eq2/images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" border="0" alt="SMILEY<img src=" />" /></blockquote>i did. here's my code <img src="http://eq2players.station.sony.com/signature?characterId=683197105" border="0" width="500" height="100"> in the preview, it's shown as being correct, but in the actual signature, obviously, it's not.wwhat's going on now? i don't get why the preview shows it, but the actual sig doeasn't. it doesn't make any sense to meEDIT: fixed it, i removed all the "Optional, but recommended" parts, and it worked. that sticky might want to be edited, sicne the "Recomended" parts causes it to not work

Sapphirius
09-22-2007, 03:11 AM
I have all of the "optional but recommended" options in my sig, and it both works and displays correctly. Sometimes, even after 7 hours or even after a day, the sig may display your previous one. There are times when it reverts back to your old one as well after it has shown your new one. Often, pressing ctrl + F5 doesn't work, and it just takes time... like waiting a day or two. Then it displays the signature as you see it in the preview on your profile page.

SG_01
09-23-2007, 03:01 PM
<p>I use a slightly different way, which IMO works a bit better:</p><p><?php</p><p>  $typ = Array("Image/JPEG", "Image/JPEG", "Image/JPEG", "Image/JPEG", "Image/PNG", "Image/PNG");  $rot = Array("andriella.sig.jpg","andriella.sig.jpg", "Lunarwrit.jpg", "Arddin-Bellerose-sig.png");  $r = mt_rand(0, count($rot) - 1);  header("Cache-Control: no-cache");  header("Content-Type: $typ[$r]");  header("Expires: 0");</p><p>  echo implode("", file($rot[$r]));?></p><p> The only downside to this one is that you need to know the MIME type.</p>