Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by FrostDeamon

  1. FrostDeamon

    Christmas-ish BG

    Well, you're better than what I remember. "Chrome" ribbon doesn't look so well with it. You Started adding some highlights to the box itself, but it needs more, and also shading. The plane on which the box rests blends in too much with both the ribbon and the background. All in all, not bad...
  2. FrostDeamon

    [General]Saving information

    I'd say Scourge of the Earth, or Postgre would be the most used. You must be registered for see element. You must be registered for see element. [Fd]
  3. FrostDeamon

    [Apache] mod_rewrite

    Obviously...
  4. FrostDeamon

    [Apache] mod_rewrite

    I'm not using XAMPP, and the problem is that it doesn't work. Update: RewriteEngine on RewriteBase / RewriteRule ^([A-Za-z0-9-_/\\:]+)?$ /index.php?dir=$1 [L] RewriteRule ^download/(.*)?$ /dl.php?file=$1 Sort-of works, need the index rewrite to include all visible characters. [Fd]
  5. FrostDeamon

    [PHP]Mail(); SMTP.

    What Daevius said. mail() sucks at the headers part, and god forbid you send something properly. Also, don't use XAMPP. [Fd]
  6. FrostDeamon

    [Apache] mod_rewrite

    Having some trouble with this poop, and it's starting to piss me off. RewriteEngine on RewriteCond %{REQUEST_URI} !^/download RewriteRule ^/download/(.*)$ /download.php?file=$1 RewriteRule ^/(.*)$ /index.php?dir=$1 [L] Any ideas on how to make it work? [Fd]
  7. FrostDeamon

    Vluernabilities & Protocol Discussion

    Well, a while back someone contacted me about KO server emulation, And the possibility to develop a new server. Truth be told, I couldn't be arsed with writing an actual server, so I decided to quickly bash one together in PHP instead. The more I got into it, the more I realized that both the...
  8. FrostDeamon

    [PHP] D*Kos[dot]com

    A site that creates TLDs for links. Great idea! </sarcasm> Anyways, pretty good, but needs some CSS tweakage. [Fd]
  9. FrostDeamon

    [PHP-CLI] Scythe Link Crawler

    Ok, first of all: It's still buggy. This script's function is to crawl a website for links. Only the 1st loop works as intended. But then again, v0.04b speaks for itself. Just thought that someone may find this useful. Also, any improvements on it would be quite welcome ;] And yeah, it's CLI...
  10. FrostDeamon

    [PHP] Sections

    This is the code I use for one of my sites. This is the Best way to do it imo. It's OO, but you can pretty much guess what it does. <?php Core::class_include('HTML'); $strip = array('/','\\','..'); $page = str_replace($strip,'',strtolower($_REQUEST['page']))...
  11. FrostDeamon

    [PHP] Grabbing row data via ID

    Escaping user input makes you look cool. No, really. Also, escape both the domain and username, because someone may get smart and put some SQL stuff as a username ;] Slowpoke is slow, but $result = mysql_query("SELECT 'id', 'dname', 'exp_date', 'note' FROM `domain` WHERE id='".$id."' AND...
  12. FrostDeamon

    [Request] Webspace

    I'm offering free hosting. Can set you up with pretty much anything you want. SVN, FTP, SSH, dedicated MySQL server etc. Contact me if you're interested. (preferably on MSN or Skype, don't come on RZ as often nowadays) [Fd]
  13. FrostDeamon

    [PHP] PHP_SELF in forms

    Yay for epic security! </sarcasm> htmlentities($_SERVER['PHP_SELF']); Unless you wanna see some epic XSS going on. P.S. You may want to add strip_tags() aswell [Fd]
  14. FrostDeamon

    [PHP] Time and Random

    I suggest using mt_rand() :P
  15. FrostDeamon

    [PHP/HTML] Getting CAPTCHA data

    Not sure wtf you mean but... -If you want to create a captcha: PHP GDlibrary, use some font, generate the image etc, and store the captcha answer in a session. -If you want to bypass a captcha: Not exactly sure how, but it can be done in PHP. A friend of mine wrote a script that does that once...
Back
Top