Search found 9892 matches

by Oliver Georgi
Mon 17. Oct 2022, 13:56
Forum: hacks & enhancements
Topic: loading="lazy" optimieren
Replies: 4
Views: 6842

Re: loading="lazy" optimieren

Du kannst die wichtigsten Templates inzwischen selbst bauen, dann ist auch srcset unproblematisch realisierbar: srcset="im/HxWxC/hash, …". Damit löst Du eigentlich auch Dein lazy Loading Problem, z.B. beim Slider. Da hast Du auch teils die Wahl, auf das erste Bild zu prüfen.
by Oliver Georgi
Fri 14. Oct 2022, 23:57
Forum: hacks & enhancements
Topic: loading="lazy" optimieren
Replies: 4
Views: 6842

Re: loading="lazy" optimieren

Ich habe das selbst bisher nicht auf dem Schirm gehabt, glaube aber nicht an einen ernsthaften Impact. Die meisten Lead Bilddaten wie Logo etc. werden in aller Regel auch eher von Hand gebaut und dort greifen wiederum keine Automatismen von phpwcms.
by Oliver Georgi
Wed 12. Oct 2022, 21:08
Forum: phpwcms Installationsprobleme Deutsch
Topic: csrftoken blockiert
Replies: 7
Views: 4658

Re: csrftoken bolckiert

Da hast Du nur wenige Möglichkeiten, oder Du baust die Funktion um, sodass eben nur das herauskommt, was Du möchtest. Suche die Funktion generate_get_token() . Müsste dann für Deinen Fall hier sein https://github.com/slackero/phpwcms/blob/27baba2c7ea7a84607dd385e6e078d587bcfea0c/include/inc_lib/help...
by Oliver Georgi
Sat 8. Oct 2022, 14:37
Forum: General Discussion
Topic: MAMP Pro
Replies: 4
Views: 2583

Re: MAMP Pro

Schreib am besten an den Support, sind Deutsche.
by Oliver Georgi
Mon 5. Sep 2022, 09:00
Forum: phpwcms Support Deutsch
Topic: Sortierung Contentparts ändern
Replies: 6
Views: 2240

Re: Sortierung Contentparts ändern

Könnte man natürlich mal als Option erweitern
by Oliver Georgi
Wed 31. Aug 2022, 09:58
Forum: phpwcms Support Deutsch
Topic: Sortierung Contentparts ändern
Replies: 6
Views: 2240

Re: Sortierung Contentparts ändern

Bei den Content Parts richtet sich die Sortierung nach dem Sortierwert.
by Oliver Georgi
Sun 24. Jul 2022, 09:30
Forum: Announcements
Topic: phpwcms Forum updated to phpBB 3.3.8
Replies: 0
Views: 7503

phpwcms Forum updated to phpBB 3.3.8

The phpBB forum software was updated to version 3.3.8.
Please open an issue if there is something missing or not working as expected.

Kind regards,
Oliver
by Oliver Georgi
Sun 26. Jun 2022, 09:33
Forum: phpwcms Support English
Topic: after login - redirected to front page
Replies: 13
Views: 4974

Re: after login - redirected to front page

Since it worked before and I just moved form the subdomain to the main domain by assigning the domain to the new directory without changing anything in the database or the phpwcms installation – how can this happen? Is there an explanation for that? Hard to say, I have no clue. Maybe check an older...
by Oliver Georgi
Fri 24. Jun 2022, 10:07
Forum: phpwcms Support English
Topic: after login - redirected to front page
Replies: 13
Views: 4974

Re: after login - redirected to front page

In this case: check that there is also no problem with the database after update/upgrade or installation of phpwcms. To enable database logging, set the following line in your /include/config/conf.inc.php : $phpwcms['db_errorlog'] = true; // Log DB queries - false|true Do some operations on your sid...
by Oliver Georgi
Thu 23. Jun 2022, 21:32
Forum: phpwcms Support English
Topic: after login - redirected to front page
Replies: 13
Views: 4974

Re: after login - redirected to front page

you have my contact, send me login credentials and I can check.
by Oliver Georgi
Tue 21. Jun 2022, 13:17
Forum: phpwcms Support English
Topic: after login - redirected to front page
Replies: 13
Views: 4974

Re: after login - redirected to front page

hekla wrote: Tue 21. Jun 2022, 12:42Can I send you a link to phpinfo via PN?
by email please
by Oliver Georgi
Tue 21. Jun 2022, 12:31
Forum: phpwcms Support English
Topic: after login - redirected to front page
Replies: 13
Views: 4974

Re: after login - redirected to front page

It's hard to tell because I do not know your environment. Which PHP version? Choose 7.4+

Try

Code: Select all

$phpwcms['session.cookie_httponly.off'] = true;
$phpwcms['session.cookie_samesite'] = 'None';
Check your PHP error log.
by Oliver Georgi
Wed 8. Jun 2022, 08:23
Forum: phpwcms Support Deutsch
Topic: Mittels Frontend Render CP durch anderen CP ersetzen?
Replies: 2
Views: 1701

Re: Mittels Frontend Render CP durch anderen CP ersetzen?

Umschließe die beiden in Frage kommenden Content Parts schlicht jeweils mit Kommentar-Tags: <!--MYCP1_START//--> … <!--MYCP1_END//--> <!--MYCP2_START//--> … <!--MYCP2_END//--> Dann die Bedingung: if ($Bedingung1 === true) { $content['all'] = replace_tmpl_section('MYCP2', $content['all']); } else { $...
by Oliver Georgi
Sun 5. Jun 2022, 21:49
Forum: phpwcms Discussion
Topic: github-Anleitung /github howto
Replies: 6
Views: 15626

Re: github-Anleitung /github howto

Ohne jetzt im Detail alles durchzugehen :) Danke. Und für alle Nicht-Windows-Nutzer, in aller Regel ist git ohne .exe zu nutzen. Und vermutlich auch auf den meisten Windows Systeme in genau der Form nutzbar. Eine Empfehlung, mit Branches vertraut machen. Dann lassen sich Updates auch mal eben testwe...
by Oliver Georgi
Sun 5. Jun 2022, 11:04
Forum: phpwcms Support Deutsch
Topic: PHP error Log in conf.inc.php
Replies: 2
Views: 1676

Re: PHP error Log in conf.inc.php

Es gibt keinen phpwcms-eigenen Konfigurationswert dafür, aber manche Provider machen es Nutzern nicht so einfach, genau die passenden PHP Konfigurationen zu ändern, oder man möchte das schlicht nicht auf Hostingebene. Du kannst aber die PHP-Vorgaben an der Stelle schlicht überschreiben, also individ...