Search results

  1. Ecko

    Game with runable servers.

    quake 3 arena
  2. Ecko

    [Help] Redeemable Furniture

    It has to be named PntEx_token.swf
  3. Ecko

    [Help] Redeemable Furniture

    If you copied and renamed the SWF then it would work. It is in the ActionScript located inside the SWF file.
  4. Ecko

    how do I make it so if it doesnt exist it will....

    Then do it? The link tells you where to go to set the page for any error page (403, 404, 500, etc).
  5. Ecko

    [Help] Redeemable Furniture

    It works fine, you're doing something wrong.
  6. Ecko

    [Help] Redeemable Furniture

    http://bit.ly/1d1xKVV One of the responses in the first link should tell you how.
  7. Ecko

    how do I make it so if it doesnt exist it will....

    http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/80cb8d8d-8fd8-4af5-bb3b-4d11fff3ab9c.mspx?mfr=true
  8. Ecko

    Web hosting Script

    If you have WHM, you can use WHMCS for this.
  9. Ecko

    Holo CMS Xamp Errors

    How would that resolve anything? Not to mention IIS is a dumb choice for a web server when you the website is built in PHP. session_is_registered() has been deprecated as of PHP 5.3 and removed in PHP 5.4. You should not use that function for security reasons.
  10. Ecko

    VPS DDoS protect?

    staminus.net gigenet.com
  11. Ecko

    Moving certain things or expanding

    <input type="text" name="username" size="25"> Look for the username input form in your code and add the size attribute to it.
  12. Ecko

    Web Applications using FastCGI with PHP vs. FastCGI with C++

    In your original post you offered little to no insight on what you were actually looking for. Benchmarking specific tasks is only performance based comparison of that specific task. It offers no comparison of the functionality of the two languages. Like Kryptos said, C++ is not used in small...
  13. Ecko

    Web Applications using FastCGI with PHP vs. FastCGI with C++

    This entire thread is useless. You're asking a ridiculously vague question. You're wanting to compare a scripting language that is compiled and executed by a web server with a general purpose programming language compiled by the machine. Actually, you just wanted our thoughts on the two. You...
  14. Ecko

    Web Applications using FastCGI with PHP vs. FastCGI with C++

    my thoughts are they are both only useful depending on the application being written.
  15. Ecko

    Netbeans Compiler Download

    https://netbeans.org/downloads/start.html?platform=windows&lang=en&option=javaee
  16. Ecko

    Help how to edit Java files?

    .java files? Any text editor can edit those. .class files need to be decompiled first.
  17. Ecko

    help!

    $getTopStats = mysql_query("SELECT * FROM users WHERE rank < '3' ORDER BY activity_points DESC LIMIT 10"); ... http://dev.mysql.com/doc/refman/5.0/en/non-typed-operators.html
  18. Ecko

    Ok so I'm following this tutorial

    Is it asking for an HTML comment or a PHP comment? HTML = <!--Comment--> PHP = // Comment PHP = # Comment PHP = /* Comment (used for multiple lines, ie - commenting out a function) */
  19. Ecko

    Show DevBest $0.01 Hostgator Hosting Coupon

    http://www.hostgator.com/404 also if you do this continuously, you will be kicked from the network.
  20. Ecko

    [PHP] Logging visitors

    The web server's log file. Apache's access log will record the RFC1413 of the client thanks to the standardizing of the CLF. Two users can have the same IP, but they will most likely not share the same ident.
Top