| View previous topic :: View next topic |
| Author |
Message |
adiga
Joined: 23 Jul 2009 Posts: 117
|
Posted: Mar 02, 2010 10:02 am Post subject: Personal user storage space limit |
|
|
| Personal user storage space limit is not working wen edit from admin setting ? |
|
| Back to top |
|
 |
mrperl
Joined: 06 Mar 2010 Posts: 65
|
Posted: Mar 09, 2010 1:22 am Post subject: Re: Personal user storage space limit |
|
|
| What do you mean exactly by "not working"? |
|
| Back to top |
|
 |
adiga
Joined: 23 Jul 2009 Posts: 117
|
Posted: Mar 09, 2010 10:38 am Post subject: |
|
|
Try upgrade space to a member a 50 GB space, for example
Space remains as it is not upgrade on member account |
|
| Back to top |
|
 |
snc
Joined: 14 Oct 2010 Posts: 43
|
Posted: Dec 05, 2010 5:58 pm Post subject: |
|
|
| I have exactly the same problem. Is there any solution? |
|
| Back to top |
|
 |
PilgrimX182

Joined: 22 Mar 2006 Posts: 2109 Location: UFO Lab
|
Posted: Dec 08, 2010 10:02 am Post subject: |
|
|
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: | | my $disk_space = sprintf("%.0f GB",$disk_space/1024); |
with
| Code: | my $disk_space = $user->{usr_disk_space} || $c->{disk_space};
$disk_space = sprintf("%.0f GB",$disk_space/1024); |
|
|
| Back to top |
|
 |
|