Can't Read & Write to FTP

This may be a  simpler problem then I think it is since some of the information I've found on line indicated you can't write to FTP drives via finder. But I'm having a lot of difficulty connect to FTP drives via finder. Despite using the correct log in details and FTP paths just like I do in Fileziller, Finder constantly rejects and when I do get on using the master file hosting log in details I can't write to the drive only read. Anyone else have these issues, can you share your experiences.

You don't give any details about where the FTP server you're trying to get/put things is, but using FTP across the internet (is the FTP server you are trying to connect to in your own network or across the country or ???) is a not a good idea (passwords travel in the "clear" ie non-encrypted) - from a security point of view. You might want to see about using scp (secure copy) from the command line or one of any number of file transfer programs or some other way of transferring files from/to your system and another one. FTP is faster, but the security downside is really something to think about now-a-days. SFTP (SSH file transfer protocol) is supported in Topher's Cyberduck suggestion. Just do a google search for "secure file transfer program os x" and you will see a bunch of choices.

Similar Messages

  • While syncing it says that it can't read/write to the iPod. I've reset to factory settings and it still won't work.

    Every time I connect it to sync it says it's been sync'd with another library and do I want to erase and sync w/ the current itune library.....it has never been sync'd with another itunes library....just this one on my mac.  When it starts to sync and says that it can't read/write to the ipod. I've restarted it, reset it and made sure my itune is the most recent.  HELP.

    When you still have the problem after restoring to factory defaults/new iPod then you very likely have a hardware problem and an appointment a th Genius Bar of an Apple store is in order.

  • How can I Read/write a ascii file?

    How can I Read/write a ascii file? like this:
    101     0.0000     -1.0000 +
    102     -0.1887     -0.9485 +
    103     -0.3578     -0.8639 +
    104     -0.5022     -0.7516 +
    105     -0.6177     -0.6177 +
    106     -0.7018     -0.4689 +
    107     -0.7533     -0.3120 +
    108     -0.7723     -0.1536 +
    109     -0.7603     -0.0000 +
    110     -0.7198     0.1432 +
    111     -0.6543     0.2710 +
    112     -0.5682     0.3796 +
    113     -0.4660     0.4660 +
    114     -0.3531     0.5284 +
    115     -0.2345     0.5660 +
    116     -0.1152     0.5791 +
    117     -0.0000     0.5689 +
    118     0.1069     0.5375 +
    119     0.2020     0.4876 +
    120     0.2823     0.4224 +
    121     0.3457     0.3457 +
    122     0.3911     0.2614 +
    123     0.4180     0.1732 +

    import java.util.*;
    import java.io.*;
    class BallB{
         public static void main (String args [])
         throws Exception {
              String str=" ";
              String myString="";
              try {
                FileReader fr = new FileReader("test.txt");
                BufferedReader br = new BufferedReader(fr);
                   FileWriter fw = new FileWriter("test1.txt");
                   while(str!=null){
                        myString = str+"\n";
                        str = br.readLine();
                        fw.write(myString);
                   br.close();
                   fw.close();
              }catch (Exception e) {
                   e.printStackTrace();
    }

  • Can't Read/Write to External HDD-Permissions Problem

    I have external Seagate HDD, formatted as FAT32, connected to Airport Extreme Base Station. I am unable to Read/Write to this Drive because Finder says I "Don't have permissions" to do so.
    Following are details that may be important:
    1. I was able to read/write to this drive under Leopard but lost the right under Snow Leopard, after upgrade to SL.
    2. In Airport Utility, I set up (2) accounts for the External HDD, "Dad" with "Read/Write" access and "Mom" with "Read" access only. I have Guest Account privileges set to "Read Only". It has been this way for (2) years.
    3. Under "Get Info" in Finder, the only account listed is "everyone" with "read" permission only (this is same as Guest Acount in Airport Utility). I am unable to add new accounts because I get error message "The account name is not valid" even though I am using the account name that I am logged in under.
    4. I can change the Permissions on the "everyone" account (in Finder) by changing the permissions on the "Guest Account" in Airport Utility. When I do this, "everyone" in Finder now has "read/write" access but my two accounts, "Dad" and "Mom still don't show up in Finder.
    5. I also upgraded internal HDD to 1Tb and used Restore from Time Machine. I hhad problems with the restore and did new install of Snow Leopard.
    Any ideas on how to make Finder show the two accounts I have set up in Airport Utility?

    My apologies for bumping this but I still don't have a solution...any help would be greatly appreciated!

  • What types of filesystems can Tiger read/write to?

    I'm trying to partition my iBook g4's hardrive to run both OSX and Ubuntu GNU/Linux (colloquially: Linux) and don't know what filesystems Tiger can read/write to, so I can share large files (eg: photos, movies, etc.) between the two partions. The options Ubuntu gives me for filesystems on its partition are: ext2, ext3, fat16, fat32, hfs, linux-swap, xfs, devfs and jfs. Also to note is that I plan of having this partioon's size at 37 GBs. Thanks!

    You have the following options depending upon how the drive is partitioned:
    OS X can read/write Mac OS Extended and OS Extended (Journaled), MSDOS FAT16 or FAT32, and Unix File System. You should not install OS X or OS 9 in a UFS partition. UFS partitions can be created by Disk Utility.

  • Can I read/write global variables that are in other PC?

    I attach the vis and the executables.
    My problem is that when I run( continuosly, because in other way, I read the default value of the variable) getvalue.vi and setvalue.vi, I don´t have any problem, I can read/write the global variables, the two vis is running in the same PC.
    But when I do the exe and I run them continuosly , it doesn´t work.
    Any solution?
    Thanks in advanced!
    Graci
    Attachments:
    Get_Value.vi ‏30 KB
    Set_Value.vi ‏30 KB
    Exe.zip ‏272 KB

    Hello Bichillo,
    By running the vis continuously you are running into race conditions. If you cannot control when you are writing to or reading from a global variable, you cannot know whether the value writen/read is the right one or not.
    In your case the global variable value that is read is sometimes the last value writen and sometimes an empty string.
    To make the global variable behave as desired, that is, keeping its last value, the global variable must be in memory when you access it using VI Server. If it is not in memory, the returned value is an empty string. That´s why you sometimes get a non-empty string: when you access the global variable to read its value, it happens to be in memory because you´ve just writen to it.
    To ensure that the global
    variable is always in memory and it keeps its last value, you must include the global variable into your block diagram. I am attaching modified vis that implement this.
    Hope it helps.
    César Verdejo
    Training and Certification | National Instruments
    Attachments:
    Get-_Set_Value.llb ‏48 KB

  • Can't open iPhoto (can't read/write)

    Hi all,
    I had a hard drive meltdown on Sunday and the drive had to be replaced. iPhoto 7.1.2 was installed on my machine at that time (I've been using iPhoto for, oh, at least three years now) and then I got on a plane to Israel which is where I am for the next 2 months (no Apple stores in the whole country!)
    I can't open iPhoto. When I click on the icon, nothing happens. I went to iPhoto info (by opening up Applications in the three-tiered view and clicking on "more info") and I see that the setting is set as: "Ownership and Permissions" and then "you can: [read/write]" is greyed-out.
    More details: beneath that, it says: "Owner: [system]" (the name "system" is also greyed-out) and there's a little padlock icon next to that.
    Can anyone here help me figure out how to get iPhoto to launch? The file is 174.2 MB, so clearly the program exists on my machine; I just can't get it to open. Thanks!
    Message was edited by: rbarenblat

    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-24 19:44:58.131 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 976
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-24 19:45:11.851 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 978
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-24 19:45:14.639 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 980
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-24 19:45:31.564 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 982
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-24 19:46:04.503 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 985
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-24 19:46:43.010 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 988
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-24 19:47:27.244 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 993
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-24 19:48:44.677 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 997
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-24 19:48:58.871 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 999
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-24 19:52:21.929 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 1010
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-24 19:52:30.676 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 1012
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-24 19:56:56.044 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 1017
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-24 19:56:58.107 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 1019
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-24 20:20:23.221 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 1035
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-24 20:20:35.972 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 1037
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-24 20:20:48.250 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 1039
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-25 09:09:18.463 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 1180
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-25 09:35:51.810 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 1191
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-25 12:06:14.762 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 1428
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-25 14:58:40.631 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 1534
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-25 14:58:56.845 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 1536
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-25 14:59:56.529 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 1540
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-25 15:28:46.623 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 1560
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found
    Host Name: rachel-barenblats-computer
    Date/Time: 2008-06-25 15:39:28.665 +0300
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [147]
    Version: 7.1.2 (7.1.2)
    PID: 1572
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    Referenced from: /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    Reason: image not found

  • Can I read/write a LabVIEW DataSocket cluster in Lookout?

    Can read/write DataSocket text, logical, and numerical arrays but how do I read/write a LabVIEW style cluster datatype (i.e. an array of clusters or a cluster of arrays)?
    Thanks!
    Tom
    Thomas G. Duffey
    Engineering and Research Consultants, Inc.
    Air Force Research Laboratory
    3 Antares Rd.
    Edwards AFB, CA 93524
    661.275.6172 FAX 661.275.5073
    mailto:[email protected]
    http://neverworld.net

    You should be able to wire your cluster or array of clusters or cluster of arrays directly into the datasocket write/read primitives. They are polymorphic and should handle the data directly.
    Marc Monroe
    National Instruments

  • How can I read/write data files (text file) from PL/SQL Script

    I had an oracle forms pl/sql program to read/write a data file (text file). When this code is run on a command line as a PL/SQL script using the SQL*Plus I am getting an error:
    -- sample.sql
    DECLARE
      vLocation                 VARCHAR2(50)  := 'r:\';
      vFilename                 VARCHAR2(100) := 'sample.dat';
      vTio                   TEXT_IO.FILE_TYPE;
      vLinebuf               VARCHAR2(2000);
      vRownum               NUMBER        := 0;
      -- use array to store data FROM each line of the text file     
      TYPE           array_type IS VARRAY(15) OF VARCHAR2(100);
      vColumn      array_type := array_type('');
      PROCEDURE prc_open_file(p_filename IN VARCHAR, p_access IN VARCHAR2) is
      BEGIN
        vTio := TEXT_IO.FOPEN(vLocation||p_filename,p_access);
      EXCEPTION
        WHEN OTHERS then
          --  raise_application_error(-20000,'Unable to open '||p_filename);
          message(sqlerrm);pause;
      END;
      PROCEDURE prc_close_file is
      BEGIN
        IF TEXT_IO.IS_OPEN(vTio) then
           TEXT_IO.FCLOSE(vTio);
        END IF;
      END;
    BEGIN
      --extend AND initialize the array to 4 columns
      vColumn.EXTEND(4,1);
      prc_open_file(vFilename,'r');
      LOOP
          LTEXT_IO.GET_LINE(vTio,vLinebuf);
          vColumn(1)  := SUBSTR(vLineBuf, 1, 3);
          vColumn(2)  := SUBSTR(vLineBuf, 5, 8);
          vColumn(3)  := SUBSTR(vLineBuf,10,14);     
          Insert Into MySampleTable
          Values
            (vColumn(1), vColumn(2), vColumn(3));
          EXIT WHEN vLinebuf IS NULL;
       END LOOP;
       prc_close_file;
    END;
    SQL> @c:\myworkspace\sql\scripts\sample.sql;
    PLS-00201: identifier 'TEXT_IO.FILE_TYPE' must be declaredIt works on the oracle forms but not on the SQL*Plus. Is there an alternative method using a PL/SQL script? A simple sample would help. Thanks.

    Did you ever noticed the search box at the right side of the forum?
    A quick search (limited to this years entries) brought up this thread for example
    Re: UTL_FILE Examples

  • Can you read/write to Mac partition from Windows 7 partition with bootcamp?

    Hi there. I am about to take delivery of a new Air and want to install Windows on it. As accessing both simultaneously isn't important to me, I don't mind using boot camp and would like the performance gains (if there are any?) of booting straight into either.
    The question is: would I be able to, from Windows, access and edit (have full access to) files stored on the Mac partition?
    Furthermore, does anyone know whether I could run itunes on both using the same set of files (i.e. exactly the same itunes whether in OS X or Windows?).
    Thanks very much for your help. I have heard contradictory things so wanted to see what the real answer was!
    Thanks,
    Tom.

    iTunes has to be somewhere you can write. There are some tips on iTunes probably in the devoted forums.
    But writing to Mac partition (HFS+) requires 3rd party driver. Same for writing to NTFS from Mac OS.
    I would not recommend MacDrive8 for allowing Windows to write to Mac HFS, but that is and was the first to do so. Paragon-Software has been creating some file system drivers for Windows, Linux and now Mac to go both ways. Most of their products are in the backup & recovery and partitioning area.
    Apple has added read-only feature to allow accessing HFS but the feature (and it is not really a service or driver that you can turn on/off or choose to not install, it is part of the Boot Camp package) has been known to need to be renamed/deleted. Not always but will sometimes trigger BSOD. Maybe reading a file with a file name? doubt it but I rename "AppleHFS" and "AppleMNT" so they don't load or function in Windows 7.
    http://www.paragon-software.com/
    http://www.mediafour.com/updates/macdrive

  • Help! CD drive reads Dvd's cd-rw's burns cd-rw's can't read/ write cdr's

    Hi all,, I have a strange problem. My ibook can read dvd's, read and burn cd-rw's, read audio cd's and store bought cd-roms, but it cannot read or write blank or burned cdr's. I've reset the pram, and reinstalled the OS but nothing. Once I put a disc in it cycles on as normal then ejects the cd after about 30 seconds.. Any idea's what else I could do?
    Thanks!

    i would say this was a software problem, rather than some kind of incompatibility thing. As a test, you could create a new user account, when you put a CD-R in on this new account it would give you the option of opening the CD in the finder or in itunes, if you choose itunes it should work fine, however if you open it in the finder it will eject the same way.
    When i had this problem i archive-reinstalled OS-X, that replaces your system folders and the like, but keeps all your documents and settings, so if you can be bothered that would fix your problem. I'm wondering, however, if it could be fixed by deleting some system files, possible something in root/library/preferences although i wouldn't know what to look for in their.
    hope i've been some help. Matt.

  • M60-182: Can it read/write DVD-R Dual Layer?

    I couldn't find in specs any list of supported types of media, the model of dvd-drive is mat****a dvd-ram uj-840s

    According to the drive specifications it should be possible to write on the DVD+R double layer max 2.4x
    Usually you should find a information about tested and compatible medias in the user manual which should be preinstalled on your notebook.

  • ITunes can't read/write my iPod shuffle

    from the beginning:
    i bought my iPod shuffle 1 month ago. i installed all necessary software, connected my ipod and i got filled with music. GREAT ! i thought. that's really some kind of "plug 'n play". But then some days later, i wanted to load other music on my ipod shuffle. so i plugged it into my computer's usb-slot, iTunes opened, i clicked on "my iPod" selected a playlist out which the ipod should be (re-)filled and finally clicked on "fill automaticaly".
    first it seemed, as if it works. the songs appeared on my ipod, but then some seconds later windows/iTunes gave me an error-message: "iPod can't be read or written".
    so the old songs stayed on it.
    so, i thought to be clever: i plugged my ipod into my 2nd computer, on which neither iTunes nor my iPod is installed. there i formatted my iPod. after that i plugged it into my "main computer" again and my ipod was empty. cool! that worked! therefor, i tried to fill the "totally clean" ipod again with music. but again: "ipod can't be read or written"
    what i already did:
    reset ipod
    restart ipod
    re-install iTunes + iPod
    update ipod-software
    changed device-letter for usb-storage-media (ipod)
    insulted my ipod ( U damned son of a **, i hate U, go ahead and work... i think my ipod is laughing about me...)
    but slowly i think the problem is not the ipod. i think it's my computer ?! 'cause on my 2nd PC (rather old and slow with 900mhz, 192mb ram, win2k, USB 1.0)
    my ipod seems to work. but my 60GB of music are on my main-pc...
    if it helps, here the config of my "main pc":
    AMD Athlon XP @ 2400mhz = 3500+
    1,5GB RAM
    Abit AN7 socket A mainboard, nforce2 ultra400
    nvidia GF6800
    2 HDD's ( 7 partitions) = totally 220GB
    2 optical drives
    1 floppy
    winXP pro SP2
    changed (usb-)device letter of ipod to "O:\"
    plz help me, if U ever experienced the same problem.
    thanks a lot !
    AMD3500+ 1,5GB RAM GF6800   Windows XP Pro   goes like ****

    hiya!
    try checking through the possibilities on this document:
    "Disk cannot be read from or written to" when syncing iPod or "Firmware update failure" error when updating or restoring iPod
    love, b

  • What Floppy Drive can I use with Mountain Lion to read and write floppy which can be read by SE30 with 7.1

    I want to File Exchange between an iMac with 10.8.4 and a SE30 with 7.1.
    All I want to do is install some software, such as Word 5.1 and a Chess game and some Fonts.
    I have an external USB Floppy Drive but my iMac can only write to it IF I format as FAT, if I format it with the SE30 it can only be read and not written onto by the iMac.
    Is there a way I can actually format/read/write Macintosh extended (HFS+) with Mountain Lion?
    The external USB Floppy is a generic black one I bought from Amazon last week.
    Someone else said I should get a Macally USB Floppy Drive and that reads/writes HFS+ etc with 10.8 no problem.
    Is this because the Macally was released along with the Bondi Blue iMac?
    I have tried using Apple Exchange on my SE30 - recorded some files onto the FAT formatted Floppy, and read it using Apple Exchange, but when 'translating' the Files transferred over as generic files which were no longer Macintosh programs or Files (eg Word 5.1 application or extensions/ Font suitcases etc) and could not be read.
    Is there a way round this?
    Or is there any way I can mount/read/write from the generic USB Floppy DRIVE with Sheepshaver (with 7.5.3)?
    Any help or advice would be most appreciated.

    >surely there must be some Terminal command or workaround for 10.8 to be able to Format in HFS?
    Using dd to write an existing HFS disk image to a floppy may still work (but formatting/writing HFS from the operating system does not). You may want to compare this with the technique described in the article below. Obviously, this is only of interest if one wants to try creating floppies from certain (Disk Copy 4.2-style) downloaded 1.44 MB disk images.
    http://lowendmac.com/brierley/08pb/classic-mac-boot-floppy.html
    >If I got hold of an old iBook or Powerbook G4 (my sister has one) could I plug the USB Floppy drive I have into one of these and copy files over this way?
    At least according to the following Wikipedia article, writing HFS has not been supported since Mac OS X 10.6. This should mean that your idea with the USB floppy drive connected to one of the older computers mentioned could work. BTW, I do not think that the USB floppy drive type/make/model is of importance in this very context.
    Another idea could possibly be to use an even older intermediate computer for other file transfer methods (without a floppy).
    A PowerBook 520/520c/540/540c could run Mac OS 8.1, if at all necessary. It has built-in Ethernet (an external AAUI to RJ-45 transceiver is used), which would allow TCP/IP connections over a network. A LocalTalk connection to the SE/30 can be established via a plain Macintosh MiniDIN-8M to MiniDIN-8M printer cable. With the correct SCSI cable/adapter, one could also use the PowerBook as an external hard disk for the SE/30 in SCSI disk mode.
    A PowerBook 5300 can run Mac OS 8.1 or higher, if necessary. It does not have built-in Ethernet, but a PC Card (PCMCIA) network card can be used. Furthermore, with an inexpensive PC Card adapter for CompactFlash and a CompactFlash memory card, the computer would have a simple removable "hard disk". The CF card (in Mac or PC format) can be read by a modern computer (a USB reader may be needed), making it ideal for file transfers. LocalTalk can be used here too, and so can SCSI disk mode (HD target mode).
    Jan

  • Wiki "Read Only" users can read & write

    I am looking to use the built in Wiki software on our Snow Leopard mac mini server. The wiki is meant to be private with one user able to read and write and another account that can read only. After selecting "read only" the user can still read & write. The read only account is not an administrator so I am not sure why they are not read only, could someone point me in the right direction?
    Thanks for your help!

    Hi,
    According to your post, my understanding is that users with read only permissions can't see custom Master Page and Managed Metadata Navigation SharePoint 2013.
    I suggest to customize the ClientObject model code to retrieve info with elevated privileges and then re-deployed the master page.
    Here is a similar thread for you to take a look at:
    http://social.technet.microsoft.com/Forums/en-US/bd7aa817-114a-46ae-a08a-71d903227ce0/sharepoint-2010-custom-master-page-and-read-only-permission-issue?forum=sharepointadminprevious
    If it doesn’t work, please check more information about the custom Master Page, such as whether it contain content like web parts that with permission limited, or whether you have any changes
    to the read permission group.
    In addition, please check the SharePoint ULS log to find more information, , the ULS log file is in the location: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    You can check the ULS log by the methods here:
    http://blog.credera.com/technology-insights/microsoft-solutions/troubleshooting-sharepoint-errors/
    Best Regards,
    Linda Li

Maybe you are looking for

  • Regd. Use of SOAMANAGER in PI 7.1

    Hi Experts! Could anyone let me know the use of soamanager in PI 7.1, like how to add servies , how to create endpoints and post the requests. Anything which can help me understand  how to work on soamanager. I have a standard inbound syncrounous ser

  • CSS in CS4: Can I create "nested styles" similar to InDesign's?

    I am working on the obituary archive section of a newspaper website. I have lists of similar 3-line "units", and I have a different class style set up for each line. A typical "unit" would be: (Person's name) - bold weight, soft return (Person's age/

  • Setting Browser Preview Preferences

    I feel a bit silly about this - but for some reason I am unable to set the browser preview options in my preferences. I'm using Dreamweaver 8 on a Mac OX10.3.9, and trying to designate Firefox 1.5 as my default primary browser, and Safari 1.3.2 & IE5

  • Query Fast access!

    Please help me to correct the following queries to access faster.Thanks a lot.. <%                String mngpid="";                if (request.getParameter("mngp")!=null)                mngpid=request.getParameter("mngp");                else        

  • Tiger as a testing server? Can't find all the peices...

    I am looking all over for a 1,2,3 of how to set up Tiger as a testing server. I find bits and peices - but don't understand how to get them all to fit together. I want to be able to test dynamic websites authored in Dreamweaver on my G5. I know I nee