Recent Posts

Pages: 1 2 [3] 4 5 6 7 ... 10
21
Chit Chat / Test
« Last post by Sunny C. on March 29, 2024, 06:28:13 PM »
Test

Open: categories.php
Search
"cat_description" => htmlspecialchars(format_text($cat_cache[$cat_id]['cat_description'], 1, 0, 1)),
add after
"cat_second_description" => htmlspecialchars(format_text($cat_cache[$cat_id]['cat_second_description'], 1, 0, 1)),

php bbcode broken
22
Hallo,

wurde html nicht erst aufgrund dieser Sicherheitslücke für die Kategoriebeschreibungen deaktiviert?

LG.
23
Feedback & Suggestions / Re: 4images 2
« Last post by Jan-Lukas on March 22, 2024, 09:37:01 PM »
4images will be on GitHub the next weeks, so ever PHP developer is invited to help developing 4images...


 :thumbup: I am excited and looking forward
24
Danke, wir prüfen das.
25
Feedback & Suggestions / Re: 4images 2
« Last post by kai on March 22, 2024, 09:11:14 AM »
4images will be on GitHub the next weeks, so ever PHP developer is invited to help developing 4images...
26
Feedback & Suggestions / Re: The download link is not working
« Last post by kai on March 22, 2024, 09:09:41 AM »
The following link does not work. Has the copy been deleted?
https://www.4homepages.de/?download=4images1.10.zip&code=036d37d2d64db99473a40bd6716a6397

That's not the offical download link.

Visit https://www.4homepages.de/download-4images and click on "Download Now"
28
Feedback & Suggestions / 4images 2
« Last post by Sunny C. on March 22, 2024, 06:43:35 AM »
Huhu,

es wurde oft angekündigt, aber die Jahre verstreichen.
Wird das noch was? Wäre schön wenn man jetzt mal ein klares Ja oder Nein aussprechen könnte.

Ich pers. würde es begrüßen.

mfg
29
Hallo Alle,
Nach Upgrade zu 1.10 wurden die Kategoriebeschreibungen, die bei mir HTML enthalten, nicht mehr geparst.
Der Fehler liegt in den Scripten categories.php und includes/functions.php

Sucht/search in categories.php nach
Code: [Select]
"cat_description" => htmlspecialchars(format_text($cat_cache[$cat_id]['cat_description'], 1, 0, 1)),
und ersetzt/replace mit:
Code: [Select]
"cat_description" => un_htmlspecialchars(format_text($cat_cache[$cat_id]['cat_description'], 1, 0, 1)),
in includes/functions.php such/search nach
Code: [Select]
"cat_description" => htmlspecialchars(format_text($cat_cache[$category_id]['cat_description'], 1)),
und ersetzt/replace mit
Code: [Select]
"cat_description" => un_htmlspecialchars(format_text($cat_cache[$category_id]['cat_description'], 1)),
Das sollte die Anzeigeprobleme beheben.

*** for english speakers **
If you have trouble to get the correct html output in categories, please search in categories.php and includes/functions.php the rows above and change accordingly. This should solve the issue.
30
Installation, Update & Configuration / Re: Installation problem
« Last post by php8 on February 19, 2024, 11:16:30 PM »
Hello,

you can fix this by opening the files under "data/database/default"
Search:

Code: [Select]
ENGINE=MyISAM;
Replace with

Code: [Select]
ENGINE=InnoDB;
Ref.:
1) https://www.4homepages.de/forum/index.php?topic=33114.msg168413#new
2) Microsoft Copilot:
Quote
Change the table engine: Some MySQL engines have different limits for the index length. You could change the table engine from MyISAM to InnoDB to work around the problem

Best regards.
Pages: 1 2 [3] 4 5 6 7 ... 10