forum.coppermine-gallery.net

Support => cpg1.6.x Support => cpg1.6 upgrading => Topic started by: altenae on October 05, 2021, 06:38:16 pm

Title: Help needed third website COPPERMINE to PHP 8 fails
Post by: altenae on October 05, 2021, 06:38:16 pm
Hi All,

I have migrated two websites to PHP 8.0 and changed some PHP files to be compatible with PHP 8.0
It works for  2 websites.

However on 1 website I have an issue.
As soon as I change the cage.php (remove the get_magic_quotes_gpc) the page is empty.
No errors nothing (PHP error are on)

But when logged in as admin (login.php) all works !!!!

I really hope someone is able to help me out on this one..
Title: Re: Help needed third website COPPERMINE to PHP 8 fails
Post by: altenae on October 05, 2021, 06:50:49 pm
It seems that this code in the index.php

  if (MODERATOR_MODE && in_array($aid, $USER_DATA['allowed_albums'])) {

had to be changed to

if (defined('MODERATOR_MODE') && MODERATOR_MODE && in_array($aid, $USER_DATA['allowed_albums'])) {
Title: Re: Help needed third website COPPERMINE to PHP 8 fails
Post by: ron4mac on October 05, 2021, 06:53:59 pm
link to site, please
Title: Re: Help needed third website COPPERMINE to PHP 8 fails
Post by: ron4mac on October 05, 2021, 06:57:00 pm
Pretty annoying that you are pointing our errors when you are not using the latest CPG version. That has already been corrected.
Title: Re: Help needed third website COPPERMINE to PHP 8 fails
Post by: altenae on October 05, 2021, 07:08:34 pm
Yes I know it was corrected.
For some reason the unmodified (pre PHP 8.0) code worked correctly on www.wildelife-photos.net and not on www.aviationix.nl

Sorry for the confusion.
Title: Re: Help needed third website COPPERMINE to PHP 8 fails
Post by: altenae on October 05, 2021, 07:12:12 pm
Made typo's in the URL..
Can't modify my topic it seems..

Yes I know it was corrected.
For some reason the unmodified (pre PHP 8.0) code worked correctly on www.wildlife-photos.net and not on www.aviationpix.nl

Sorry for the confusion.
Title: Re: Help needed third website COPPERMINE to PHP 8 fails
Post by: phill104 on October 05, 2021, 10:19:06 pm
So are you fixed then?
Title: Re: Help needed third website COPPERMINE to PHP 8 fails
Post by: altenae on October 06, 2021, 10:46:41 am
So are you fixed then?

Yes it is..