Recent Posts

Pages: 1 ... 3 4 5 6 [7] 8 9 10
61
News & Announcements / Re: 4images 1.9
« Last post by kp on November 01, 2022, 12:52:47 PM »
Found another PHP8 bug in this version.
The admin-function "Edit images" (German: Bilder bearbeiten) the result is strange when there are no filters set. Sometimes I got 0 images, sometimes 5000 sometimes all of them. This comes from the new handling in misusing a compare of string with an integer.
The problem is in the file admin\images.php at line 664.
Here you have to change
if ($image_id != "") {
to
if ($image_id != 0) {

If you aren't experienced enough to change this, you can load my attached fixed file and replace it at your webspace.
Would be cool if the 4images guys could add this fix to there 1.9(.1) package.
62
Bug Fixes & Patches / Re: PHP 8 Fix for V1.9
« Last post by kp on October 31, 2022, 10:53:13 AM »
Hey,
I'm not a responsible person but I kept on eye on your post.
As I can see, the first "bug" is within the Admin area. So nobody could go there and can do something bad. On the other hand it looks for me, that 4images is cleaning all parameters.
So are you really sure that there is a real bug? I can't really find out on the page what the result is with this security tool.

About Cross Site Scripting I had not looked at yet.

Thank you.

Hello there. There are 2 security vulnerabilities here, I wonder if the developers can release a patch for it? Thanks in advance, it's urgent.
https://packetstormsecurity.com/files/163818/4images-1.8-SQL-Injection.html
https://packetstormsecurity.com/files/162946/4Images-1.8-Cross-Site-Scripting.html

Versions 1.8 and 1.9 seem to be affected.
63
Installation, Update & Configuration / Re: 1.9 Installation bricht ab
« Last post by kp on October 31, 2022, 10:26:46 AM »
Schaut mal hier:
https://www.4homepages.de/forum/index.php?topic=33114.msg168413#new

Vielleicht hilft euch das ja.
Vor allem das mit der InnoDB.


Btw. das Tool hier ist echt stark aber leider wird es nicht mehr (wirklich) weiterentwickelt und der Support ist auch nicht mehr da. Mit viel bitten hat man eine Anpassung auf PHP8 gemacht, aber auch die ist nicht fehlerfrei. Auch es es nicht responsible, d.h. auf Handy usw. passt sich das Tool nicht an. Ich habe mir das Tool zwar so angepasst, dass es das tut aber das kann man schwer f?r alle zug?nglich machen.
Ich versuche im Rahmen des mir m?glich die Fehler auszumerzen um meine Seite mit 17300 Fotos weiter betreiben zu k?nnen.

Also erst nochmal enrsthaft dar?ber nachdenken, ob dies hier wirklich die richtige L?sung f?r euch ist.
64
Installation, Update & Configuration / Re: 1.9 Installation bricht ab
« Last post by tspitaler on October 25, 2022, 03:21:19 PM »
Hallo Candy,
habe genau dasselbe Problem.
Betreibe meinen Webserver bei DREAMHOST auf PHP 8.0 FastCGI.
Habe auch andere Einstellungen probiert- PHP 7.4 und auch mit 4images 1.8.
Verhalten ist immer das gleiche.
Hast du eine L?sung gefunden ?
Danke
Lg Tom
65
Bug Fixes & Patches / Re: PHP 8 Fix for V1.9
« Last post by Bugfixed on October 02, 2022, 03:08:55 PM »
Thank you.

Hello there. There are 2 security vulnerabilities here, I wonder if the developers can release a patch for it? Thanks in advance, it's urgent.
https://packetstormsecurity.com/files/163818/4images-1.8-SQL-Injection.html
https://packetstormsecurity.com/files/162946/4Images-1.8-Cross-Site-Scripting.html

Versions 1.8 and 1.9 seem to be affected.
66
Bug Fixes & Patches / Re: PHP 8 Fix for V1.9
« Last post by Ricsca on September 29, 2022, 08:14:35 PM »
Thanks
67
Bug Fixes & Patches / PHP 8 Fix for V1.9
« Last post by kp on September 01, 2022, 11:51:47 PM »
Found a PHP8 bug in this version.
If I use the function "check for new images" (German: Neue Bilder checken) and there are new images in the chosen category (which I've uploaded upfront via FTP) you will see nothing (because there is a not displayed error).

A fix you can find here: https://www.4homepages.de/forum/index.php?topic=33113.new#new
68
Feedback & Suggestions / Re: 4images 1.9 - Feedback
« Last post by kp on September 01, 2022, 11:44:32 PM »
Found a PHP8 bug in this version.
If I use the function "check for new images" (German: Neue Bilder checken) and there are new images in the chosen category (which I've uploaded upfront via FTP) you will see nothing (because there is a not displayed error).

A fix you can find here: https://www.4homepages.de/forum/index.php?topic=33113.new#new
69
News & Announcements / Re: 4images 1.9
« Last post by kp on September 01, 2022, 11:41:38 PM »
Found a PHP8 bug in this version.
If I use the function "check for new images" (German: Neue Bilder checken) and there are new images in the chosen category (which I've uploaded upfront via FTP) you will see nothing (because there is a not displayed error).
The problem is in the file admin\checkimages.php at line 836.
Here you have to change
if (!@in_array($image_list_all[$key][$i], $image_list_sql[$key]))
to
if (($result->num_rows == 0) or (!@in_array($image_list_all[$key][$i], $image_list_sql[$key]))) 

If you aren't experienced enough to change this, you can load my attached fixed file and replace it at your webspace.
Would be cool if the 4images guys could add this fix to there 1.9(.1) package.

70
Danke!
Pages: 1 ... 3 4 5 6 [7] 8 9 10