Advanced Settings and Troubleshooting
This page covers advanced configuration details and common troubleshooting topics for Ultimate Markdown.
Markdown Parsers
Ultimate Markdown uses different parsers depending on the context in which content is processed. These parsers convert Markdown to HTML and vice versa.
Parsers by Context
| Context | Use | Parser |
|---|---|---|
| Markdown editor available in the Documents menu | Markdown to HTML | Defined in plugin settings using the Live Preview option under the Markdown Parsers section. |
| Export functionality available in the Documents menu | HTML to Markdown | HTML To Markdown for PHP |
| In the Tools menu, when “Posts” is selected as the destination of the import operation. | Markdown to HTML | Defined in plugin settings using the Bulk Import option under the Markdown Parsers section. |
| In the Tools menu, when “Posts” is selected as the source of an export operation. | HTML to Markdown | HTML To Markdown for PHP |
| Import Markdown section in the post editor sidebar | Markdown to HTML | Defined in plugin settings using the Editor option under the Markdown Parsers section. |
| Load Markdown section in the post editor sidebar | Markdown to HTML | Defined in plugin settings using the Editor option under the Markdown Parsers section. |
| Submit Markdown section in the post editor sidebar | Markdown to HTML | Defined in plugin settings using the Editor option under the Markdown Parsers section. |
| Export Markdown section in the post editor sidebar | HTML to Markdown | HTML To Markdown for PHP |
Upload Limits
When importing multiple files, you may encounter limits on the number of files that can be uploaded at once.
Cause
The limit is controlled by the max_file_uploads directive in your server’s PHP configuration.
This affects bulk imports performed via the Tools menu.
How to Increase the Limit
The plugin cannot modify server limits. You need to update your server configuration:
Option 1: php.ini
- Locate your
php.inifile - Find or add the directive
max_file_uploads. For example set it tomax_file_uploads = 100 - Save the file and restart your web server
Option 2: cPanel
- Log in to cPanel
- Open MultiPHP INI Editor or Select PHP Version
- Locate
max_file_uploads - Increase its value
- Save changes
For technical reference:
https://www.php.net/manual/en/ini.core.php#ini.max-file-uploads
Supported File Extensions
The import form available in the Tools menu supports Markdown files with the following extensions:
- .md
- .markdown
- .mdown
- .mkdn
- .mkd
- .mdwn
- .mdtxt
- .mdtext
- .text
- .txt
Export File Extension
You can configure the extension used for exported files in:
Settings → Advanced → Export → File Extension