BFD Calendar Posted July 27, 2018 Share Posted July 27, 2018 Indeed Vincent, I contacted OVH about it and it turned out that 'stable' instead of 'legacy' solved the problem. I hardly use the .ovhconfig anymore since OVH opened up more settings in the client interface. Link to comment Share on other sites More sharing options...
matjazp Posted November 2, 2018 Share Posted November 2, 2018 I upgraded PW to the latest dev using the upgrade module from Ryan (I normally upgrade by hand) and got the message that Upgrade files are already present. Please remove them before continuing. Clicking on Remove button didn't help, had to manually delete /site/assets/cache/ProcessWireUpgrade folder. I'm on windows, I think this is important. Anyone else? 2 Link to comment Share on other sites More sharing options...
Rudy Posted November 3, 2018 Share Posted November 3, 2018 3 hours ago, matjazp said: I upgraded PW to the latest dev using the upgrade module from Ryan (I normally upgrade by hand) and got the message that Upgrade files are already present. Please remove them before continuing. Clicking on Remove button didn't help, had to manually delete /site/assets/cache/ProcessWireUpgrade folder. I'm on windows, I think this is important. Anyone else? I encountered the same issue after upgrading to 3.0.118. 1 Link to comment Share on other sites More sharing options...
gornycreative Posted November 17, 2018 Share Posted November 17, 2018 Deleting the dev.zip file seemed to work for me. 1 Link to comment Share on other sites More sharing options...
Peejay Posted November 19, 2018 Share Posted November 19, 2018 On 11/2/2018 at 9:43 PM, matjazp said: I upgraded PW to the latest dev using the upgrade module from Ryan (I normally upgrade by hand) and got the message that Upgrade files are already present. Please remove them before continuing. Clicking on Remove button didn't help, had to manually delete /site/assets/cache/ProcessWireUpgrade folder. I'm on windows, I think this is important. Anyone else? Had the same issue, deleting the cache worked out for me. 1 Link to comment Share on other sites More sharing options...
adrian Posted November 23, 2018 Share Posted November 23, 2018 @ryan - this issue still exists on 3.0.119 - any chance of a fix please? 2 Link to comment Share on other sites More sharing options...
Gadgetto Posted November 24, 2018 Share Posted November 24, 2018 Same problem here! Removing the content of the /site/assets/cache/ProcessWireUpgrade folder wasn't enough. Needed to remove this folder completely. 2 Link to comment Share on other sites More sharing options...
Gadgetto Posted November 24, 2018 Share Posted November 24, 2018 1 hour ago, Gadgetto said: Same problem here! Removing the content of the /site/assets/cache/ProcessWireUpgrade folder wasn't enough. Needed to remove this folder completely. Forgot to say, problem happens on version 3.0.118. After removing this folder and running upgrade to 3.0.119 I couldn’t reproduce the issue. 1 Link to comment Share on other sites More sharing options...
cb2004 Posted November 25, 2018 Share Posted November 25, 2018 Same issue. Latest dev doesn't help. Link to comment Share on other sites More sharing options...
matjazp Posted November 26, 2018 Share Posted November 26, 2018 The problem is in WireFileTools.php in rmdir() method in foreach loop. The $path coming into rmdir() contains ending slash, and $pathame (actual directory name) eventually contains two slashes , that makes allowPath() method to throw an WireException. The possible solution is simple: $path = rtrim($path, "/"); Link to comment Share on other sites More sharing options...
gingebaker Posted November 26, 2018 Share Posted November 26, 2018 Hi There is also an open issue for this problem on github with some possible fixes. https://github.com/processwire/processwire-issues/issues/704 Link to comment Share on other sites More sharing options...
matjazp Posted November 26, 2018 Share Posted November 26, 2018 (edited) 1 hour ago, gingebaker said: There is also an open issue for this problem on github with some possible fixes. https://github.com/processwire/processwire-issues/issues/704 I know, I opened it ? Ryan tried to fix this issue, but introduced another one. Try: $files->mkdir($config->paths->cache . "test/test/", true); $files->rmdir($config->paths->cache . "test/", true, array('throw' => true)); By default throw is false, I set it to true just for you/others to see the results. The point is: rmdir() fails to remove a directory that contains subdirectories due to a bug. Edit: ? Edited November 26, 2018 by matjazp Link to comment Share on other sites More sharing options...
pmichaelis Posted August 23, 2019 Share Posted August 23, 2019 Hey, I keep getting errors when I try to visit the upgrades admin page. I thought it was a memory limit problem and increased the memory, but I still get the errors. /processwire/setup/upgrades/ Allowed memory size of 134217728 bytes exhausted (tried to allocate 4096 bytes) (Zeile 1266 in /var/www/htdocs/wire/core/WireHttp.php) Any hints? Never had problems with the upgrade module. Link to comment Share on other sites More sharing options...
eydun Posted August 23, 2019 Share Posted August 23, 2019 Quote Any hints? Never had problems with the upgrade module. It can possibly be related to some faulty configuration in the .htaccess file. Link to comment Share on other sites More sharing options...
pmichaelis Posted August 26, 2019 Share Posted August 26, 2019 On 8/23/2019 at 5:29 PM, eydun said: It can possibly be related to some faulty configuration in the .htaccess file. Thanks. I'll give it a try Link to comment Share on other sites More sharing options...
LostKobrakai Posted November 27, 2020 Share Posted November 27, 2020 On 8/23/2019 at 5:29 PM, eydun said: It can possibly be related to some faulty configuration in the .htaccess file. What exactly would I need to be looking for? I've the problem of the memory leak as well. Link to comment Share on other sites More sharing options...
eydun Posted November 28, 2020 Share Posted November 28, 2020 Oh my, I am not sure I can remember that ? Do you also get memory leak with the upgrades module, or some other module? Link to comment Share on other sites More sharing options...
LostKobrakai Posted November 30, 2020 Share Posted November 30, 2020 On 11/28/2020 at 8:20 PM, eydun said: Do you also get memory leak with the upgrades module Exactly that; when visiting the admin page, which should show the updates. Not sure where this one is coming from. Link to comment Share on other sites More sharing options...
DV-JF Posted January 27 Share Posted January 27 Hey @ryan, hey all, I've to update some websites in order to make them work with PHP 8.1. While doing so I've noticed, that ProcessWire is not on all sites in the listed updates. I'd expected to be on top of the list like this: But on some websites ProcessWire doesn't appear and I see no logic behind 🙄 Any hints or an explanation? Cheers 👋 Link to comment Share on other sites More sharing options...
Markus Thomas Posted March 23 Share Posted March 23 @DV-JF I also had the same behavior that no core updates were displayed. This phenomenon was only with Processwire installations that were already somewhat older. I then noticed that the ready.php in the site folder were different for these old installations. Replacing them with a new ready.php resulted in the coreupdates being displayed again. But be careful, if you already have a modified ready.php, you have to make these changes in the new file too. Link to comment Share on other sites More sharing options...
cb2004 Posted Tuesday at 06:06 PM Share Posted Tuesday at 06:06 PM @Markus Thomas I am not sure this is the case as ready.php doesn't need to exist and it could be coincidence maybe? I think it is down to rate limiting for the Github API so sites that are on shared hosting may not display the results at one point, but they do the next, that was always my findings. Link to comment Share on other sites More sharing options...
Markus Thomas Posted 3 hours ago Share Posted 3 hours ago @cb2004 Maybe it was a coincidence in my case, however, it worked exactly like that for me in 3 installations. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now