Here are some instructions to assist in diagnosing your issue(s) which you should evaluate and attempt before creating a topic on our support forums.
Some plugins may not be compatible with DMS due to conflicts in code. In order to diagnose if a plugin is causing an error, navigate to your Wordpress Administrator Dashboard → Plugins.
If the issue does not persist, one (or more) of your plugins is causing a conflict with PageLines DMS. To determine which plugin(s) is causing the conflict, follow these steps:
If you're experiencing issues with DMS functionality this may be due to JavaScript errors or conflicts. For example, the DMS Visual Editor may be broken, or your sections don't drag and drop. Diagnosing JavaScript errors/conflicts can usually be found in your browsers built-in web developer tools.
The console will provide you with the error type, the location of the error and the line number
Note: If you prefer to use another browser, you can find instructions on how to identify JavaScript errors from the Wordpress Codex
If you encounter a white screen of death (WSOD) or receive a PHP error message preventing your from accessing your site, this may be due to a PHP error. Debugging PHP errors is made simple as WordPress comes with specific debug systems designed to simplify the process.
define('WP_DEBUG', false);
false
with true
like so define('WP_DEBUG', true);
Enabling WP_DEBUG will cause all PHP errors, notices and warnings to be displayed, like the image above.
By following these guidelines you may indentify the cause of your issue yourself. If this isn't the case, don't panic. Providing this information when creating your forum topic, will greatly help our support staff identify the cause of your error(s).