Blocs to PulseCMS Blog Detail Page

Dear PulseCMS Support Team,

Unfortunately I do not get any answers or solutions to my questions. Would I like to know how to proceed now?

Sorry we didn’t answer your question immediately @codiergott but please understand:

  • it was a weekend when you last posted (and is Sunday here now)
  • Couple days is reasonable reply time
  • Server setup is your own responsibility. We are not a hosting company and recommend shared hosting anyway as stated here
  • Of course it works on Nginx or custom servers but you have to ensure that your server is compatible - we cannot do server installation or maintenance. Anyone using a VPS or other should have enough knowledge to set that up themselves.

That said we can “suggest” some things, but can’t say exactly as we don’t know the make up and config of your server box.

It might be a rule ordering bug in the configs.

The last thing to try is:

location /
{
index index.php;

rewrite ^/blog-page-([^-]*)$ /?page=$1&p=blog break;

rewrite ^/blog-([^-]*)+? /?d=$1&p=blog break;

rewrite ^tagged\/(.*)$ /?p=blog&blog_tag_name=$1 break;
rewrite ^endpoint\/(.*)$ /end_point.php?item=$1 break;
rewrite ^dropzone_upload_handler.php$ /dropzone_upload_handler.php break;

if (!-e $request_filename){
rewrite ^(.*)$ /index.php?p=$1 last;
}

}

In case the order of the rules matters.

Please consult with your system admin to determine what the cause might be

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.