Unable to create Page or Space
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Summary
Problem
Unable to create a Page or Space . A popup appears and never completes loading .

The following appears in the atlassian-confluence.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2015-05-21 15:23:17,817 ERROR [http-bio-8099-exec-6] [atlassian.plugin.web.DefaultWebInterfaceManager] filterFragmentsByCondition Could not evaluate condition 'com.atlassian.plugin.web.conditions.AndCompositeCondition@19c3f507' for descriptor: com.atlassian.plugin.notifications.notifications-module:show-notifications-prompt (Determines if a prompt should be shown to the current user to update their notification settings.)
com.atlassian.activeobjects.internal.ActiveObjectsInitException: Active Objects failed to initalize for bundle com.atlassian.plugin.notifications.notifications-module
at com.atlassian.activeobjects.osgi.ActiveObjectsServiceFactory$5.apply(ActiveObjectsServiceFactory.java:207)
at com.atlassian.activeobjects.osgi.ActiveObjectsServiceFactory$5.apply(ActiveObjectsServiceFactory.java:187)
at com.atlassian.util.concurrent.Promises$Of$2.apply(Promises.java:259)
at com.atlassian.util.concurrent.Promises$Of$2.apply(Promises.java:256)
at com.atlassian.util.concurrent.Promises$2.onFailure(Promises.java:162)
at com.google.common.util.concurrent.Futures$7.run(Futures.java:1100)
at com.google.common.util.concurrent.MoreExecutors$SameThreadExecutorService.execute(MoreExecutors.java:253)
at com.google.common.util.concurrent.ExecutionList$RunnableExecutorPair.execute(ExecutionList.java:161)
at com.google.common.util.concurrent.ExecutionList.execute(ExecutionList.java:134)
at com.google.common.util.concurrent.JdkFutureAdapters$ListenableFutureAdapter$1.run(JdkFutureAdapters.java:152)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
at java.lang.Thread.run(Thread.java:745)
Caused by: net.java.ao.ActiveObjectsException: java.sql.SQLException: Base table or view not found message from server: "Table 'confluence.ao_7cde43_server_param' doesn't exist"
Diagnosis
Environment
MySQL database
Cause
This is caused due to unsupported MySQL database driver.
Please refer the supported database drivers for Confluence.
Solution
Resolution
Use the recommended MySQL driver (JDBC Connector/J 5.1), follow the steps below.
Get the MySQL driver:
If you are installing Confluence, download the recommended MySQL driver . Links to the appropriate database drivers are available on this page: Database JDBC Drivers.
You can download either the
.tar.gz
or the.zip
archive. Extract the driver JAR file (for example,mysql-connector-java-x.x.x-bin.jar
, wherex.x.x
is a version number) from the archive.If you are upgrading Confluence to a later version, and you are not using the recommended MySQL driver (JDBC Connector/J 5.1), copy the driver JAR file from your existing Confluence installation before you upgrade. The driver will be in the
<Confluence installation>
/confluence/WEB-INF/lib
folder.
Copy the driver JAR file to the
<Confluence installation>
/confluence
/WEB-INF/lib
folder in your new or upgraded Confluence installation.
NOTE : If you plan to set up a datasource connection to MySQL, follow the steps described in Configuring a MySQL Datasource in Apache Tomcat.
Was this helpful?