01:42:25 btracht1210: sounds like there are more issues on the web server---is it apache or nginx or what? If you can look at the logs for it you may find a clue. 15:27:50 lvlinux: i do have access to logs on the original destination web server 15:28:19 the web server logs show the PUT attempt, no error. But kazoo server log shows 405 error The requested method PUT is not allowed for the URL 15:29:25 *** apache 2.4.6 15:35:17 The other web server which does not return any errors to kazoo, yet does not write the file, I do not have access to log files 15:44:08 btracht1210: Are you able to manually PUT a file on the remote server using curl with the same credentials/path/settings and such that you provided to Kazoo? 15:55:30 returns the same 405 method not allowed 16:54:16 btracht1210: just in case, lvlinux meant for you to try to upload a file to the storage server directly, not through Kazoo. If you are doing it and still getting the 405, it means the storage server is either not properly handling the request or it actually does not expect files to be uploaded using PUT method. 17:08:18 BadRequest: I am using postman to upload to web servers for testing 17:09:41 i was using https with URL and getting the 405. using http i get no error (in postman) but no success either and no file written on server 17:10:23 btracht1210: OK, so Kazoo is not the problem here then. 17:11:36 apparently not. sorry about that 17:11:40 I suspect you have two issues going on: 1. the dest web server has a different HTTPS config than for HTTP, and 2. it isn't receiving the file. 17:11:55 So the first thing I'd do is work on number 2, to get it to actually write the file. 17:12:15 Do you have mod_dav installed? 17:14:19 I don't use Apache (primarily I use Nginx) so I'm not expert on it, but this guide tells you how to setup a WebDAV server with Apache (which is what's needed to allow PUT of files with straight apache): https://www.filestash.app/2022/03/04/apache-webdav/ 17:15:10 After you have it accepting the files over HTTP (with Postman) then work on your SSL vhost and get it working for it. Then Kazoo uploading files to it should work fine. :) 17:15:35 mod_dav is loaded 17:15:43 i'll check the article. thanks