XFileSharing Pro - Personal user storage space limit

Message
Author
adiga
Posts: 177
Joined: Jul 23, 2009 2:27 am

Personal user storage space limit

#1 Postby adiga » Mar 02, 2010 10:02 am

Personal user storage space limit is not working wen edit from admin setting ?

mrperl
Posts: 65
Joined: Mar 06, 2010 11:40 am

Re: Personal user storage space limit

#2 Postby mrperl » Mar 09, 2010 1:22 am

What do you mean exactly by "not working"?

adiga
Posts: 177
Joined: Jul 23, 2009 2:27 am

#3 Postby adiga » Mar 09, 2010 10:38 am

Try upgrade space to a member a 50 GB space, for example
Space remains as it is not upgrade on member account

snc
Posts: 43
Joined: Oct 14, 2010 12:51 pm

#4 Postby snc » Dec 05, 2010 5:58 pm

I have exactly the same problem. Is there any solution?

User avatar
PilgrimX182
Posts: 2186
Joined: Mar 22, 2006 1:39 pm

#5 Postby PilgrimX182 » Dec 08, 2010 10:02 am

It's only displaying wrong in My Account. Logic works fine anyway.
Fixed index.cgi in script ZIP, you can get the latest version and update.

Or you can manually fix index.cgi:
replace

Code: Select all

   my $disk_space = sprintf("%.0f GB",$disk_space/1024);
with

Code: Select all

   my $disk_space = $user->{usr_disk_space} || $c->{disk_space};
   $disk_space = sprintf("%.0f GB",$disk_space/1024);