Unyson icon indicating copy to clipboard operation
Unyson copied to clipboard

Trying to access array offset on value of type null

Open Ksetrar opened this issue 4 years ago • 2 comments

[03-May-2021 13:14:47 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/mangaisc/public_html/wp-content/plugins/unyson/framework/helpers/class-fw-resize.php on line 35
[03-May-2021 13:14:47 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/mangaisc/public_html/wp-content/plugins/unyson/framework/helpers/class-fw-resize.php on line 35
[03-May-2021 13:14:47 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/mangaisc/public_html/wp-content/plugins/unyson/framework/helpers/class-fw-resize.php on line 35
[03-May-2021 13:14:47 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/mangaisc/public_html/wp-content/plugins/unyson/framework/helpers/class-fw-resize.php on line 35
[03-May-2021 13:14:47 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/mangaisc/public_html/wp-content/plugins/unyson/framework/helpers/class-fw-resize.php on line 35
[03-May-2021 13:14:47 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/mangaisc/public_html/wp-content/plugins/unyson/framework/helpers/class-fw-resize.php on line 35
[03-May-2021 13:14:47 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/mangaisc/public_html/wp-content/plugins/unyson/framework/helpers/class-fw-resize.php on line 35
[03-May-2021 13:14:47 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/mangaisc/public_html/wp-content/plugins/unyson/framework/helpers/class-fw-resize.php on line 35
[03-May-2021 13:14:47 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/mangaisc/public_html/wp-content/plugins/unyson/framework/helpers/class-fw-resize.php on line 35
[03-May-2021 13:14:47 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/mangaisc/public_html/wp-content/plugins/unyson/framework/helpers/class-fw-resize.php on line 35
[03-May-2021 13:14:47 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/mangaisc/public_html/wp-content/plugins/unyson/framework/helpers/class-fw-resize.php on line 35
[03-May-2021 13:14:47 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/mangaisc/public_html/wp-content/plugins/unyson/framework/helpers/class-fw-resize.php on line 35
[03-May-2021 13:14:47 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/mangaisc/public_html/wp-content/plugins/unyson/framework/helpers/class-fw-resize.php on line 35
[03-May-2021 13:14:47 UTC] PHP Notice:  Trying to access array offset on value of type null in /home/mangaisc/public_html/wp-content/plugins/unyson/framework/helpers/class-fw-resize.php on line 35

I am getting this error, I have disable all plugins but it is till same Though it is not causing any onsite issue on my website but the debug.log is getting scams

Ksetrar avatar May 03 '21 13:05 Ksetrar

Definitely got the same error under FreeBSD 13 + PHP 8.0.11;

[error] 8454#105758: *156722 FastCGI sent in stderr: "PHP message: PHP Warning: Trying to access array offset on value of type null in /usr/local/www/wp-content/plugins/unyson/framework/helpers/class-fw-resize.php on line 35" while reading upstream.

class-fw-resize.php, line 35 reads as : $path = get_attached_file( $row['ID'] );

Any update on this?

ozgurkazancci avatar Oct 03 '21 14:10 ozgurkazancci

Update (by myself - lol);

It seems the problem is solved after I modified that line towards; $path = get_attached_file( $row['ID'] ?? []);

ozgurkazancci avatar Oct 03 '21 15:10 ozgurkazancci