Jump to content
MakeWebGames

rulerofzu

Members
  • Posts

    2,464
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by rulerofzu

  1. Login and check its updating the database. Sounds like the laston in the users table is not getting updated or is getting updated but is incorrect. If so then it would be your login process so login.php and authenticate.php
  2. Not really a good idea blade. So your going to keep your computer online 24/7/365 to run your minute and 5mins crons? If your having trouble running crons on your webhost search for the alternative and have timestamps instead. Which is probably the best solution for those on free and limited service hosting packages. This idea is really only going to work if your running a game open at set times.
  3. I didnt click on your link until after I had posted paddy but yeah it covers most of the same stuff.
  4. mxyi v2 is $db->query :whistling:
  5. George is great to work with and is very quick and professional when working. A new theme for a game project was just designed by George and I am very pleased with the result. :thumbsup:
  6. nitpick through your site. yslow Firefox addon and then see how badly your doing. .htaccess setting ExpiresByType and SetOutputFilter GZIP is something is often overlooked and will significantly improve your site speed. Decent hosting. Sorry but all of the unlimited everything is BS hosting. No such thing as unlimited bandwidth or disk space and its more than likely that the server is over sold. http://www.rulerofzu.com is on a dedicated server - Intel i7-920 quad core, 12gb ddr3 ram and raid 1 2 x 1500GB drives. With secure passive ftp backup
  7. Why o why o why dont people read the install file which says about the crons. Or is this not included in the warez version lol
  8. In that case id suggest you go learn what your doing and then come back.
  9. $query = sprintf("select level, username,money,crystals from users where userid = %u",$id);   change to   $query = sprintf("select level, laston, username,money,crystals from users where userid = %u",$id);   8o
  10. http://www.php.net - you can learn everything about php here! http://www.w3schools.com - good for lots of different things. http://www.stackoverflow.com - good for getting help if you need it. http://www.phpfreaks.com - also good for getting help if you need it. and here!
  11. Pay = $0 than as there is no guarantee that your game will make $$ You need to go learn and program. Its not as daunting as you may think and the more you try the more others will be willing to help you out. Learn to laugh at your mistakes along the way.
  12. Correct me if im wrong. By the look of the code your doing a redirect to the www. So if you enter http://crimgame.com it will auto come up with www.crimgame.com Maybe try   RewriteRule (.*) http://www.%1/$1 [R=301,L]   which should redirect to the HTTP_HOST
  13. Depends on your apache config and whats going wrong.   try   RewriteCond %{HTTP_HOST} ^crimgame\.com   rather than   RewriteCond %{HTTP_HOST} ^crimgame\.com$
  14. Am I understanding you correctly? You are going to run your crons from your home computer??
  15. Yeah could'nt remember as I changed it on rulerofzu so that the gang leader could select how long they want a war to last. So 3 days, 7 days, 14 days and so on.
  16. Actually...there was a spelling mistake in the query. FORM FROM
  17. Why you trying to run a game then?
  18. Check that the gang war actually exists in the database.
  19. Check your cron files it will be in one of those. Probably the cron day or week (if there is one)
  20. The best way for you to do it would be tableless using div and css for positioning. google 2 column layout with header and you will get ideas how to do this.
  21. post that section of code.
  22. Be patient and wait for him to reply. Many people take vacation this time of year.
  23. Hence the point of making things sticky. As you can do on forums. :P
  24. Head over to PHP Myadmin select the users table and then click on the sql tab SET insert_id = xx; Replace xx with the next number you wish it to increment. Run the query and you should be good to go.
  25. Look in your class file see what $db-> you have
×
×
  • Create New...