Jump to content

gamehead200

Patron
  • Posts

    6,876
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Canada

Everything posted by gamehead200

  1. Do you have the link for that Linux OS for the Palm? I happen to have an old Palm III and Palm IIIxe lying around that I've been dying to play around with.
  2. ;Remove Shared Documents from My Computer [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer] "NoSharedDocuments"="1" Have you tried that?
  3. http://www.dyndns.com/An alternative to TightVNC is Ultr@VNC. It is really personal preference, but I like Ultr@ better...especially since they fixed a nasty security bug Like rendrag said, this can be rather unsecure. You may want to try VNC via hamachi. There is also Terminal Services, but I don't think that is an option for you on an MCE system. You can also use Remote Desktop through Hamachi. Just as secure. Still not sure if it's available for MCE, though.
  4. You need something like this: http://www.newegg.com/Product/Product.asp?...N82E16812103104
  5. Sure, go ahead, but odds are, you need a floppy cable!
  6. Floppy drives have their own independent cable. They do not connect to the same cable as HDs.
  7. Yes. I changed my password. Everyone should do the same, just to be safe.
  8. http://www.howtoforge.com/perfect_setup_debian_sarge Shows you how to run a complete webserver WITH a web control panel to add domains and accounts, etc...
  9. Issue has been resolved. Members can no longer see their warning level. [ Topic closed. ]
  10. That page now gives a 404 error. It's going to be back up soon. We'll keep you posted.
  11. Post something useful on the forum. Examples include: - helping someone with a problem - asking for help with something - contribute an idea/program/script/etc. - participating in some other kind of discussion
  12. This should only be seen by mods. Reporting this to xper. [ Closed. ]
  13. Exactly what Google came up with... You must still have or had one of the BETAs installed... Those files, apparently, are/were used for debugging purposes.
  14. http://www.liutilities.com/products/wintas...sslibrary/nwiz/ http://www.neuber.com/taskmanager/process/nwiz.exe.html Everything looks clean from here... Unless I overlooked something.
  15. Ah, some new code generates this : Try the following out: <?php Header ('Content-type: image/jpeg');Header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0');Header('Expires: Thu, 19 Nov 1981 08:52:00 GMT');Header('Pragma: no-cache'); // create the image$image = imagecreatefromjpeg("background.jpg"); // set the colors$black = imagecolorallocate($image, 0, 0, 0); // set the font$font = 'verdana.ttf';$size = 8; // grab status and split it up$handle = @fopen("http://progressquest.com/robot.php?name=undeadsoldier&realm=Expodrine", "r");if($handle){ for( $i = 0; !feof($handle); $i++ ){ $get = fgets($handle, 4096); $split[$i] = trim($get, "\n"); } fclose($handle);} $line1 = $split[0] . " of Expodrine (" . $split[4] . ")";$line2 = "Level " . $split[3] . " " . $split[1] . " " . $split[2];$line3 = $split[5] . " / " . $split[6] . " / " . $split[7]; $combine = $line1 . "\n" . $line2 . "\n" . $line3; // put text togetherImageTTFText($image, $size, 0, 8, 16, $black, $font, $combine); // output and destroyimagejpeg($image);imagedestroy($image); ?>
  16. My school's having this very same problem. We have to configure 230 laptops being delivered next week...
  17. What version of PHP does your host have? He should upgrade to at least PHP 4.4.2 for this to work, if not, PHP 5.1.4.
  18. Check your error log?
  19. Hehe... This has happened to me before... Did you by any chance rename the sig.jpg file and forget to change it in the .htaccess file?
  20. It's a copy that you can use only for a limited amount of time, basically a trial. Permanently removing the restriction is ILLEGAL. The only LEGAL way of doing so would be to buy a copy of the OS.
  21. You might have to put this instead in your .htaccess file: Options All -Indexes <Files sig.jpg> AddHandler application/x-httpd-php .jpg </Files> OR You might not have GD enabled.
  22. It might be a bit late for an answer, but you can put in a line break by adding this to your text within the quotation marks: \n If anyone is still interested in this type of signature, view mine below, and any and all questions will be answered to fit everyone's needs.
  23. Never mind... I hope that's what you wanted. Also, you might have to play around with it a bit as it is too big, according to forum rules, to be used as a sig.
  24. Follow my guide here: http://www.msfn.org/board/index.php?showtopic=47730 then define the variable: $status = file_get_contents("http://progressquest.com/robot.php?name=undeadsoldier&realm=Expodrine&style=pretty"); and output it somewhere in the image like so: ImageTTFText ($image, 8, 0, 10, 17, $white, $font, $status); Should work. It's working in my sig below... See the little green (or red) dot on the top right? That's basically giving my computer's online status by grabbing it from the text output at the Hamachi status site. Edit: I just realized the file_get_contents will not work because it will grab the entire HTML of that page... Working on a solution... Edit2: Here we go!!! <?php Header ('Content-type: image/jpeg'); Header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0'); Header('Expires: Thu, 19 Nov 1981 08:52:00 GMT'); Header('Pragma: no-cache'); // create the image $image = imagecreatefromjpeg("background.jpg"); // set the colors $black = imagecolorallocate($image, 0, 0, 0); $blue = imagecolorallocate($image, 63, 70, 88); $red = imagecolorallocate($image, 255, 0, 0); // set the font $font = 'verdana.ttf'; $size = 8; // grab status $grab = file_get_contents("http://progressquest.com/robot.php?name=undeadsoldier&realm=Expodrine"); $split = preg_split("/[\n]+/", $grab); $line1 = $split[0] . " of Expodrine (" . $split[4] . ")"; $line2 = "Level " . $split[3] . " " . $split[1] . " " . $split[2]; $line3 = $split[5] . " / " . $split[6] . " / " . $split[7]; $combine = $line1 . "\n" . $line2 . "\n" . $line3; // put text together ImageTTFText($image, $size, 0, 8, 16, $black, $font, $combine); // output and destroy imagejpeg($image); imagedestroy($image); ?> This is the background image used: And the contents of the .htaccess file: Options All -Indexes <Files sig.jpg> SetHandler application/x-httpd-php </Files> I used the Verdana font because I had already saved it somewhere on my machine. Please try to host this on your own server if you're going to use it since I am now hosting it on one that isn't very reliable and because I use it for other things that usually slow it down (compiling/home music sharing/etc.)
×
×
  • Create New...