I wasn't even aware I wrote the binary for 7.3; maybe I can correct that
Extiverse helper
[deleted]
luceos Given Flarum requires 7.3 minimum, I think it makes sense that Extiverse is the same, no ?
[deleted]
- Edited
luceos 7.3 actually from recollection.... I could well be wrong though. If you're using composer 2.0 then you'll get a message stating you need 7.3 minimum
HD3D as 7.2 is already end of life, it might as well be a good time to upgrade anyhow:
I get:
PS C:\xampp\htdocs\flarum_extiverse_helper> php extiverse upgrade --path C:\xampp\htdocs\flarum
In Local.php line 135:
file_put_contents(C:\xampp\htdocs\flarum\composer.json.back-2020-12-24T18:05:16+00:00):
failed to open stream: No such file or directory
I think the filename composer.json.back-2020-12-24T18:05:16+00:00
that it tries to create is not a valid windows filename because it contains :
Hi,
is it better to upgrade to beta15 with php extiverse upgrade or manually?
Thank you.
I've been encountering this error when attempting to use the upgrade feature (from beta13).
Updated composer.json with wildcard extension constraints.
In Process.php line 1201:
The process "/usr/sbin/composer update --prefer-dist --no-dev -a" exceeded the timeout of 60 seconds.
I expect it's a server-related setting that needs tweaked, but unsure what setting might need adjusted. I thought maybe max_execution_time
, but running php -i
shows that it is set to 0
. Any thoughts on how I can get past this? TIA!
- Edited
UaMV ah sorry, I was going based off memory as I had run into the same issue with composer when I upgraded the other week. the above was one of my tests that did not work. I believe this is the thing that did the trick for me, add "process-timeout": 0
in your composer.json under the config block.
"config": {
.....
"process-timeout": 0
},