RSS und Atom Feed Reader Online

FlatPress support forum

The place to find help and support

Development and tests • Re: Green pop-up notification for success is random

Last time I did it, I just went with $smarty->assign('success', 1);
And yet it was random.
Anyway, today is the day I add another feature, and I will know more.

Statistics: Posted by andriishyichuk — Wed Mar 26, 2025 12:19 pm


Veröffentlicht am 26.03.2025 um 13:19:04 Uhr - Kategorie: Development and tests - Autor: andriishyichuk

Theme support • Re: Available themes and Flatpress 1.3 beta

it works, thank you

Statistics: Posted by Panther — Sun Mar 16, 2025 9:42 pm


Veröffentlicht am 16.03.2025 um 22:42:13 Uhr - Kategorie: Theme support - Autor: Panther

Theme support • Re: Available themes and Flatpress 1.3 beta

something like this ?

from:
{include file=shared:entryadminctrls.tpl}
to
{include file=shared:"entryadminctrls.tpl"}


or

from:
{include file=cpheader.tpl}
to:
{include file="cpheader.tpl"}
Yes. Every include tag has to be changed in this way.
It should work fine, but for any problem ask again.

Statistics: Posted by eagleman — Sat Mar 15, 2025 5:08 am


Veröffentlicht am 15.03.2025 um 06:08:02 Uhr - Kategorie: Theme support - Autor: eagleman

Theme support • Re: Available themes and Flatpress 1.3 beta

something like this ?

from:
{include file=shared:entryadminctrls.tpl}
to
{include file=shared:"entryadminctrls.tpl"}


or

from:
{include file=cpheader.tpl}
to:
{include file="cpheader.tpl"}

Statistics: Posted by Panther — Fri Mar 14, 2025 11:52 pm


Veröffentlicht am 15.03.2025 um 00:52:38 Uhr - Kategorie: Theme support - Autor: Panther

Development and tests • Re: Green pop-up notification for success is random

Hello andriishyichuk.

The logic fits.
$success must result in 1. Then you assign the result 1 directly to the template and then with system_seterr into the session -> before a forwarding takes place.

Before you assign a result to the template, simply check one line above whether $success = utils_mail.... really returns 1. The success message depends on this. It is possible that sendmail or a similar program is acting up.

Code:

$success = utils_mail....; // must return 1echo '<pre>' . $success . '</pre>';$smarty->assign('success', $success ? 1 : -1);system_seterr('xyz', $success ? 1 : -1);utils_redirect.....;
If you get stuck, throw everything into a ZIP archive and send it to me by e-mail.

Best regards
Frank

Statistics: Posted by fraenkiman — Thu Mar 13, 2025 10:59 pm


Veröffentlicht am 13.03.2025 um 23:59:35 Uhr - Kategorie: Development and tests - Autor: fraenkiman

Plugin support • Re: Dynamic fade-in plugin

Hehe, nice effect (a bit too playful for my taste, but still neat^^)

Statistics: Posted by Arvid — Tue Mar 11, 2025 7:46 pm


Veröffentlicht am 11.03.2025 um 20:46:54 Uhr - Kategorie: Plugin support - Autor: Arvid

Plugin support • Re: Parsedown plugin

Another freedom of choice for FlatPress users, nice one!

Dear users out there, please let us know if you use this cool plugin and if it serves its purpose well. Thanks!

All the best,
Arvid

Statistics: Posted by Arvid — Tue Mar 11, 2025 7:45 pm


Veröffentlicht am 11.03.2025 um 20:45:43 Uhr - Kategorie: Plugin support - Autor: Arvid

FlatPress project • Re: PHP 8.3 and 8.4

Guys, reading this topic is just awesome. Thank you so much for spending hours and hours finding and removing bugs from FlatPress, this is just awesome 🤩

I was hoping for a release on the 20th anniversary (around February 15, 2026).
Naaah, please let's not wait until next year :lol:

Torsten, thank you for sharing your finding!
Of course, we plan to release FlatPress 1.4 "Notturno" as soon as possible - in 2025 :D

All the best
Arvid

Statistics: Posted by Arvid — Tue Mar 11, 2025 7:35 pm


Veröffentlicht am 11.03.2025 um 20:35:11 Uhr - Kategorie: FlatPress project - Autor: Arvid

Development and tests • Re: Green pop-up notification for success is random

I see, thank you.

Do I understand correctly that doing "$smarty->assign('success', 1);" and then 'system_seterr("contact", 1)' should do the trick? That's what I did and it's still random.

Which part of the code reads the variable set by '"system_seterr("contact", 1)'? Cuz, I named my form "regform" and hence the seterr part would read "system_seterr("regform", 1). Basically, is there a static lust of err variables that I must update?

Statistics: Posted by andriishyichuk — Mon Mar 10, 2025 1:33 pm


Veröffentlicht am 10.03.2025 um 14:33:13 Uhr - Kategorie: Development and tests - Autor: andriishyichuk

Development and tests • Re: FlatPress 1.4-dev Github 1908 - Problem with meta-tags

Please also close this thread, problem situation is solved.

If you call up the blog directly, i.e. all posts are visible, no meta tags are in the source code listed. If you then switch to a entry, i.e. only this entry is displayed, then the meta tags are present in the source code. It was my mistake, nothing thinking before posting :oops:

Hint:
You should explain in the instructions for the SEO plugin that only this entry gets these meta tags and only if you only read this entry.
The whole thing is independent of the web server, whether Apache or Nginx

