From nobody Mon May 6 07:49:26 2024 X-Original-To: ports@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4VXtpn6Km7z5JYsM for ; Mon, 06 May 2024 07:49:37 +0000 (UTC) (envelope-from SRS0=9IBj=MJ=quip.cz=000.fbsd@elsa.codelab.cz) Received: from elsa.codelab.cz (elsa.codelab.cz [94.124.105.4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4VXtpn3tWGz4npp for ; Mon, 6 May 2024 07:49:37 +0000 (UTC) (envelope-from SRS0=9IBj=MJ=quip.cz=000.fbsd@elsa.codelab.cz) Authentication-Results: mx1.freebsd.org; none Received: from elsa.codelab.cz (localhost [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id D50F3D7890; Mon, 6 May 2024 09:49:28 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=quip.cz; s=private; t=1714981768; bh=FI/24c+kC5lN0wWjr0HesoHjPSwuuU05wQSjn8YJSUY=; h=Date:Subject:To:References:From:In-Reply-To; b=B+s6E5ISwPgF2kqj9sJvQQ5pVAzYkIHMZLaWUBLOLAB98PEuIDdTWFTjTHAS5P7S0 UR8fqUnTJHhohhl8ATXmKwORH6cRgrE5fc1Txcjbw3UTyXxYH+xsQxfIMOUbmVo8qs 3NENgTJtmd3+P7FUA5UWaJVJqfNQjbYlL7fCmc+g= Received: from [192.168.145.49] (ip-89-177-27-225.bb.vodafone.cz [89.177.27.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTPSA id CC025D788F; Mon, 6 May 2024 09:49:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=quip.cz; s=private; t=1714981767; bh=FI/24c+kC5lN0wWjr0HesoHjPSwuuU05wQSjn8YJSUY=; h=Date:Subject:To:References:From:In-Reply-To; b=ez+ldm52OS2gnJGUQKNZqsroQwhcI036/YgF7d8MD4nA50sE75j/ntyxaEZYbhmvk IUrcQm9q9EoLPJWCTpPvpsSNW64HGAM85KeWW5tUGq11kH8k9F4AubiTg9RMmTsnzd QSXL+aIap8mF3oVZj5Fk2i92UQj3K9wIjjcLSepM= Message-ID: Date: Mon, 6 May 2024 09:49:26 +0200 List-Id: Porting software to FreeBSD List-Archive: https://lists.freebsd.org/archives/freebsd-ports List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-ports@freebsd.org Sender: owner-freebsd-ports@FreeBSD.org MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: rainloop 1.17.0 and php82 issue To: Mike , ports@freebsd.org References: <6d5f5025-8555-4fe2-a4dd-f5b30cda25b5@mgm51.com> Content-Language: cs-Cestina From: Miroslav Lachman <000.fbsd@quip.cz> In-Reply-To: <6d5f5025-8555-4fe2-a4dd-f5b30cda25b5@mgm51.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:42000, ipnet:94.124.104.0/21, country:CZ] X-Rspamd-Queue-Id: 4VXtpn3tWGz4npp On 06/05/2024 01:39, Mike wrote: > I currently have rainloop 1.17.0 running quite nicely with php81 and > php81-extensions. > > However, when I change the 81 to 82 above, I am greeted with the > following error message when I try to use rainloop: > > > Deprecated: Creation of dynamic property RainLoop\Actions::$bIsAjax is > deprecated in > /var/www/sites/util02.mgm51.net/data/MyMail/rainloop/v/1.17.0/app/libraries/RainLoop/Actions.php > on line 164 > > Deprecated: Creation of dynamic property > RainLoop\Plugins\Manager::$aAjaxFilters is deprecated in > /var/www/sites/util02.mgm51.net/data/MyMail/rainloop/v/1.17.0/app/libraries/RainLoop/Plugins/Manager.php > on line 82 > > > Spending some quality time in a search engine, this is a new "feature" > of php82. > > Will the rainloop be adjusted appropriately? If you really want to use rainloop with PHP 8.2, you can change settings of error_reporting in php.ini. Something like E_ALL & ~E_DEPRECATED & ~E_STRICT should silence "deprecated" messages. Beware that this deprecated feature will be removed in PHP 8.3 and rainloop will not work with PHP 8.3 at all. Kind regards Miroslav Lachman