Koozali.org: home of the SME Server

webshare file limits ?

Offline Agent86

  • ****
  • 592
  • +0/-0
    • http://www.iclbiz.com
User quotas
« Reply #15 on: January 26, 2007, 02:22:53 PM »
Hi and thanks for the info

I currently have all quotas set to (0) which should mean no limits from what I understand, or should mean disabled from what I can tell.

I hope I am understanding this text within the server-manager ?

If I should put the users  quota set to something other then (0) please advise on this subject.

I did mess around with those setting in an attempt to fix the problem and then eventually set back to (0) so I'm hoping that is correct ?

Thanks

Offline rkscscc

  • **
  • 44
  • +0/-0
    • RKS Computer Solutions
webshare file limits ?
« Reply #16 on: January 26, 2007, 02:27:15 PM »
Your correct, setting the user quota to (0) means the user can use as much space as is available on your server...

OK, so we ruled that out, hows it coming with the TimeOut trials?

boss_hog

webshare file limits ?
« Reply #17 on: January 26, 2007, 06:03:12 PM »
Hi yall,
I apologize that this post can't answer or solve the OP's trouble,
but I wanted to share the results of my testing.

1) Fresh install of SME 7.1, yum updated, set-up as server only.
2) Install Webshare contrib (plus a bunch of other contribs I am testing).
3) Create Webshare UpDown share,
4) Create Webshare user and p/w.

Start Testing:
*note: all tests were run from Opera browser*
1) Log on to share,
2) Attempt to upload 8.5mb file--> OK
3) Attempt to upload 44mb file--> FAILS almost immediately with
Post Size error (this is to be expected)
4) Putty into server and run the following commands:
config setprop php PostMaxSize 50M
expand-template /etc/php.ini
/etc/rc7.d/S86httpd-e-smith restart
5) Attempt again to upload 44mb file---> Fails after about 8 minutes,
but no errors
6) At the Putty session run the following commands:
config setprop php UploadMaxFilesize 100M
expand-template /etc/php.ini
/etc/rc7.d/S86httpd-e-smith restart
7) Attempt again to upload 45mb file--> OK

Take note here that it took about 15 minutes to upload this file
and I have NOT changed the stock timeout in php.ini, which is 30.

I hope this helps in some way.
Joe

Offline Agent86

  • ****
  • 592
  • +0/-0
    • http://www.iclbiz.com
Webshare file size fixup
« Reply #18 on: February 03, 2007, 02:51:47 AM »
Good news thanks

Offline dmay

  • *
  • 450
  • +0/-0
    • http://myezserver.com
webshare file limits ?
« Reply #19 on: February 07, 2007, 09:11:17 PM »
Four settings effect all php program file upload capabilities:

    MaxExecutionTime
    MemoryLimit
    PostMaxSize
    UploadMaxFilesize

As an example, below are settings that permit up to 50MB file uploads:

[root@mail ~]# config show php
php=service
    AllowUrlFopen=Off
    MaxExecutionTime=3600
    MemoryLimit=50M
    PostMaxSize=50M
    UploadMaxFilesize=50M
    status=enabled

Darrell