Jump to content
MakeWebGames

Uridium

Members
  • Posts

    2,659
  • Joined

  • Last visited

  • Days Won

    74

Everything posted by Uridium

  1. FoohonPie your name is disturbing not sure why but it is hope your hearts content is with MWG
  2. Sad to see you go but Delighted the site is still open 🙂
  3. yep your right mouth before brain my apologies 🙂
  4. do we need language skills i only know english
  5. IS GL the new MCCODES or just a money grabber from an engine that once was
  6. Uridium

    Hosting

    greetinga bitch where ya been send me a message
  7. well that didnt last long its offline now
  8. Uridium

    Just a moan

    we work we fall we cry
      • 1
      • Sad
  9. Why do people always call it a game thats downward selling point for me I want an Experience that will last No matter what I put as a username Password Email it says im registered
  10. try checking https://criminal-kings.site/logs/errors/ it should help
  11. whats the URL
  12. Im assuming youve figured it out 🙂
  13. set it to 5.6 that should work
  14. he didnt add the query ??
  15. namecheap do hosting from $5 a month
  16. has it started yet or finished
  17. crons fixed
  18. Posted March 16, 2011 I doubt it
  19. as @bg_mike has said have you already done an install if so DROP ALL TABLES remove the config.php file and try a new install
  20. if you have cpanel on your host goto go into cpanel with yourhost.com/cpanel then find MultiPHP INI Edit icon click it from there dropdown select HOME DIRECTORY and make sure DISPLAY_ERRORS is ENABLED then click APPLY at bottom
  21. the users your switching to are they usual game players or users youve created yourself... Cos I can see some flaws if your viewing pages as a paying game member.. wouldnt that effect their privacy rights ? or am I missing something
  22. so you want to switch from being staff to becoming a regular member but be able to go back to being staff once finished ?? using the same user account you could do this <?PHP include "globals.php"; switch($_GET['action']) { case 'become_member': become_member(); break; case 'become_admin': become_admin(); break; case 'become_moderator': become_moderator(); break; default: prefs_home(); break; } function prefs_home() { global $db,$ir,$c,$userid,$h; print "<h3>Your Staff Status Page</h3> <a href='?action=become_member'><h3>Become a normal game player</a></h3> <a href='?action=become_admin'><h3>Become Game Admin</a></h3> <a href='?action=become_moderator'><h3>Become Game Moderator</a></h3> "; } function become_member() { global $db,$ir,$c,$userid,$h; $db->query("UPDATE users SET user_level=3 WHERE userid=$userid"); Print"<h3>You have now become a Normal User</h3><br><br><a href='RENAME ME.php'>Return To Choices</a></h3>"; } function become_admin() { global $db,$ir,$c,$userid,$h; $db->query("UPDATE users SET user_level=2 WHERE userid=$userid"); Print"<h3>You have now become an Admin</h3><br><br><a href='RENAME ME.php'>Return To Choices</a></h3>"; } function become_moderator() { global $db,$ir,$c,$userid,$h; $db->query("UPDATE users SET user_level=3 WHERE userid=$userid"); Print"<h3>You have now become a Moderator</h3><br><br><a href='RENAME ME.php'>Return To Choices</a></h3>"; } just alter the RENAME ME.php to anyname your new file is gping to be called
  23. <<<< ORGINAL LINK UPATED IN TOP POST >>>>
×
×
  • Create New...