best regards

Statistics: Posted by laborix — Sat Mar 08, 2025 10:17 am


Veröffentlicht am 08.03.2025 um 11:17:39 Uhr - Kategorie: Development and tests - Autor: laborix

General Support • Re: FlatPress 1.4-dev Github 1908 - PrettyUrls problems

Please close the whole thread, PrettyUrls works if you apply the correct rewrite rule as shown in the FlatPress Wiki!
Link: https://wiki.flatpress.org/doc:plugins: ... ?s[]=nginx

Under Nginx this two prettyUrl settings work as shown in the FlatPress Wiki
(*) HTTP Get - Example: /?u=/2011/01/01/hello-world/

or

(*) Pretty - Example: /2011/01/01/hello-world/
Sorry, nothing thought :oops:

Statistics: Posted by laborix — Sat Mar 08, 2025 10:01 am


Veröffentlicht am 08.03.2025 um 11:01:12 Uhr - Kategorie: General Support - Autor: laborix

General Support • Re: FlatPress 1.4-dev Github 1908 - PrettyUrls problems

Hello Laborix,

try this or a similar configuration:

Code:

server {    listen 80;    server_name yourdomain.com;    root /path/to/flatpress;    index index.php;    # PrettyURLs-Unterstützung für FlatPress    location / {        try_files $uri $uri/ /index.php?$args;    }    # Unterstützung für Path Info URLs (/index.php/2024/01/01/hello-world/)    location ~ ^/index\.php(/.*)?$ {        fastcgi_split_path_info ^(.+\.php)(/.*)$;        include fastcgi_params;        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;        fastcgi_param PATH_INFO $fastcgi_path_info;        fastcgi_pass unix:/run/php/php8.4-fpm.sock;  # Stelle sicher, dass dies zum richtigen PHP-FPM-Socket passt    }    # Blockiert den Zugriff auf .htaccess-Dateien    location ~ /\.ht {        deny all;    }    # Entfernt den "X-Powered-By" Header    add_header X-Powered-By "";    # Unterstützung für Sitemap-URLs    rewrite ^/sitemap\.xml$ /sitemap.php last;    rewrite ^/sitemap$ /sitemap.php last;    # Weiterleitung aller nicht existierenden Dateien an index.php für PrettyURLs    location / {        try_files $uri $uri/ /index.php?$query_string;    }    # PHP-Verarbeitung    location ~ \.php$ {        include fastcgi_params;        fastcgi_pass unix:/run/php/php8.4-fpm.sock;  # Passe dies an deine PHP-Version an        fastcgi_index index.php;        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;    }}
Functionality also here without guarantee.
With best regards
Frank

Statistics: Posted by fraenkiman — Sat Mar 08, 2025 12:01 am


Veröffentlicht am 08.03.2025 um 01:01:32 Uhr - Kategorie: General Support - Autor: fraenkiman

General Support • Re: FlatPress 1.4-dev Github 1905 - Rebuild index failure

Hello Laborix,
Now I tested with open pages and after the 3rd or 4th rebuild this error occurs:
that won't work either, neither with the original function nor with the customized one. You keep the “old” index in use with the open pages. This can then neither be renamed nor deleted. Theoretically, in order to rebuild the index, you would have to put FlatPress into a maintenance mode, which does not exist.

I would therefore leave the original “Rebuild index” function as it is, with the proviso that the LOWRES page may have to be reloaded.

Best regards
Frank

Statistics: Posted by fraenkiman — Fri Mar 07, 2025 11:24 pm


Veröffentlicht am 08.03.2025 um 00:24:37 Uhr - Kategorie: General Support - Autor: fraenkiman

Development and tests • Re: FlatPress 1.4-dev Github 1908 - Problem with meta-tags

Possible NGINX configuration:

Code:

server {    listen 80;    server_name example.com;    location / {        proxy_pass http://localhost:8080; # Forwarding to the PHP server        proxy_set_header X-Forwarded-Proto $scheme;        proxy_set_header X-Forwarded-Port $server_port;        proxy_set_header X-Real-IP $remote_addr;        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;        proxy_set_header Host $host;    }}
Without guarantee, as I do not use NGINX.

Statistics: Posted by fraenkiman — Fri Mar 07, 2025 10:09 pm


Veröffentlicht am 07.03.2025 um 23:09:16 Uhr - Kategorie: Development and tests - Autor: fraenkiman

Development and tests • Re: FlatPress 1.4-dev Github 1908 - Problem with meta-tags

Possible replacement function, which also takes load balancers and reverse proxies into account.

Code:

if (!function_exists('currentPageURL')) {function currentPageURL() {$protocol = is_https() ? "https" : "http";$port = $_SERVER ['SERVER_PORT'];if (!empty($_SERVER ['HTTP_X_FORWARDED_PORT'])) {$port = $_SERVER ['HTTP_X_FORWARDED_PORT'];}$portString = (!in_array($port, ["80", "443"])) ? ":" . $port : "";$curpageURL = $protocol . "://" . $_SERVER ["SERVER_NAME"] . $portString . $_SERVER ["REQUEST_URI"];return $curpageURL;}}

Statistics: Posted by fraenkiman — Fri Mar 07, 2025 9:53 pm


Veröffentlicht am 07.03.2025 um 22:53:03 Uhr - Kategorie: Development and tests - Autor: fraenkiman



Webhosting bei Alfahosting - jetzt kostenlos testen!