Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

permissions block opening iPhone photos

I download iPhone photos using Image Capture on an iMac running OSX 10.9.5. I transferred them to my art computer, a G5 running OSX 10.5.8, using Dropbox, opened the pix in Photoshop CS2, processed the photos and shared them seamlessly. Then Dropbox killed it's Mac app, and it's usefulness on older computers. I created a shared folder on the G5 to replace the Drop-dead-box, and it works for everything except iPhone photos. They will drag into the shared folder, but won't open in the G5 If I open the file in preview and export as jpeg, it opens just fine in the G5. That's fine for one pic, not 50. Is there something I can set on the iPhone to solve this?


Pls skip the advice about upgrading anything. If I could, I would have already. Need to work with what I have until the economy is way better. Thanks.

Posted on May 28, 2015 1:10 PM

Reply
11 replies

May 29, 2015 9:44 AM in response to lite1x

When I get a chance I can look into this some more.


Hang in there.


They will drag into the shared folder, but won't open in the G5 If I open the file in preview and export as jpeg, it opens just fine in the G5.

Are you sharing the folder with the iMac running OSX 10.9.5?


Doesn't the iphone create photos as png? Does photoshop work with png?

May 29, 2015 2:23 PM in response to lite1x

but won't open in the G5


Perhaps you could use applescript to automate the conversion.


On which computer are you running preview?


What app are you trying to open the picture on the g5?


Do you see the file on the g5?


What happens when you duplicate the picture file?


It would seem to be permission problem or the file format isn't compatible for your software.


Has the format of jpeg changed any? There have been some enhancements. Seems to be in the area of metadata. Maybe dropbox was doing something in this area.

http://en.wikipedia.org/wiki/JPEG

May 29, 2015 2:53 PM in response to rccharles

Try emailing the file to the g5.


Let's look at the permissions. Familiar with the terminal?


/Applications/Utilities/Terminal


# type the following line. Type a space after the o. Drag the jpeg file to the terminal. Drop. Press return.

mac $ ls -laeo
drwx------ 58 mac staff - 1972 Oct 23 17:23 /Users/mac/picture.jpeg


# type file with a trailing space. Drag jpeg file to terminal again. drop. press return


file

copy and paste to this forum.

May 30, 2015 10:33 AM in response to rccharles

I think I did not clarify the problem. Any of the suggested solutions will work for a single file, the problem is that I drop multiple files, as many as 200 jpgs and need to pop them into a browser like Photo Mechanic, triage and process for social media. Dropbox is a one click and drag process. I looked for a replacement on the web, but found no free ones that play nicely with a G% running OSX 10.5.8.


I have repaired all the permissions I can find to repair.

Jun 2, 2015 1:01 PM in response to rccharles

Not sure what playing game means. The terminal instructions are a bit unclear for someone who doesn't use it much.


mousetrap-2:~ at-imac$ mac $ ls -laeo drwx------ 58 mac staff - 1972 Oct 23 17:23 /Users/mac/picture.jpeg file /Users/at-imac/Pictures/april\ iphone\ dump/IMG_1710.JPG

-bash: mac: command not found

mousetrap-2:~ at-imac$


This is what the iMac (where I d/l the files) gives.

Jun 2, 2015 2:38 PM in response to lite1x

My instructions were a little unclear. There are two commands here.

ls -laeo

and

file


# type the following ls -laeno.  Type a space after the o.  Drag the jpeg file to the terminal.
#   Drop.  Press return.
#   the letter l is the lower case L. there is a space after the letters ls. 
ls -laeo  /Users/mac/picture.jpeg
drwx------   58 mac  staff  - 1972 Oct 23 17:23 /Users/mac/picture.jpeg

# type file with a trailing space.  Drag jpeg file to terminal again. drop. press return
file /Users/mac/picture.jpeg
/Users/mac/picture.jpeg: JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1,
segment length 16, baseline, precision 8, 4608x3456, frames 3



--------------------------------------------------------------

An overview of the terminal. background information.

the letters mac $ is the prompt. The computer will type them.



