Search found 133 matches

by Jay
Fri Dec 18, 2020 3:33 pm
Forum: General
Topic: Securing BLUDIT
Replies: 3
Views: 2606

Re: Securing BLUDIT

Basically the most wanted option is to secure the website with ssl certificate and redirect incoming traffic from unsecured http to https protocol. It opens couple additional possibilities like encrypting cookies, modifying headers by adding f.e. Content-Security-Policy. Also forcing HSTS is great f...
by Jay
Sun Dec 06, 2020 5:59 pm
Forum: General
Topic: automatic redirection from http to https using .htaccess
Replies: 5
Views: 2387

Re: automatic redirection from http to https using .htaccess

Is enabled on the sever YOU rent. And you are talking about webapplication's default code. One rule won't cover 100% use cases, not in IT. There could be some good practices for users, like code droplets in wiki so they might test it on their own hosting environment. As well as php enable/disable ht...
by Jay
Sun Dec 06, 2020 5:02 pm
Forum: Plugins
Topic: Add custom CSS to individual posts
Replies: 3
Views: 1718

Re: Add custom CSS to individual posts

You can also utilize custom fields or create additional template files, but it needs a bit more work.
It all depends on your use case.
by Jay
Sun Dec 06, 2020 4:59 pm
Forum: General
Topic: automatic redirection from http to https using .htaccess
Replies: 5
Views: 2387

Re: automatic redirection from http to https using .htaccess

Why you think there should be such one? If user's webserver (or hosting account) doesn't offer or is not configured to serve content through https, then installation might go wrong. And even if there's https, checking it through mod rewrite doesn't guarantee it will work. It may only check if https ...
by Jay
Sun Nov 22, 2020 4:37 pm
Forum: General
Topic: Tags By Letter
Replies: 2
Views: 1231

Re: Tags By Letter

Considering you don't have special chars as your first letter in tags, you can just add a simple conditional statement to show only tags starting with fixed letter if (strtolower($tag->name()[0]) == 'd') { echo '<p><a href="'.$tag->permalink().'">'.$tag->name().'</a></p>'. PHP_EOL; }
by Jay
Thu Nov 19, 2020 3:26 am
Forum: General
Topic: simple news board solution
Replies: 2
Views: 1192

Re: simple news board solution

too much hassle with separating them from default blog posts, setting post options for entry with 1-2 sentences (I need only date and content), disabling seo, hiding categories from being accessed etcetera etcetera etc. As I mentioned at the beginning, default blog workflow is too complicated for ma...
by Jay
Wed Nov 18, 2020 9:11 pm
Forum: General
Topic: simple news board solution
Replies: 2
Views: 1192

simple news board solution

I'm wondering about a solution for adding a short news on homepage, or one of the static pages. It might resemble a twitter wall for posting short informations. Not more than creation date and 1-2 sentences. I doubt there's such plugin. The problem is that making use of bludit's (overall any CMS) pa...
by Jay
Wed Oct 28, 2020 1:22 am
Forum: General
Topic: listing posts on a static page
Replies: 20
Views: 14333

Re: listing posts on a static page

When setting a static page as parent for a published page type, the published page is converted to static type. I'd like to disable such automatic switch, to have the possibility to set a static parent also for published page. in v3.9 it was pretty easy. Now , when the backend progressed pretty muc...
by Jay
Wed Oct 28, 2020 1:13 am
Forum: General
Topic: Dynamic URL
Replies: 5
Views: 2214

Re: Dynamic URL

momo wrote: Tue Oct 27, 2020 10:28 pm
isn't there any other way?
Use an undocumented native bludit's feature which is custom template field in page's options.
Check this thread viewtopic.php?f=6&t=1416
by Jay
Mon Oct 12, 2020 11:09 pm
Forum: General
Topic: listing posts on a static page
Replies: 20
Views: 14333

Re: listing posts on a static page

A fixed subpage, whatever this would be, to show blog posts, is not supported by Bludit. I just...don't know how to respond. Fixed - a selected page bound to a certain behaviour. Fixed isn't a type of page existing in bludit like static, published, sticky etc. I probably didn't express myself clear...