HELP About FLUXCP latest

Kit Kit

New member
Messages
58
Points
0
Emulator
Critical Error

An error was encountered during the lifetime of the application.

This could be due to a variety of problems, such as a bug in the application.

However, normally it is caused by misconfiguration.

Exception DetailsError: Flux_Error

Message: Critical MySQL error in Installer/Updater: Invalid default value for 'reg_date'

File: C:\wamp\www\Thanatos\lib\Flux\Installer\Schema.php:131

File Line Function/Method C:\wamp\www\Thanatos\lib\Flux\Installer\Schema.php 155 Flux_Installer_Schema::install() C:\wamp\www\Thanatos\lib\Flux\Installer\MainServer.php 46 Flux_Installer_Schema::update() C:\wamp\www\Thanatos\modules\install\index.php 83 Flux_Installer_MainServer::updateAll() C:\wamp\www\Thanatos\lib\Flux\Template.php 375 include() C:\wamp\www\Thanatos\lib\Flux\Dispatcher.php 170 Flux_Template::render() C:\wamp\www\Thanatos\index.php 180 Flux_Dispatcher::dispatch() Exception Trace As String#0 C:\wamp\www\Thanatos\lib\Flux\Installer\Schema.php(155): Flux_Installer_Schema->install('20080928225124')

#1 C:\wamp\www\Thanatos\lib\Flux\Installer\MainServer.php(46): Flux_Installer_Schema->update()

#2 C:\wamp\www\Thanatos\modules\install\index.php(83): Flux_Installer_MainServer->updateAll()

#3 C:\wamp\www\Thanatos\lib\Flux\Template.php(375): include('C:\\wamp\\www\\Tha...')

#4 C:\wamp\www\Thanatos\lib\Flux\Dispatcher.php(170): Flux_Template->render()

#5 C:\wamp\www\Thanatos\index.php(180): Flux_Dispatcher->dispatch(Array)

#6 {main}

How to fix it...

 
Last edited by a moderator:
Make sure your config/servers.php file is configured properly.

Also you need to grant proper write permissions for the cp folder (forgot what they are...maybe someone can fill them in).

 
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.

 
Back
Top