\ Here is an overview of the terminal commands. Lets assume that your account has a short user name of mac.
Macintosh-HD -> Applications -> Utilities -> Terminal
#What is my short user name? Type the whoami command.
mac $ whoami
mac
mac $
#How to list all of your disks.
# The ls command is for list
mac $ ls /Volumes/
Audio CD Macintosh-HD Spotless Tiger-ext
mac $
# Let's say your flash drive is named Spotless


# cd is change directory
mac $ cd /Volumes/Spotless
# pwd is Print Working Directory. A directory is the Unix name for a folder. You are always in a directory.
mac $ pwd
/Volumes/Spotless
mac $
# The ls command is for list
# l is long
# F is type of file where / is directory. For directories, the slash is pasted to the end of the name.
mac $ ls -lF
total 134704
-rw-r--r-- 1 mac staff 64560 Mar 3 2009 A-picture-of-Youpi-key.png
drwxr-xr-x 83 mac staff 2822 Nov 7 14:52 Applescript files/
drwxrwxrwx 12 mac staff 408 Dec 13 2008 Christmas Cards/
drwxr-xr-x 9 mac staff 306 Dec 21 17:39 Christmas Cards 2009/
... trimmed ...
What does all this mean?

drwxrwxrwx

d = directory
r = read
w = write
x = executeable program

drwxrwxrwx
|| &nbsp|&nbsp |
|| | all other users not in first two types
|| |
|| group
||
|owner
|
What type of entry is this? d = directory, - = file, etc.


Every Unix resource: files, folders, etc has an owner, group, other
A Unix resource has one owner.
A Unix resource has one group. A group contains a list of users.


To gain access to a file, you can be the owner, in the group, or not the owner and not in the group hence you end up as other. The owner, group, or other has read, write, or execute permissions.


# l is long
# a is all to show hidden files & folders
mac $ ls -lFa
total 134736
drwxr-xr-x 41 mac staff 1496 Dec 22 17:11 .
drwxrwxrwt 8 root admin 272 Dec 24 13:55 ..
-rwxrwxrwx 1 mac staff 15364 Dec 23 12:52 .DS_Store*
drwx------ 4 mac staff 136 Jan 22 2009 .Spotlight-V100
drwxrwxrwt 5 mac staff 170 Sep 14 16:36 .TemporaryItems
d-wx-wx-wx 4 mac staff 136 Dec 31 1969 .Trashes
-rw-r--r-- 1 mac staff 64560 Mar 3 2009 A-picture-of-Youpi-key.png
drwxr-xr-x 83 mac staff 2822 Nov 7 14:52 Applescript files
drwxrwxrwx 12 mac staff 408 Dec 13 2008 Christmas Cards
drwxr-xr-x 9 mac staff 306 Dec 21 17:39 Christmas Cards 2009

... trimmed ...
# mv is move or rename
mv -i the-name the-new-name




# You can just rename the file back to what it was with mv command.
mv -i old-name new-name


Here is what these commands mean:
cd is change directory
pwd is a print working directory
ls is list
sudo is Super user do
mv is move or rename


For cryptic comments, you can always uses the manual command which is man. For example:
man mv


# Type the letter q to quit.
In case you have spaces in your filenames or directories, you need to escape them. See examples:

mac $ ls -l ~/"see it"
-rw-r--r-- 1 mac staff 3171 Oct 26 23:38 /Users/mac/see it
mac $
mac $ cd /Users/mac/Desktop/ttt\ html\ copy/


Do you know about tabbing? Type in a few letters of a name then press the tab key. The computer will type out the rest of the name if it is unique.


Press the up arrow key to see the previous command(s).


To edit a command, use the left arrow key to more left and the right arrow key to move right. Use the delete key to delete the key to the left. Type a letter to insert.


history to see many previous commands.


mac $ history

1 pwd

2 man ls

3 history

You may copy then paste from this list.


----------------------


http://discussions.apple.com/thread.jspa?threadID=2692161&tstart=0


Robert

permissions block opening iPhone photos

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.