Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
100 views

I am upgrading Moodle from 5.0.1 to 5.1.3+ (current latest version). This upgrade includes the Code directories restructure where the we must now (ideally) point DocumentRoot to the public subfolder ...
Chris Walsh's user avatar
  • 3,533
Advice
2 votes
3 replies
199 views

We recently set up a new server on RunCloud with PHP 8.4.16 (NTS) + Zend OPcache v8.4.16, JIT disabled. We're running a Yii2 application. Since the setup, we're experiencing random TypeError and ...
Arthur's user avatar
  • 1
4 votes
3 answers
423 views

I am in the process of upgrading our code from php 8.2 to 8.4 I noticed we are getting some test failures because of round() returning different values than expected. Ultimately the problem could be ...
yeaitsme's user avatar
  • 129
0 votes
1 answer
116 views

I have tables Properties and Features with many-to-many relationship PropertiesFeatures (which holds their IDs): When I select multiple features (feature IDs) as an array, I need all properties which ...
linuxoid's user avatar
  • 1,447
3 votes
1 answer
1k views

After upgrading my project from PHP 8.3 to PHP 8.4, I started getting the following error: Maximum call stack size of 8339456 bytes (zend.max_allowed_stack_size - zend.reserved_stack_size) reached. ...
songcraft's user avatar
  • 511
0 votes
1 answer
407 views

Ubuntu 25.04 (Plucky). Need to install PHP8.4. The only way to do this - use PPA by Ondrej Sury which supports just up to Noble release of Ubuntu (24.04). No problem to change sources in latesy ...
vbulash's user avatar
  • 393
0 votes
1 answer
291 views

I have had several times a class (parent) that can generate a "virtual field" based on "values" ​​contained in child classes. The peculiarity is that these values ​​are immutable (...
Mirko Pagliai's user avatar
-1 votes
1 answer
24k views

i googled this error in many ways but only could find irrelevant messages i am migrating a cakephp 4.2 PHP application to cakephp 5 and only the 'default' database is usable in my app_local.php i have ...
igor57480's user avatar
3 votes
1 answer
3k views

In my Dockerfile for php8.4-fpm i am installing IMAP package with the following commands: FROM php:8.4-fpm [...] RUN docker-php-ext-configure imap --with-kerberos --with-imap-ssl && \ ...
Igor's user avatar
  • 1,227
0 votes
0 answers
82 views

On my Windows 10 machine, I run some PHP scripts that call API functions on a game, Torn. Torn allows and encourages the call of such API. Since a few days, all my command line scripts stopped working ...
carlo.borreo's user avatar
  • 1,365
1 vote
1 answer
248 views

I noticed something strange when using the combination property hooks with the magic __sleep() method. I have no idea whether I incorrectly use hooks or that this is a bug in PHP. See the following ...
Eran Machiels's user avatar
1 vote
1 answer
521 views

According to https://www.php.net/manual/en/dom-parentnode.queryselector.php Dom\ParentNode::querySelector is supported in PHP >= 8.4.0. Pursuant to that I should think the following code would work:...
neubert's user avatar
  • 17k
0 votes
1 answer
795 views

Environment: PHP: 8.4 Laravel: 11.35.1 Sail: 1.39.1 PHPUnit: 10.5.39 macOS: 15.1.1 (24B91) We are upgrading from PHP 8.2 to PHP 8.4. The only change made so far has been upgrading PHP within Laravel ...
alexmcfarlane's user avatar
3 votes
2 answers
12k views

I've upgraded php from 8.3 to PHP8.4.1_1 (via Homebrew on mac OS X intel), then I started to have a lot of warnings when using PECL/PEAR, while I was using PECL to install GRPC/PROTOBUF/MONGODB ...
Thomas's user avatar
  • 1,413
3 votes
1 answer
2k views

I was using mysqli_ping() to check if the mysqli connection was up. In the latest PHP 8.4 version, this function was deprecated and will be removed in the future. Why is this function deprecated, what ...
Dharman's user avatar
  • 34k