Quote:
Originally Posted by rxlord
if go on another hosting then how do i find out how much disk quota i have.
is there any script for it
|
The easiest way would be to connect to your FTP using some FTP client like Filezilla. Should there be a quota in place it usually shows up as part of the login message. For example:
PHP Code:
Status: Resolving address of badkarma.uphero.com
Status: Connecting to 31.170.162.4:21...
Status: Connection established, waiting for welcome message...
Response: 220---------- Welcome to Pure-FTPd [privsep] ----------
Response: 220-You are user number 27 of 500 allowed.
Response: 220-Local time is now 13:32. Server port: 21.
Response: 220-This is a private system - No anonymous login
Response: 220 You will be disconnected after 3 minutes of inactivity.
Command: USER ********
Response: 331 User ******** OK. Password required
Command: PASS ***********
Response: 230-OK. Current restricted directory is /
Response: 230-1288 files used (12%) - authorized: 10000 files
Response: 230 6018 Kbytes used (0%) - authorized: 1536000 Kb
Status: Connected
Status: Retrieving directory listing...
Command: PWD
Response: 257 "/" is your current location
Command: TYPE I
Response: 200 TYPE is now 8-bit binary
Command: PASV
Response: 227 Entering Passive Mode (31,170,162,4,79,40)
Command: MLSD
Response: 150 Accepted data connection
Response: 226-Options: -a -l
Response: 226 5 matches total
Status: Directory listing successful
The lines you should look for are
PHP Code:
Response: 230-1288 files used (12%) - authorized: 10000 files
Response: 230 6018 Kbytes used (0%) - authorized: 1536000 Kb