Bludit v4 - Alpha version

wmcig
Ssr. Bludit
Posts: 21
Joined: Tue Jun 20, 2017 5:32 pm

Edi wrote: Fri Nov 05, 2021 5:28 pm Which version of PHP do you use?

Shows the log file any errors?
Php version:

Code: Select all

 php --version
PHP 7.4.25 (cli) (built: Oct 23 2021 21:53:50) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
    with Zend OPcache v7.4.25, Copyright (c), by Zend Technologies 
Which logfile do you need?
wmcig
Ssr. Bludit
Posts: 21
Joined: Tue Jun 20, 2017 5:32 pm

The logfiles do not show any errors.
User avatar
Edi
Site Admin
Posts: 3120
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

Here are the informations about using Nginx in the documentation:

https://docs.bludit.com/en/webservers/nginx

If this does not help I will ask Diego, the developer, to have a look at it.
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
wmcig
Ssr. Bludit
Posts: 21
Joined: Tue Jun 20, 2017 5:32 pm

Edi wrote: Mon Nov 08, 2021 9:04 pm Here are the informations about using Nginx in the documentation:

https://docs.bludit.com/en/webservers/nginx

If this does not help I will ask Diego, the developer, to have a look at it.
I tried it several times. I put the conf-file into each time in several folders: "/etc/nginx/ sites-enabled", "/etc/nginx/sites-available", "etc/nginx/conf.d".

Nothing helped. Everytime there was the error "404 not found nginx". But in the address line of the browser I could see "http://192.168.178.40/bludit/willkommen-bei-bludit", after I clicked on the title of the post on the page.
User avatar
Edi
Site Admin
Posts: 3120
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

Is the module ngx_http_rewrite_module enabled?
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
wmcig
Ssr. Bludit
Posts: 21
Joined: Tue Jun 20, 2017 5:32 pm

I am using bludit.conf in folder "etc/nginx/conf.d"

I have enabled the mod_rewrite for subfolder bludit.

Code: Select all

GNU nano 5.4                     bludit.conf
server {
    listen 80;
    server_name example.com;
    root /www/bludit;
    index index.php;

    access_log /var/log/nginx/example.log;
    error_log /var/log/nginx/example.log;

    location ~ \.(jpg|jpeg|gif|png|css|js|ico|svg|eot|ttf|woff|woff2|otf)$ {
        access_log        off;
        expires           30d;
    }

    location ~ \.php$ {
        fastcgi_pass    unix:/run/php/php-fpm.sock;
        fastcgi_index   index.php;
        include         fastcgi.conf;
    }

    location /bludit {
        try_files $uri $uri/ /bludit/index.php?$args;
    }

    location ^~ /bl-content/databases/ { deny all; }
    location ^~ /bl-content/workspaces/ { deny all; }
    location ^~ /bl-content/pages/ { deny all; }
    location ^~ /bl-kernel/*.php { deny all; }
}
It does not work.
HowardB
Sr. Bludit
Posts: 40
Joined: Sat Jun 04, 2022 1:31 pm
Been thanked: 2 times

Hi
I am impressed with the v4 user interface and therefore I have been adding content quickly
However the ADSense Plugin has not been updated and many themes likewise
Question
Can I downgrade to the early version without losing content?

Many thanks

Howard
User avatar
Edi
Site Admin
Posts: 3120
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

Yes, downgrading is no problem.
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
miata
Jr. Bludit
Posts: 2
Joined: Thu Jul 07, 2022 8:46 am

Hi, in v.3 thumbnails could be displayed like this
<?php echo $page->thumbcoverImage(); ?>
in the template.

How is the output in v.4?

Thank you for your help
User avatar
Edi
Site Admin
Posts: 3120
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

It's the following:

Code: Select all

<?php echo $page->coverImage(); ?>
See for example:

https://github.com/bludit/bludit/blob/5 ... me.php#L28
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
Post Reply