By Vladimir on Tuesday, 01 September 2015
Posted in Technical Issues
Likes 0
Views 352
Votes 0
When i try publish post, i can't, there is a popup window and no editor. Can u pls help?
hey Vladimir,

After investigated long time ago, it seems like your current issue exactly same as this user reported -> http://stackideas.com/forums/composer-opens-with-all-articles-in-frontend#reply-215077 , can you try follow his instruction change the config his suggested and see how it goes?

If still can't , you have to apply this fix in your site.
http://stackideas.com/forums/composer-opens-with-all-articles-in-frontend#reply-215038

Hope this will help.
·
Tuesday, 01 September 2015 17:20
·
0 Likes
·
0 Votes
·
0 Comments
·
hey Vladimir,

I am sorry that delay of this reply,

I've checked in your site, it seems like you have modified some rules in your .htaccess file, If I temporary renamed it, it work fine.

Perhaps you can take a look of your .htaccess file regarding this and see how it goes?
·
Tuesday, 01 September 2015 13:46
·
0 Likes
·
0 Votes
·
0 Comments
·
i using FastCGI (Nginx + PHP-FPM), and i think it is not use .htaccess

i check it, and still can't make posts, when i click create new post, there is just last post in popup
·
Tuesday, 01 September 2015 14:26
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you! I fix it by changing nginx config location to this code


location / {
try_files $uri $uri/ /index.php?$args;
location ~ [^/]\.ph(p\d*|tml)$ {
try_files /does_not_exists @php;
}
}
·
Wednesday, 02 September 2015 01:42
·
0 Likes
·
0 Votes
·
0 Comments
·
You're welcome, glad to heard your issue resolved.
·
Wednesday, 02 September 2015 01:53
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post