1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

not all files showing in ftp

Discussion in 'Site & Server Administration' started by zodiac, Jan 3, 2007.

  1. #1
    i'm working on a site that has ~2000 images in one folder.
    all the images are on the server,but in ftp i see a though to the start of s and Thumbs.db.
    is there some limitation that i'm not aware of.:confused:
    tried other ftp clients.
    server:shared hostgator
     
    zodiac, Jan 3, 2007 IP
  2. phd

    phd Active Member

    Messages:
    496
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    60
    #2
    which ftp tool you are using now?
     
    phd, Jan 3, 2007 IP
  3. Richie_Ni

    Richie_Ni Illustrious Member

    Messages:
    10,721
    Likes Received:
    1,175
    Best Answers:
    0
    Trophy Points:
    410
    #3
    I think it would take some time to load all the files,just be patient.
     
    Richie_Ni, Jan 3, 2007 IP
  4. zodiac

    zodiac Peon

    Messages:
    2,661
    Likes Received:
    82
    Best Answers:
    0
    Trophy Points:
    0
    #4
    it's realy 2500.it shows 1998 files(1995 are .gif) in the ftp client.
    i use cuteftp.i downloaded FileZilla and smartftp and saw the same thing.
    it's not loading.it will just show upto a certain image.
    if i delete one,the next image will showup.
     
    zodiac, Jan 3, 2007 IP
  5. phd

    phd Active Member

    Messages:
    496
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    60
    #5
    phd, Jan 3, 2007 IP
  6. zodiac

    zodiac Peon

    Messages:
    2,661
    Likes Received:
    82
    Best Answers:
    0
    Trophy Points:
    0
    #6
    my cuteftp doesn't show commands(dont know where that option is :eek:) ,so looked at smartftps and it gave '226 Output truncated to 2000 matches'
     
    zodiac, Jan 3, 2007 IP
  7. phd

    phd Active Member

    Messages:
    496
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    60
    #7
    phd, Jan 3, 2007 IP
  8. zodiac

    zodiac Peon

    Messages:
    2,661
    Likes Received:
    82
    Best Answers:
    0
    Trophy Points:
    0
    #8
    i happy using a client.
    not very safe anyway.:rolleyes:
     
    zodiac, Jan 3, 2007 IP
  9. phd

    phd Active Member

    Messages:
    496
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    60
    #9
    phd, Jan 3, 2007 IP
  10. zodiac

    zodiac Peon

    Messages:
    2,661
    Likes Received:
    82
    Best Answers:
    0
    Trophy Points:
    0
    #10
    the same.i didn't think there would be anything different.
    i don't want to ask hostgator,so anybody...
     
    zodiac, Jan 4, 2007 IP
  11. dhruv37

    dhruv37 Well-Known Member

    Messages:
    3,222
    Likes Received:
    195
    Best Answers:
    0
    Trophy Points:
    165
    #11
    Many times its happend that FTP clients are not showing all the files / images when you have more number of files / images on FTP.

    If you are searching for any perticular file then find on FTP and in find it will show you file. In cuteftp you can also list (find by name) certain files / images.
     
    dhruv37, Jan 4, 2007 IP
  12. theblight

    theblight Peon

    Messages:
    246
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #12
    Ther best solution is to categorize and clean it up as the FTP clients have limits...best is to put it in a folder categorized
     
    theblight, Jan 26, 2007 IP
  13. pdsllc

    pdsllc Well-Known Member

    Messages:
    180
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    105
    #13
    The ftp config file on the server is set to show 2000 files.
    Either you or your server admin has to change it to show more.
    Mine is set to 20,000 files.
     
    pdsllc, Feb 1, 2007 IP
  14. Joobz

    Joobz Peon

    Messages:
    598
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #14
    Sorry to restart this thread after several days but I myself have just ran into this limitation with the same aforementioned host. I am uploading several thousand files per directory and am also getting the "output truncated to 2000 matches" response in FileZilla. I know I can't see the files through the FTP view but does anyone know if this will actually have any adverse affects on my site's performace? I really don't care if I can see the files via FTP as long as I know they're there and accessible by my site visitors.

    Any insight is greatly appreciated
     
    Joobz, Feb 12, 2007 IP
  15. arrowebs

    arrowebs Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #15
    I know it's way too late - but I just faced this issue now and I wrote this small php code and ran it on the browser to see the file count...

    
    <?php
    // CountFiles.php
    $d = dir("./");
    $n = 0;
    while (false !== ($entry = $d->read())) {
       if($entry != "." && $entry != "..") $n++;
    }
    $d->close();
    
    echo "<p>There are <b>$n</b> files present in the folder now...</p>";
    ?>
    
    PHP:
    Hope this helps
     
    arrowebs, Feb 18, 2009 IP
  16. tfbpa

    tfbpa The....Alive

    Messages:
    896
    Likes Received:
    35
    Best Answers:
    0
    Trophy Points:
    120
    #16
    Still helps me, so thanks!
     
    tfbpa, Dec 19, 2009 IP