Hello. An object is created in the CMS (table in database, folder and several files on the server) and when you visually want to edit it, a blank page is loaded. In the Apache logs:
cloudme.com: 127.0.0.1 [16/Jan/2015:01:59:42 +0300] "GET /admin/objects/content.id.110.html HTTP/1.1" 403 - "http://cloudme.com/admin/tree/index.pid.1.html" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0" Here is the .htaccess file
AddDefaultCharset WINDOWS-1251 Options -Indexes DirectoryIndex cms.core.php index.php index.html RewriteEngine On Options +FollowSymlinks RewriteBase / RewriteRule ^$ /cms.core.php [L] RewriteRule ^(thumb.*)$ scripts/thumb.php?$2 [L] RewriteRule ^(imagick.*)$ scripts/imagick.php?$2 [L] RewriteRule ^(error.*)$ scripts/error.php?$2 [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule (.*)$ /cms.core.php [QSA] <Files ~ "\.(tpl|conf)$"> Deny from all </Files> What could be the problem?