Create Space Dialog Loads Indefinitely
Symptoms
- Upon creating a space, the space type dialog appears but seems to load forever / freezes.
- The following appears in the
atlassian-confluence.log
:
2014-03-25 11:15:47,997 ERROR [http-8090-24] [plugin.descriptor.web.ConfluenceWebInterfaceManager] getHtml Failed to render web panel: com.atlassian.plugin.web.descriptors.DefaultWebPanelModuleDescriptor$ContextAwareWebPanel@55fe6a46
Cause
MySQL server is configured to have NO_AUTO_VALUE_ON_ZERO mode to be enabled.
Resolution
- Open the MySQL configuration file
my.ini
(Windows) ormy.cnf
(Unix) Find
sql_mode
and deleteNO_AUTO_VALUE_ON_ZERO.
For example, if you have the following...sql_mode = NO_AUTO_CREATE_USER,NO_AUTO_VALUE_ON_ZERO
...change it to...
sql_mode = NO_AUTO_CREATE_USER
Save the file and restart MySQL server
Last modified on Jun 20, 2019
Powered by Confluence and Scroll Viewport.