Can't see dependant files on server

I took over a prject from another designer and am trying to download the websites files/folders from the server using CS4's site manager.
I can see the index.htm file on the remote server and several other folders that appear either private or unrelated.
I was able to download the index.htm file.
I can tell from that where the images are and can view them if I type in the address directly into a browser address bar.
But in Site Manager (or FileZilla) I cannot see the images on the remotes server that are associated with the index.htm file.  They are in the root folder as it happens, same folder as the index.htm. Why can't I see them?
Also, as an FYI, I can upload images and see them on the server, and I can download the images I uploaded.

Copied media files to a HPFS+ (journaled) SimpleTech USB drive connected to my iMac. Files copied fine and can be accessed from the iMac with no problems.
I connect it to the TC, the drive can be seen and mounted over the network but the files do not show up. The free space corresponds to the free space left by the files I had copied--but again the files do not show up.
TC file sharing is on and is working fine as demonstrated by access to the internal drive without problem. And the USB drive shows up in the airport utility without error indication. Files copied over the network to the USB drive are accessible as expected (read/write/delete--no problem).
Any advice?
Thanks,
Mark

Similar Messages

  • Windows Server 2008r2 - Users somtimes can't see new files in folders unless a new file is created.

    Hello Folks!
    My users sometimes have a problem that user A sometimes can't see a file created or copied by user B to a directory within a share they can both access. Both are within the same group which grants them Full Access on the share, settings for permissions are
    correctly set to be applied on directories, subdirectories and files.. Confusingly, this can be fixed when user A creates some kind of file (empty .txt, for example); the "missing" files will suddenly appear.
    Windows Server 2008r2, DC
    Windows File Server 2008r2, shares and files are located here.
    ABENUM activated, needed for several folders.
    The Domain-Admin Account is able to see all the files all the time.
    Anybody got an idea what I could check?
    Thank you very much!
    Kind regards,
    Boris

    Hi,
    When you use user A access the shared folder, did you do the refresh to check the result?
    If the issue persists, please try to install this hotfix:
    http://support.microsoft.com/kb/2769790/en-us
    Regards.
    Vivian Wang

  • Can't see Stream Files in administration console !!

    I have created a new Directory called "mydir" into the
    Application Directory Of Flash Media Server.
    I copied my "mydir.flv" file into ths directory.
    But :
    Problem 1 : I can't see this file in the Stream Section of
    the Administration Console.
    Problem 2 : I can't access the adress :
    rtmp://localhot/mydir/mydir.flv
    Please, help me since I must have forgoten some essential
    steps in my Server Installation process.
    Thanks

    The reason you can't see the streams is because they only
    show up when they are being accessed (played) which is probably the
    dumbest thing ever. Anyhow, as for the URL not working, not exactly
    sure why, but I know this is dumb, you have a typo: rtmp://localho
    St/mydir/mydir.flv

  • Can't see ADMX files in Group Policy Editor

    I have a problem with ADMX files on my Server 2008 r2 group policy. I start by going to group policy editor. Then I browse to Computer Policy and then Administrative Templates. There is nothing in there... Which is weird... There has always been stuff there...
    So, then I go in to add templates back in... I find the ADMX files in C:\Windows\Policy Definitions and also \\domain\SYSVOL\domain\Policies\PolicyDefinitions and go to Add/Remove Templates. I click add and then browse to either directory (which has ADMX files
    in them!) and see nothing. ADM files I can see fine. But ADMX I can't see. So, I see these links:
    2008 R2 Server GP can't see admx files
    I can't see admx files
    Looking at them, they both say I should be able to see ADMX files in the central store...So I manually copy the ones in C:\Windows\Policy Definitions to the SYSVOL central store. Restart group policy editor... Nothing there when I browse the settings...
    Still not able to add templates.
    It looks like group policy editor doesn't know about ADMX files at all... Is there a registry setting or something that "enables" the ADMX files?
    Thanks,
    Scott

    In gpedit / gpmc, the menu item : "Action -> Add/Remove Templates", is only applicable/useful for the older/legacy ADM files - the menu item isn't relevant for ADMX/ADML files at all.
    The most common reason for an "empty" list of Administrative Templates settings, is an incorrect configuration of the Central Store.
    The usual guidance tells us to place ADMX files here, to setup a CS:
    \\domain\SYSVOL\domain\Policies\PolicyDefinitions\
    This folder/file structure has to mimic what you would see at: C:\Windows\PolicyDefinitions\
    If your domain is named contoso.com, you would need this:
    contoso.com\SYSVOL\contoso.com\Policies\PolicyDefinitions\
    In that folder, reside your ADMX files.
    You also need the relevant locale subfolder, and in there, you need the matching ADML files.
    The best way to establish that, is to go to  C:\Windows\PolicyDefinitions\ on your RSAT PC, or DC, and copy all the contents including subfolders and files, into the equivalent folder of your CS.
    Then exit GPMC (if you had it opened), and re-launch GPMC. No need to to anything else in GPMC, it will automatically, by default, look for a CS first, and, if no CS is found, will revert to the local policydefinitions folder structure.
    But, if the CS folder structure exists *AND* is incomplete or incorrect, you will get your symptom.
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • External table, can't see the file

    Hi
    --This is what I do
    CREATE OR REPLACE DIRECTORY data_dir AS 'C:\TEMP\'
    GRANT READ, WRITE ON DIRECTORY data_dir TO my_user;
    --I have my actual GAS.TXT file in the folder, the file looks like this
    0003450305NG-5E6, TUSCANY VILLAS,26 FENTON STREET ROTORUA 3201, ROTORUA
    002343043NG-9DE, LORALIS LIMITED,18 HARINGTON STREET TAURANGA 3001, TAURANGA
    ...etc...
    --I do a select
    SELECT * FROM all_directories
    --and it shows
    SYS DATA_DIR C:\TEMP\
    --Then I create my ext table like this
    CREATE TABLE external_table(
    ICP CHAR(10) ,
    NAME CHAR(20),
    ADDRESS CHAR(30),
    CITY CHAR(20)
    ORGANIZATION EXTERNAL
    ( TYPE oracle_loader
    DEFAULT DIRECTORY DATA_DIR
    ACCESS parameters
    (RECORDS DELIMITED BY NEWLINE
    FIELDS TERMINATED BY ','
    OPTIONALLY ENCLOSED BY '"' AND '"'
    (ICP CHAR(40),
    NAME CHAR(100),
    ADDRESS CHAR(100),
    CITY CHAR(100)
    location (DATA_DIR:'GAS.TXT')
    --The table is created
    --then when I try and do a select I end up with an error message
    SELECT * FROM EXTERNAL_TABLE
    ORA-29913 blah, blah
    ORA-29400 blah blah
    KUP-04040 file can't be found
    ORA-06512 SYS.ORACL_LOADER
    ORA-06512 blah blah
    So, I reckon of some reason it can't see the file, but I do not know why?
    The file sits on the Server in the C:\TEMP folder and the error log ends up in the C:\TEMP folder
    I have tried several variations on this, but still same error. However, then I also tried these exact same scripts on another Oracle box, and it worked fine. So something with the machine/box I am using is not alright.
    Would appreciate your thoguhts.
    Thanks
    Kari

    As suggested, change your table definition to match the available data, and post an example like below with complete error message (not the edited version that is hard to understand).
    SQL> $ type c:\temp\gas.txt
    0003450305NG-5E6, TUSCANY VILLAS,26 FENTON STREET ROTORUA 3201, ROTORUA
    002343043NG-9DE, LORALIS LIMITED,18 HARINGTON STREET TAURANGA 3001, TAURANGA
    SQL> CREATE OR REPLACE DIRECTORY data_dir AS 'C:\TEMP\'
      2  /
    Directory created.
    SQL> CREATE TABLE external_table(
      2  ICP CHAR(16) ,
      3  NAME CHAR(20),
      4  ADDRESS CHAR(35),
      5  CITY CHAR(20)
      6  )
      7  ORGANIZATION EXTERNAL
      8  ( TYPE oracle_loader
      9  DEFAULT DIRECTORY DATA_DIR
    10  ACCESS parameters
    11  (RECORDS DELIMITED BY NEWLINE
    12  FIELDS TERMINATED BY ','
    13  OPTIONALLY ENCLOSED BY '"' AND '"'
    14  (ICP CHAR(40),
    15  NAME CHAR(100),
    16  ADDRESS CHAR(100),
    17  CITY CHAR(100)
    18  )
    19  )
    20  location (DATA_DIR:'GAS.TXT')
    21  )
    22  reject limit unlimited
    23  /
    Table created.
    SQL> select * from external_table ;
    ICP              NAME                 ADDRESS
    CITY
    0003450305NG-5E6 TUSCANY VILLAS       26 FENTON STREET ROTORUA 3201
    ROTORUA
    002343043NG-9DE  LORALIS LIMITED      18 HARINGTON STREET TAURANGA 3001
    TAURANGA
    2 rows selected.
    SQL>Message was edited by:
    Kamal Kishore

  • I am logged on to a wifi and can see files from other users on this network.  Can they see my files as well?

    I am logged on to a wifi and can see files from other users on this network.  Can they see my files as well?

    Yes and no. It depends on your settings.
    Go into "System Preference" and click on "Sharing"
    If you have services checked such as "File Sharing" then others can see your computer on the network. But you really don't need to worry because others would need your username and password to have access to your files.
    What you see are just computers annousing themselfs on the network. To have access to said computers, Username and Passwords are required.
    Hope this helps

  • I have a problem with the sync between iTunes and ipad2. I can not see the files in iPad. Help me please.

    I have a problem with the sync between iTunes and ipad2. I can not see the files in iPad. Help me please.

    Cannot see what files ? Music (synced music should appear in the iPod app), films/TV shows (Videos app), documents ... ?

  • I am trying to transfer pictures and music from my phone to my computer, and when I connect my phone, it says Device not installed correctly. I can not see my files or nothing. What can I do?

    I am trying to transfer pictures and music from my phone to my computer, and when I connect my phone, it says Device not installed correctly. I can not see my files or nothing. What can I do?

    Try downloading these http://www.samsung.com/us/support/owners/product/SCH-I535MBBVZW
    or searching for it here Verizon Wireless Cell Phones - Verizon Wireless Accessories | Samsung

  • Can't see .cfm files in Design view

    Can't see .cfm files in Design view in Dreamweaver CC.

    Hi pkregel,
    Do these files open as intended in Dreamweaver CS6? I am not a CF expert but I am guessing that if you are able to open the files, then you should be able to see them in both the views. Can you post a screenshot as well?
    Thanks,
    Preran

  • How can I see my files on Time Capsul

    How can I see my files on Time Capsul

    Do you mean Time Machine files or ordinary files.. ??
    Did you copy files to the TC? It should just open in the finder as long as the TC is available and the airport utility shows it connected.
    If you want to see the contents of the TM files.. open the sparsebundle and use main Time Machine icon in the dock.
    Read more.. pondini will help you.
    http://pondini.org/TM/FAQ.html
    Try Q15

  • How can i see PDF files in Nokia 5230

    How can i see PDF files in Nokia 5230

    sandy2410 wrote:
    @moonnight12
    Adobe has its own pdf reader for symbian s60 3rd edition devices.
    http://www.adobe.com/products/acrobat/readerforsymbian.html
    Hopefully this helps
    Cheers
    Sandy
    Did you actualy read this. " QuickOffice is the Exclusive S60 Provider of this release".
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • I have an external hard drive 1 TB - it says that 559GB has been used , but I can't see any files at all.   Is there a way to recover those files. I have a lot of photos on it. I have an IMac and running MAC OSX versuib 10.7.5   I am new to Mac.

    I have an external hard drive 1 TB - it says that 559GB has been used , but I can't see any files at all.
    Is there a way to recover those files. I have a lot of photos on it. I have an IMac and running MAC OSX versuib 10.7.5   I am new to Mac, so I hope somebody can give me some advice.
    Cheers

    if it's ntfs microsofts filesystem then you need a windows machine to recover them

  • I can't see some files in web

    I can't see some files, or videos, in web, I can't download adobe player

    Well, I don't know what the problem actually is in the first place, it should work as is, I think something is messed up with the present driver and replacing it would perhaps get around that problem.
    It seems like I'd be adding one more layer of complexity to the Vista machine...
    Not sure how the Vista machine is involved in this, since these are drivers for the Mac.
    Though to involve the Vista Machine, One option not mentioned yet is MacDrive for you PCs... allows them to Read/Write HFS+...
    http://www.mediafour.com/products/macdrive/

  • I can't see .NEF files in finder from mi NIkon D7100. Helllp !!!!!

    I can't see .NEF files in finder from mi NIkon D7100. Helllp !!!!!
    I can open NEF files in Camera Raw but Im not seeing tumbs in finder !
    Also I cant see them in preview too.

    Well, I don't know what the problem actually is in the first place, it should work as is, I think something is messed up with the present driver and replacing it would perhaps get around that problem.
    It seems like I'd be adding one more layer of complexity to the Vista machine...
    Not sure how the Vista machine is involved in this, since these are drivers for the Mac.
    Though to involve the Vista Machine, One option not mentioned yet is MacDrive for you PCs... allows them to Read/Write HFS+...
    http://www.mediafour.com/products/macdrive/

  • I am logged in to my Acrobat account but I can't see my files?

    I have Acrobat on my iPad which is connected to my Acrobat account. I use it to read my ebooks just fine. But when I installed Acrobat on my Android phone and logged in, I can't see the files that I have on my iPad?
    Is this a bug or is there something I'm not getting here?

    When you read the ebooks on your iPad (with you logged in using your Acrobat account), did you explicitly save those files to Acrobat.com? Are you able to access those same files in browser?

Maybe you are looking for

  • HELP PLEASE!!! Horizontal Spry Menu

    I'm having trouble with my horizontal spry menu. I have added it and it looks great in Firefox. No problems at all, exactly how I like it. But when previewed in Internet Explorer it doesn't show at all. There's nothing. I've inserted the "mark of the

  • Not getting the Parameter Form in Multi-tier Enviroment.

    Hi all, I am using Forms 6i and Reports 6i. The reports run fine in Client Server mode. It asks for the desired parameters based on which I am building the dynamic query. But in 3-tier env., it just skips parameter form. What is happening I don't kno

  • F110S - Payment program selection criteria

    We have a large backlog of past due invoices, we are looking to create payment runs that will select invoices that are due through a certain date that is in the past.  For example, on the first day, we may want to pay only invoices that are due throu

  • Username and password for oracle financials

    Hi,      Can anyone help me in finding out the username and password for oracle financials application.      Thanks in advance Jaya

  • Screen Tips within RoboHelp 7

    I am still a new user with RoboHelp 7 and I am trying to configure screen tips. Now I am able to access a section of a project and doubleclick on the images to assign a screen tip to them and it shows up when I preview. What I would like is a way to