skip to Main Content

After uploading my October CMS code base to the a cpanel based linux server, I can’t edit my pages from backend (CMS->pages).

It gives me a popup with an http status code of 403 error page.

How can I fix the issue.

2

Answers


  1. Chosen as BEST ANSWER

    There is a known issue of the following: Hosting limitations - cannot edit pages in back-end

    I've fixed the issue by adding the following block of config in my .htaccess file:

    <IfModule mod_security.c>
      SecFilterEngine Off  
    </IfModule>
    

  2. You have to get needed permission to access them. 403 error code is for ‘forbidden access’. please check your granted permissions to you in server OS.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search