Jump to content
xisto Community

iGuest

Members
  • Content Count

    72,093
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by iGuest

  1. Xenogears is impossible to beat anyone beat it?-Allandras
  2. Get phpMailer .It's a nice class for sending email using smtp. hope it helps-James Mutuku
  3. Hello, I have a similar problem but I changed for a new drive and continues to have the same problem, although some improvements with new drive in that it now reads a dvd I have purchased, but anything that has been written by me or someone else it does not recognize, I think it must be software but does anyone have any advice what specifically it would be and where to start, thanks..
  4. I think I'm safe. My password fits those criteria. Single word or word and one number passwords are dangerous. I think there's a topic somewhere about making secure passwords.
  5. Umm, so what exactly is your problem? It seems to be working as it should be.If you want to get rid of it, right click it, and there should be a delete option somewhere, otherwise, open up the display properties, click the desktop tab, click "Customize Desktop", click the web tab, find the webpage in the list, and un-check the checkbox next to it.
  6. Hi I've recently made some changes to my site's design, and uploaded them to a seperate directory to work on. These changes include modifying a status signature, which is just a little image that displays your Habbo Hotel Figure, mission, etc. I uploaded the design to http://forums.xisto.com/no_longer_exists/, and this works fine. However, when I try to access http://forums.xisto.com/no_longer_exists/, where the status signature is, it just keeps loading, but never loads, or stops, or comes up with an error! It doesn't appear to be a problem with my script, as I had accidentally used an old password to connect to the database, which would have caused an error. If you want to see it for yourself, go to http://forums.xisto.com/no_longer_exists/profiles?name=7249 Here's my script (at http://forums.xisto.com/no_longer_exists/), but like I say, I don't think the problem's got anything to do with it. <?phpheader("(anti-spam-(anti-spam-(anti-spam-content-type:))) Image/PNG");include("dbconnect.php");include("habboclass.php");$gethabboname = "select * from users where username = '".$_GET["name"]."';";$ghnresult = mysql_query($gethabboname);$ghnarray = mysql_fetch_array($ghnresult);$habboclass = new habboClass($ghnarray["habboname"], $ghnarray["hotel"]);$image = imagecreatefromgif("profile_template.gif");if ($ghnarray["hotel"]=="com.au"){ $country = "Australia"; $flag = imagecreatefromgif("flag_au.gif");}else if ($ghnarray["hotel"]=="co.uk"){ $country = "United Kingdom"; $flag = imagecreatefromgif("flag_uk.gif");}else if ($ghnarray["hotel"]=="com"){ $country = "USA"; $flag = imagecreatefromgif("flag_us.gif");}else if ($ghnarray["hotel"]=="ca"){ $country = "Canada"; $flag = imagecreatefromgif("flag_ca.gif");}else if ($ghnarray["hotel"]=="com.sg"){ $country = "Singapore"; $flag = imagecreatefromgif("flag_sg.gif");}else if ($ghnarray["hotel"]=="de"){ $country = "Germany"; $flag = imagecreatefromgif("flag_de.gif");}else if ($ghnarray["hotel"]=="fi"){ $country = "Finland"; $flag = imagecreatefromgif("flag_fi.gif");}$motto = $habboclass->motto;$rhotel = $ghnarray["hotel"];while (eregi('<img src="http://images.habbohotel.'.$rhotel.'/web/web-5.0.19/images/fonts/volter/', $motto)){ $motarray = explode('<img src="http://images.habbohotel.'.$rhotel.'/web/web-5.0.19/images/fonts/volter/', $motto); $motarray = explode('.gif" class="vchar" />', $motarray[1]); $char = $motarray[0]; $motto = str_replace('<img src="http://images.habbohotel.'.$rhotel.'/web/web-5.0.19/images/fonts/volter/'.$char.'.gif" class="vchar" />', Chr($char), $habboclass->motto);}while (eregi('<img src="http://images.habbohotel.'.$rhotel.'/web/web-5.0.18/images/fonts/volter/', $motto)){ $motarray = explode('<img src="http://images.habbohotel.'.$rhotel.'/web/web-5.0.18/images/fonts/volter/', $motto); $motarray = explode('.gif" class="vchar" />', $motarray[1]); $char = $motarray[0]; $motto = str_replace('<img src="http://images.habbohotel.'.$rhotel.'/web/web-5.0.18/images/fonts/volter/'.$char.'.gif" class="vchar" />', Chr($char), $habboclass->motto);}while (eregi('<img src="http://images.habbohotel.'.$rhotel.'/web/web-5.0.22/images/fonts/volter/', $motto)){ $motarray = explode('<img src="http://images.habbohotel.'.$rhotel.'/web/web-5.0.22/images/fonts/volter/', $motto); $motarray = explode('.gif" class="vchar" />', $motarray[1]); $char = $motarray[0]; $motto = str_replace('<img src="http://images.habbohotel.'.$rhotel.'/web/web-5.0.22/images/fonts/volter/'.$char.'.gif" class="vchar" />', Chr($char), $habboclass->motto);}$habbopicpre = imagecreatefromgif($habboclass->figure);if ($habboclass->badge){ $badgepre = imagecreatefromgif($habboclass->badge);}ImagePNG($habbopicpre, $ghnarray["username"].".png");if ($habboclass->badge){ ImagePNG($badgepre, "badges/".$ghnarray["username"].".png");}$habbopic = imagecreatefrompng($ghnarray["username"].".png");if ($habboclass->badge){ $badge = imagecreatefrompng("badges/".$ghnarray["username"].".png");}$black = ImageColorAllocate($image, 0, 0, 0);$font = "Volter (Goldfish).ttf";ImageTTFText($image, 7, 0, 21, 24, $black, $font, $ghnarray["habboname"]);ImageTTFText($image, 7, 0, 145, 116, $black, $font, "Created on: ".$habboclass->birthdate);ImageTTFText($image, 7, 0, 94, 142, $black, $font, $motto);ImageTTFText($image, 7, 0, 184, 80, $black, $font, $country);ImageCopy($image, $habbopic, 13, 31, 0, 0, 64, 110);if ($habboclass->badge){ ImageCopy($image, $badge, 92, 43, 0, 0, 37, 36);}if ($habboclass->online==true){ $online = imagecreatefromgif("online.gif"); ImageCopy($image, $online, 94, 92, 0, 0, 35, 29);}else if ($habboclass->online==false){ $offline = imagecreatefromgif("offline.gif"); ImageCopy($image, $offline, 94, 92, 0, 0, 35, 29);}ImageCopy($image, $flag, 220, 14, 0, 0, 51, 69);ImagePNG($image);?> (the files are all there, by the way)
  7. Well this is my setup for my computer, where I do all my developing:ApachePHPMySQLPHPMyAdminFirefoxSafariOperaIEHAPedit (http://forums.xisto.com/no_longer_exists/) (Colour-coded php/html/css etc. editor)It's good to have all the major browsers, because you could make a really good, nice looking site, and upload it, only to find that it only works in one browser!
  8. The problem has mainly three causes. One is that the System Bios is not detecting the hard driver, or the Master Boot Record (MBR) is currupted, or finally to say honesly the Hard Disk has gone west!Check in the Bios, on main menu, under Primry Master if the HDD is detected or it looks 'None' there, if it's the case either your Bios has not detected the HDD or the HDD is failed.If you can see the HDD under Primary Master (make sure your seeing not the CD/DVD Drive), go for MBR repair. Insert the Windows XP (or relevant) CD to your PC and boot from CD, after pressing enter to continue, press 'R' to run the Recovery Console and type hte command 'fixmbr'..later estart your PC ans see if the problem solved!Hope it'll help you!Insaf MuhammedKSA
  9. You can also try "Net Profile Switch" https://www.jitbit.com/ to store and switch multiple network profiles
  10. That is AMAZING we don't have snakes in the marianas well there are brown tree snakes on the other islands but not on Luta. So cool -Crazykissez
  11. Firstly, did you put all this inside HTML tags? If you didn't, then do so. Next, check the text inside the alert. Make sure there are no ' symbols, apart from the ones at the start and end. If it still doesn't work, try window.alert instead of alert. This shouldn't make a difference, but it's worth a try. If that doesn't work, check your browser is JavaScript compatible, and JavaScript is enabled. You should be able to enable it in your browser's settings, and if you have an old browser, I recommend downloading the latest version of Mozilla Firefox. If none of this works, try your script in forefox, then once the page has loaded, Open the Error Console (Tools -> Error Console). There may be an error in here, if there is, tell me, and it'll make it easier to fix.
  12. I'm going nuts trying to get into my extra/yahoo mail. It keeps telling me my information is incorrect - that my birth date and father's middle names are wrong. I think I'm the best of judge of that!!!! If I can't get help soon, I'm going to change my email carrier.
  13. This Steam is aweful. It says it is going to take me 10 hours to download. I don't get it I bought the DVD. Why can't I unlock the game and run it. I think I'm going back to console games.-Allen
  14. NARUTO FATHER IS YONDAIME THAT INFORMATION HAS COME TO LIFE VIA THE MANGA EPISODE 370. JIRAIYA REVILLED THIS INFORMATION. -THE REAL INFORMATION
  15. I tried that inverse/clear thing with a pic, and it didn't blend....? And, under clear, do I select 'Clipboard Contents', or 'All'?
  16. Best File sharing Program with Maximum bandwidth provided by Rapidshare portal. But you need a Premium Account to download without Restriction. No need to worry, there is a tool you can download multiple files as if you have a Premium account without limit. All you need to do is just update the latest proxy.-Maiko
  17. Megaupload sucks hard - non premium users only get download server 1-30 and they are SLOOOOOOW 50kb/s that sucks hard man!
  18. Umm yeah Aliens ARE REAL we aren't the only ones that live on the earth Did you know there are 1000000000 planets out there....And you actually think were the only ones?-justin
  19. My favorite sport is hockey-George Kalimeris
  20. I think that you should not chase after love and should wait for someone to come along and fall in love with you. It should happen naturally not be pushed. Believe me it will happen!!!-hayley
  21. fake as hell, if it was real the letters in help wouldn't be capitalized.thats fake
  22. 4th Hokage Name: Namikaze MinatoStrengths: Speed, RasenganFamily Members: Naruto Uzumaki, Uzumaki KushinaStudents: Kakashi Hatake, Rin, Obito Uchiha the fourth was narutos father and his mother is kushina-tony
  23. Thanx tommydanger 'Unlocker' did the job! Had this annoying avi that refused to budge in Safe Mode or via Command Prompt. Cheers.-bigpaul
  24. HI GUYS & PALS,WELL, I HAVE SEEN LOT OF QUERIES FROM OUR FRIENDS, THAT HOW TO MAKE MONEY VERY EASY AND FAST THROUGH ONLINE.HERE I GIVE YOU THE BEST WEBSITE WHICH IS WORTHFUL. IF YOU ARE READY TO EARN, THEN VISIT THE BELOW WEBSITE. IT'S GENUINE. TAKE YOUR OWN TIME TO READ THE CONTENTS OF THE WEBSITE, BECAUSE IT WILL TAKE 15 MINUTES TO READ AND UNDERSTAND THE CONCEPT. IT REQUIRES YOUR PATIENCE TO READ THE ENTIRE CONTENT.http://forums.xisto.com/no_longer_exists/ ITS A CLEAR CONCEPT.... GO ALL AND MAKE MONEY.....ALL THE BEST<br><br>-KRISHNAN
  25. "GunBound Tactics: Screenshots" is your window name, not your title of the window.IE only let you use alphabet and _.you should have something like "newwin" insted.then use document. write ... <TITLE>...</TITLE> to add title.-deluxmilkman
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.