Jump to content
MakeWebGames

Heather

Members
  • Posts

    53
  • Joined

  • Last visited

Heather's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi thanks for doing that Ohhh yes lol it is now fixed and working correctly A very big thank you to all that have helped on the forum you have all been a great help Thank you :)
  2. ah now im getting this Fatal error: Call to a member function configure() on a non-object in /home/xxxx/public_html/core.php on line 18 and on line 18 is this $db->configure($_CONFIG['hostname'],
  3. I think i just figured out what needs changing lol $_CONFIG['username'], $_CONFIG['password'], $_CONFIG['database'],
  4. If anybody has a solution on editing anything on the core file (if its that which is causing it) please let me know I have pasted it below <?php session_start(); if(!file_exists("license.php")) { die("License Not Found !!"); } require "license.php"; include "language.php"; if (filesize("config.php") <= 150) { header("Location: install.php"); } global $_CONFIG; define("MONO_ON", 1); require "class/class_db_{$_CONFIG['driver']}.php"; $db=new database; $db->configure($_CONFIG['hostname'], $_CONFIG['username'], $_CONFIG['password'], $_CONFIG['database'], $_CONFIG['persistent']); $db->connect(); $c=$db->connection_id; $set=array(); $settq=$db->query("SELECT * FROM settings"); while($r=$db->fetch_row($settq)) { $set[$r['conf_name']]=$r['conf_value']; } $q=$db->query("SELECT userid FROM users"); $membs=$db->num_rows($q); $q=$db->query("SELECT userid FROM users WHERE bankmoney>-1"); $banks=$db->num_rows($q); $q=$db->query("SELECT userid FROM users WHERE gender='Male'"); $male=$db->num_rows($q); $q=$db->query("SELECT userid FROM users WHERE gender='Female'"); $fem=$db->num_rows($q); $total=0; // Users Online , Counts Users Online In Last 15 minutes $q=$db->query("SELECT * FROM users WHERE laston>unix_timestamp()-15*60 ORDER BY laston DESC"); $online=$db->num_rows($q); ?>
  5. Thanks for all of your help I think the problem is with the core and also our host changining the call up to ravens server to ours. This is what the host did when the homepage started to load up extremly slow when ravens site went offline "Your script is making a call to an external server that is taking a very long time to respond: ravan.info. There is also a file, that while only 14k, is taking a long time to process: /home/xxxx/public_html/core.php This file seems to contain encrypted data that is taking awhile to process " What they did to overcome this was "I have added the following entry to your /xxx/hosts file: 50.22.91.149 ravan.info ww.ravan.info This causes any calls to ravan.info to go to your server. Your site seems to be responding faster at this time, though I'd definitely work with the original developers on a better solution."   This fixed the loading issue and think caused the issue we have now. The other thing which has also stopped working is the "Users online" "Reg Users" on the home page and this is also called up on the core.php "// Users Online , Counts Users Online In Last 15 minutes $q=$db->query("SELECT * FROM users WHERE laston>unix_timestamp()-15*60 ORDER BY laston DESC"); $online=$db->num_rows($q); ?>" lol i am stumped now on how to fix this
  6. Thank you :)
  7. Have gone through the top ones and its made no difference and i have also tried deleting the old user and adding a new one and changed it in config.php but still does not work . I am now wondering if it is also stored in the ravens licence.php because in core.php it calls for it and requires it but that is the only file which we dont have a de-crypted version off
  8. Thanks Danny I dont want to put the cpanel login info in the config.php unless you meant the data base user and pass which I am now checking   Thanks
  9. Thanks will go through all of those you sugested
  10. this is what is on line 251 $IP=mysql_real_escape_string($IP);   No havevent changed any password thanks
  11. Opps this should have been posted in the mccodes thread
  12. Hi does anybody know what is causing this problem on the signup page It was working fine up until a few days ago Not sure if this is to do with the ravens issues we have been having   Warning: mysql_real_escape_string() [function.mysql-real-escape-string]: Access denied for user 'xxx'@'localhost' (using password: NO) in /home/xxxxx/public_html/signup_popup.php on line 251 Warning: mysql_real_escape_string() [function.mysql-real-escape-string]: A link to the server could not be established in /home/xxxxx/public_html/signup_popup.php on line 251
  13. You are probably correct but the more complaints or DMCA complaints they get the more they might just do something about it as copyright issues are pretty hot atm
  14. Well the Ravens site is back up. I am now going to contact his host and point them to MCCODES and posts on this forum about him selling the MCCODES game engine without permission to do so. If anybody else wants to do the same his host is in the USA and is http://altushost.com/contact-us.html I am so sick of this guy now.
  15. Thank you for your help
×
×
  • Create New...