Re: mod_dav question

2022-01-11 Thread Yamadaえりな
かしこまりました Thank you Jan and Jack I will try to implement that. Regards Yamada On Tue, Jan 11, 2022 at 4:10 PM Jacques Deguest wrote: > Yamada-san, > > You would need to set up a perl response handler like: > > SetHandler modperl > PerlSetupEnv On > PerlResponseHandler +Your::WebDav

Re: mod_dav question

2022-01-11 Thread Jacques Deguest
Yamada-san, You would need to set up a perl response handler like:     SetHandler modperl     PerlSetupEnv On     PerlResponseHandler +Your::WebDav::Module and in your module Your::WebDav::Module you would write something like: BEGIN {     use strict;     use warnings;     use Apache2::Reques

Re: mod_dav question

2022-01-11 Thread Jan Kasprzak
Yamada-san, Yamadaえりな wrote: : We are using mod_dav with apache2.4 to manage files via webdav protocol. : We want to limit file uploading based on the user's total storage. : For instance, if a user has his storage size reached to the max limit, he : can't upload files anymore. : Do you ha

mod_dav question

2022-01-10 Thread Yamadaえりな
Hello list, We are using mod_dav with apache2.4 to manage files via webdav protocol. We want to limit file uploading based on the user's total storage. For instance, if a user has his storage size reached to the max limit, he can't upload files anymore. Do you have any suggestions on how I can imp