PHP version
-
@humptydumpty do you have a way to reproduce the filemanager getting stuck? This should ideally get fixed then.
-
@nebulon I just reupload the files and it goes through the second time. I don't upload often but I'll give it a shot and report back. It might be a Firefox only issue; ublock origin and privacy settings cause all sorts of weird things that I've learned to ignore which is why I haven't reported this.. officially that is
Here's some more details of what happens though. Say I'm uploading a WP theme through the file manager. The loading bar would get to 40% and then stop. I'll leave it running for a while with no change there. I'm not sure if it's a visual bug or the files aren't actually uploaded but I just refresh the page, drop the files for upload again and it works fine the second time. This has happened more than once (iirc it happens on every upload but like I said, I don't upload often).
-
@humptydumpty maybe you could open the webinspector of the browser in that tab an check if the console shows any errors. The console output is always shown even if the inspector is only opened later.
-
@nebulon Noted! I uploaded a WP plugin twice (1339 files each run) and it worked without any issues. However, the permissions are set to ROOT unlike the other plugins which are www-data. Changing the file ownership to www-data worked fine so all's good! Is there a technical reason why it defaults to root?
-
@humptydumpty because you uploaded it as root (over the web-ui I guess). Open the apps console and upload the file there. Use
chown -R www-data:www-data /directory/path
to take ownership or use www-data as executing console user in the first place by usingsudo su www-data
-
@humptydumpty did you upload a zip/tar and used the extract feature or just dropped the folder into the filemanager?
-
@humptydumpty @robi was right. All files had root as owner