We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 2722
    • 11 Posts
    Ok, im logging in using the side bar on my site, i type my username and password and click Login. A message box pops



    i click ok. It still logs me into the site but i would like to get rid of that msg box.

    [move]Thank You in advance!![/move]

    [move] huh huh huh huh huh huh huh huh[/move]
      • 29354
      • 39 Posts
      Quote from: Balmung at Apr 02, 2006, 07:22 AM

      Logging error : couldn’t save log to table !

      I had the same pb, may be not for the same reason: it was due to an incorrect sql import. Someone else had the same pb, for another reason: she changed the encoding to utf-8.

      However, whatever is the reason, the pb should be corrected by droping log tables (modx_manager_log, ...) and recreating these tables using the sql script in the install directory of modx.

      Before doing this, if you want to get more chance to understand the pb, you can modify the file manager/includes/log.class.inc.php and replace:
      $this->logError("couldn't save log to table!");

      by:
      $this->logError("couldn't save log to table: [$sql]");

      It will give you more precision the next time you will try to log in.

      Tristan