Ihre Privatsphäre ist uns wichtig
Diese Website verwendet Cookies, um Ihnen ein besseres Internet-Erlebnis zu ermöglichen. Die Auswahl kann jederzeit unter “Cookie-Einstellungen anpassen” in der Datenschuzterklärung widerrufen oder angepasst werden.
The place to find help and support
Statistics: Posted by andriishyichuk — Wed Mar 26, 2025 12:19 pm
Statistics: Posted by Panther — Sun Mar 16, 2025 9:42 pm
Yes. Every include tag has to be changed in this way.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 eagleman — Sat Mar 15, 2025 5:08 am
Statistics: Posted by Panther — Fri Mar 14, 2025 11:52 pm
Code:
$success = utils_mail....; // must return 1echo '<pre>' . $success . '</pre>';$smarty->assign('success', $success ? 1 : -1);system_seterr('xyz', $success ? 1 : -1);utils_redirect.....;
Statistics: Posted by fraenkiman — Thu Mar 13, 2025 10:59 pm
Statistics: Posted by Arvid — Tue Mar 11, 2025 7:46 pm
Statistics: Posted by Arvid — Tue Mar 11, 2025 7:45 pm
Naaah, please let's not wait until next yearI was hoping for a release on the 20th anniversary (around February 15, 2026).
Statistics: Posted by Arvid — Tue Mar 11, 2025 7:35 pm
Statistics: Posted by andriishyichuk — Mon Mar 10, 2025 1:33 pm
Statistics: Posted by laborix — Sat Mar 08, 2025 10:17 am
Sorry, nothing thought(*) HTTP Get - Example: /?u=/2011/01/01/hello-world/
or
(*) Pretty - Example: /2011/01/01/hello-world/
Statistics: Posted by laborix — Sat Mar 08, 2025 10:01 am
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; }}
Statistics: Posted by fraenkiman — Sat Mar 08, 2025 12:01 am
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.Now I tested with open pages and after the 3rd or 4th rebuild this error occurs:
Statistics: Posted by fraenkiman — Fri Mar 07, 2025 11:24 pm
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; }}
Statistics: Posted by fraenkiman — Fri Mar 07, 2025 10:09 pm
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