virgilwashere / mautic-cron-commands

Script to run Mautic commands from a web page.
https://www.mautic.org
GNU General Public License v3.0
36 stars 25 forks source link

No support for Mautic 3 #9

Closed MauriceW2 closed 4 years ago

MauriceW2 commented 4 years ago

This version does not seem to work with Mautic 3 yet.

Could you please update this to support Mautic v3?

welcome[bot] commented 4 years ago

Thanks for opening your first issue here! Be sure to follow the issue template!

fredroo commented 4 years ago

Follow @virgilwashere return page not found

virgilwashere commented 4 years ago

Follow @virgilwashere return page not found

That seems to work for me.

virgilwashere commented 4 years ago

This version does not seem to work with Mautic 3 yet.

Could you please update this to support Mautic v3?

I shall

fredroo commented 4 years ago

thanks a lot @virgilwashere

stale[bot] commented 4 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

fredroo commented 4 years ago

@virgilwashere are some prevision to release update Mautic 3?

pagelab commented 3 years ago

@fredroo This is a .htaccess issue. You should add your commands.php file to the whitelist in the Mautic's .htaccess file, line 113, like that:

Before:

    # Except those whitelisted bellow.
    <FilesMatch "^(index|index_dev|filemanager|upgrade)\.php$">
        Require all granted
    </FilesMatch>

After:

    # Except those whitelisted bellow.
    <FilesMatch "^(index|index_dev|filemanager|upgrade|commands)\.php$">
        Require all granted
    </FilesMatch>