Jump to content
  • 0
blakbord

fluxcp error please help

Question

11 answers to this question

Recommended Posts

  • 0

The above fix by daewin should work. Though he did not told the fluxcp file location.

 

You can change it in fluxcp inside folder data/schemas/logindb/cp_createlog*****.sql

`reg_date` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
  • Upvote 1
Link to comment
Share on other sites

  • 0

Well.. I guess there is some mss configuration in installer in theams.. we don't touch that folder in general while install.. I think you better.. retry with frsh flux

Or pm me

Link to comment
Share on other sites

  • 0

Welp, something is screwed because `birthdate` accepts 0000-00-00 as it's not-null default value:

`birthdate` DATE NOT NULL DEFAULT '0000-00-00',

I'm wondering if there's something within Windows that causes format discrepancies between dates, maybe it's something hardcoded? Dunno, it's a wild stab in the dark. Or rebuild your `login` table.

Link to comment
Share on other sites

  • 0

I fixed this by using the default values '1000-01-01 00:00:00' for the DATETIME type, and '1000-01-01' for the DATE type. Occurs both in main.sql and logs.sql.

 

Hope this helps!

Link to comment
Share on other sites

  • 0

The real issue is with the MySQL 5.7 server. It doesn't accept invalid custom date value for datetime field. A quick solution would be to run

SET SQL_MODE='ALLOW_INVALID_DATES';

In your mysql server.

You can also do this inside your phpMyAdmin panel in the Query tab.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.