You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simplified Guide: Installing Custom Objects Plugin for Mautic 5.1.1
This guide helps you set up the Custom Objects plugin with Mautic 5.1.1 using the latest compatibility updates, while simplifying the upload process.
Al following steps are done locally in your computer before you even go to mautic instance.
Step 1: Clone the Plugin and Apply Compatibility Changes
Clone the staging branch of the Custom Objects plugin using Git Bash:
Archive the folder (mc-cs-plugin-custom-objects) into a ZIP file.
Rename the ZIP file to CustomObjectsBundle.zip.
Step 3: Upload and Extract on Mautic Server
Upload CustomObjectsBundle.zip to the plugins folder of your Mautic installation using SFTP or a file manager.
Extract the ZIP file inside the plugins folder.
Rename the extracted folder to CustomObjectsBundle.
Step 4: Install the Plugin in Mautic
SSH into your Mautic server and navigate to the plugins directory
or in file manager of your server just go to mautic installation directory and go to plugins folder.
cd your-mautic-path/plugins
IMPORTANT STEP: I had error 500, to fix it you need to manually run this command:
Go to Settings > Plugins and check if the Custom Objects plugin is listed and activated.
Final Notes
• If you encounter a 500 Internal Server Error after extracting the plugin, this is expected as Mautic needs to recognize the new plugin. It should be resolved after running the installation and clearing the cache.
• If you experience any issues, check the Mautic logs in:
your-mautic-path/var/logs/
After all this you will have CustomObjectsBundle running for Mautic 5 version.
The text was updated successfully, but these errors were encountered:
Simplified Guide: Installing Custom Objects Plugin for Mautic 5.1.1
This guide helps you set up the Custom Objects plugin with Mautic 5.1.1 using the latest compatibility updates, while simplifying the upload process.
Al following steps are done locally in your computer before you even go to mautic instance.
Step 1: Clone the Plugin and Apply Compatibility Changes
git clone -b staging https://github.com/acquia/mc-cs-plugin-custom-objects.git
cd mc-cs-plugin-custom-objects
git remote add upstream https://github.com/acquia/mc-cs-plugin-custom-objects.git
git fetch upstream pull/338/head:pr-338
Step 2: Prepare the Plugin for Upload
Step 3: Upload and Extract on Mautic Server
Step 4: Install the Plugin in Mautic
or in file manager of your server just go to mautic installation directory and go to plugins folder.
cd your-mautic-path/plugins
IMPORTANT STEP: I had error 500, to fix it you need to manually run this command:
sudo /usr/bin/php your-mautic-path/bin/console mautic:plugins:install
o You should see output confirming that 1 plugin was installed.
sudo /usr/bin/php your-mautic-path/bin/console cache:clear
Step 5: Verify Plugin Installation
Final Notes
• If you encounter a 500 Internal Server Error after extracting the plugin, this is expected as Mautic needs to recognize the new plugin. It should be resolved after running the installation and clearing the cache.
• If you experience any issues, check the Mautic logs in:
your-mautic-path/var/logs/
After all this you will have CustomObjectsBundle running for Mautic 5 version.
The text was updated successfully, but these errors were encountered: