You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the WebGUI, when you create a folder and in it you create a test file, it works, but there is a PHP error in the apache logs. The filepath is missing a slash.
When you make the file in the users root dir, it works fine.
Version: 4.5.2 (or actually, latest version of stable45 branch as of nov 14 16:00 +0100).
Steps to reproduce:
create user1
login with user1
create folder "put it here" and enter it.
create text file "I make errors.txt"
[Wed Nov 14 15:56:40 2012] [error] [client 89.188.25.162] PHP Warning: filesize(): stat failed for /var/www/owncloud-stable45/data/allesdeler/filesput it here/I make errors.txt in /var/www/owncloud-stable45/lib/filestorage/local.php on line 45, referer: http://storagetest.curaxl.nl/?app=files&dir=//put%20it%20here
[Wed Nov 14 15:56:40 2012] [error] [client 89.188.25.162] PHP Warning: copy(/var/www/owncloud-stable45/data/allesdeler/filesput it here/I make errors.txt): failed to open stream: No such file or directory in /var/www/owncloud-stable45/lib/filestorage/local.php on line 109, referer: http://storagetest.curaxl.nl/?app=files&dir=//put%20it%20here
Because a copy action fails, something breaks, but I can't see what.
It's also clear what goes wrong: a slash is missing in the path:
/var/www/owncloud-stable45/data/allesdeler/filesput it here/I make errors.txt
should be
/var/www/owncloud-stable45/data/allesdeler/files/put it here/I make errors.txt
The text was updated successfully, but these errors were encountered:
Using the WebGUI, when you create a folder and in it you create a test file, it works, but there is a PHP error in the apache logs. The filepath is missing a slash.
When you make the file in the users root dir, it works fine.
Version: 4.5.2 (or actually, latest version of stable45 branch as of nov 14 16:00 +0100).
Steps to reproduce:
[Wed Nov 14 15:56:40 2012] [error] [client 89.188.25.162] PHP Warning: filesize(): stat failed for /var/www/owncloud-stable45/data/allesdeler/filesput it here/I make errors.txt in /var/www/owncloud-stable45/lib/filestorage/local.php on line 45, referer: http://storagetest.curaxl.nl/?app=files&dir=//put%20it%20here
[Wed Nov 14 15:56:40 2012] [error] [client 89.188.25.162] PHP Warning: copy(/var/www/owncloud-stable45/data/allesdeler/filesput it here/I make errors.txt): failed to open stream: No such file or directory in /var/www/owncloud-stable45/lib/filestorage/local.php on line 109, referer: http://storagetest.curaxl.nl/?app=files&dir=//put%20it%20here
Because a copy action fails, something breaks, but I can't see what.
It's also clear what goes wrong: a slash is missing in the path:
should be
The text was updated successfully, but these errors were encountered: