Search results

  1. Ecko

    Best way to do this

    I've read the entire thread, thanks. Hey guess what? Sessions expire when the browser is closed. User logs in > creates session User logs in elsewhere > destroys previous session for user and creates new one I've done this numerous times on multiple platforms.
  2. Ecko

    Best way to do this

    Dumb Just use sessions. If the user has a session and logs on elsewhere, destroy that session.
  3. Ecko

    New computer cluster project

    y0u're "making the operating system"?
  4. Ecko

    Is it Possible that..

    just read the driver patch notes
  5. Ecko

    R63 Emu Error Help?

    Run this SQL query, replace MYSQL_PASSWORD with root's password: GRANT ALL PRIVILEGES ON *.* TO root@localhost IDENTIFIED BY "MYSQL_PASSWORD";
  6. Ecko

    [HELP] VPS Hosting

    Remote MySQL in your cPanel. Whitelist your VPS IP address. By default the MySQL service can only be accessed locally.
  7. Ecko

    windows + linux vps

    Yes, download MySQL on the Windows VPS and whitelist the Linux VPS IP address so it can have access to it: GRANT ALL PRIVILEGES ON *.* TO MYSQL_USER@LINUX_IP IDENTIFIED BY "MYSQL_PASSWORD";
  8. Ecko

    Favorite Windows

    windows 98
  9. Ecko

    [HELP] How do I protect against a $_GET variable when using MySQLi [HELP]

    That's correct, just change $dbclass to whatever is establishing the MYSQLi connection.
  10. Ecko

    What does phpsessid do?

    It's either a session or a cookie, depending on how it's being used. http://www.php.net/manual/en/book.session.php
  11. Ecko

    Hip-hop Fans Only.

    Not gonna lie, he's pretty damn good and reminds me of Big L: If his beats were a bit more old school I think I would enjoy him more. Thanks for showing me him though.
  12. Ecko

    Hip-hop Fans Only.

    i don't think u know what a 90s flow is
  13. Ecko

    Sky Theme 2.0

    Bit simple. Time to start utilizing CSS.
  14. Ecko

    MySQL Row Multiple Values?

    The way you structured it is incorrect. connected_users would be better off being in its own table than in a column for an existing table. Although it would help if we could see the actual database structure and what your end goal is.
  15. Ecko

    Show DevBest [C#] MonoShield: Obfuscation Program for .NET

    wat. u asked how u could use this against programmers. i gave you an example of using obfuscating software against programmers. i never said jagex had no right to do so.
  16. Ecko

    Show DevBest [C#] MonoShield: Obfuscation Program for .NET

    ie - obsfuscate a client for a game... kind of like what jagex has been doing for 10 years with runescape. stop programmers from creating bots for the game.
  17. Ecko

    [REL] SuperCMS [REL]

    You're wasting your time. In his development thread I showed exactly where he stole the code from and he still played dumb. This is what his real coding looks like: http://devbest.com/threads/password-generator-script.23655/
  18. Ecko

    Show DevBest 404 page & notifier

    Storing error document information in MySQL... why? Already gets stored in raw access logs and error logs. Simple cURL script can probably make that page_errors table close to 1GB in about 10-15 minutes.
  19. Ecko

    YouTube HTML5 Video Player

    https://developers.google.com/youtube/getting_started#player_apis From what I have heard is there is not one: http://stackoverflow.com/questions/4016142/embedding-youtube-videos-using-modernizer-rather-then-an-iframe
  20. Ecko

    [PHP] Can't find error

    What happens when you change if($rank == "admin"){ To if($row['rank'] == "admin"){
Top