0

I am trying to add a Page or an Entry and the message when trying to publish is the following:

The publication has failed. The response is not a valid JSON response.

I have also published my query in the servers section, since the installation of the imagemagick and the repository was satisfactory, however, it is not letting me publish Pages or Entries

Posted on Servers: https://serverfault.com/questions/1162647/imagemagick-for-linux-alma-8-success-but-which-no-magick

console: enter image description here

network: enter image description here

2
  • Could you please try to check browser dev tool console and network tab, it should show detailed error exactly what is causing the issue. Commented Jul 18 at 4:38
  • Thanks for the suggestion, add the console and network captures to the main query
    – euroluar
    Commented Jul 19 at 11:51

1 Answer 1

0

I solved it adding a configuration on the htaccess

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

Not the answer you're looking for? Browse other questions tagged or ask your own question.