Matthew,
Could you please try the following?
First open a Terminal window (Applications/Utilities/Terminal.app). Type: cd<space> (press the space bar after you type 'cd')
Then in the Finder, find Photo Mechanic Plus. Right-click on it and choose "Show Package Contents". Then navigate to Contents/pmruby
Select and drag and drop the 'bin' folder onto your Terminal window. Next, press enter. Then copy and paste the following:
./pmruby -rsocket -e 'sv = TCPServer.new("127.0.0.1", 0); sv_port = sv.addr[1]; cl = TCPSocket.new("127.0.0.1", sv_port); svc = sv.accept; buf = ("x" * (1024**2)); nbuf=100; sz = buf.length * nbuf; t1=Time.now; [Thread.new {nbuf.times {cl.write(buf)}}, Thread.new {rsz=0; begin; rx=svc.read(65536); rsz+=rx.length; end while(rsz < sz)}].each {|th| th.join}; t2=Time.now; et=(t2-t1); puts "#{et} seconds, #{(sz/et)/(1024**2)} MB/sec"'
It should output the time and speed of your localhost transfer rate. Please copy and paste that output in your reply.
Thanks,
-Kirk