Help for smugmug publish plugin on Mac OSX 10.9.4

I cannot for the life of me find the smugmug zip file which is supposedly downloaded on my computer after installing the adobe add-on.  I made sure the creative cloud folder is correct however when I go to my finder, I can't find the plugin zip file.
I've tried changing the finder preferences to show all extensions but I still can't find it.  I saw in another thread somewhere about going to the module directory under the library/application support but I don't see the plugin there either.
Can someone help me please?  I'd appreciate it!

Hi hooliagh,
Please try steps mentioned in the below article
https://forums.adobe.com/thread/1267823
Regards,
Devendra

Similar Messages

  • Smugmug Publish Plugin

    I'm trying to update my Smugmug Publish Plugin from version 2.0.3.1 to the current 2.0.7.0. I keep getting the message "Unable to perform Plugin Update. Failed to move the old plugin out of the way." How do I get this done? Thanks! LR 5.2.

    Well, if you can download using some other "idiot proof" means (or find the one that got downloaded prior to the failure), then a procedure for updating, which may or may not work properly, is:
    1. Close Lightroom
    2. Delete existing plugin (a smart person would move this somewhere instead of deleting).
    3. Copy new plugin to where previous plugin was.
    4. Open Lightroom
    By "plugin" I mean {name}.lrplugin folder.
    So the trick is to find the plugin.
    Mine would be in "C:\Users\{username}\AppData\Roaming\Adobe\Lightroom\Modules" for example.
    I don't know whether there is something important that the auto-installer/updater is doing that will be neglected when doing manually, so consider backing up your system first, and follow my procedure at your own risk...
    Rob

  • I am trying to upgrade from Tiger to Snow Leopard.  When I insert the disk and install starts, it states "This disk is used for Time Machine backups" and Mac OSX can't be installed.  Does anyone know how to correct this (since Tiger doesn't have Time Mach

    I am trying to upgrade from Tiger to Snow Leopard.  When I insert the disk and install starts, it states "This disk is used for Time Machine backups" and Mac OSX can't be installed.  Does anyone know how to correct this (since Tiger doesn't have Time Machine)?

    http://support.apple.com/kb/TS2986

  • HT1529 looking for  serial number of my mac osx  server 10.4. oz691 5583

    looking for  serial number of my mac osx  server 10.4. oz691 5583

    blue apple > about this mac > more info button. Click on the hardware line. It has a little triangle in front of the word hardware.

  • ICC profiles for Epson R1800 and Lightroom - Mac Osx

    Without trying to inflame an already heated discussion on prints that are too dark under my lightroom - printer - Mac Osx configuration. (Although I too am a sufferer of the darkness...!)
    I have recently downloaded the latest ICC profiles for the R1800 directly from Epson to my Mac. There are three of them and for arguments sake they cover the paper type I want "Premium Glossy Photo Paper"
    They download as a .sea file and not .icc as I expected.... My knowledge of Mac's doesnt extend to .sea files I'm afraid.
    My question is what do i do with the file now that its downoaded?... Nothing happens when you double click on it and It doesnt appear to try to find where to install itself.
    On another thread I read about dropping these files into Library - Colorsync - Profiles. They sit there happily but do not appear to show up in Lightroom when I wish to utilise the profiles.
    All the original Epson profiles are there from when I installed the Epson Drivers (new and updated) but no new profiles are there. This is definitely the case as the profile "Premium Glossy Photo Paper" is still there but its name should be changed to "Premium Photo Paper Glossy" according to the Epson website... Besides.. If I delete the new files and go back into Lightroom nothing has changed.
    Am i placing these files in the wrong area?
    Many thanks for any replies

    I suspect that some R1800 users have perhaps not tackled the issue of dark prints and may not be feel that they have an issue at all. I also believe that this particular issue only involves Intel Mac's which may not apply to some.
    Your issue may have something to do with the printer driver as well... I made sure that I went and found the very latest driver that Epson has out (there is a new one specifically for Intel Mac's). I made sure that I deleted the driver that came with the original disk.... I did this via the "printer setup utility"... then downloaded and installed the new driver.
    Only then did I go through the procedure for installing the new icc profiles as discussed...
    The profiles should then automatically appear in Lightroom and in colosync in the "Finder" screen under:
    " Users" > then whatever your computer name is > Library > Colorsync > Profiles
    The new profiles should then be seen.
    This is certainly the way I did it and perhaps the whole process has to be gone through for an Intel Mac.
    Hope this helps... I am nowhere near a computer expert but it worked for me.

  • Help in running Code::Blocks on Mac OSX. Should I use something else?

    I'm starting to learn programming and can't seem to get Code::Blocks running on my lap top. Terminal says "Can't execute binary file." I'm trying to build the first "Hello World" C++ program but it would not build or run. Sometimes I get the message that it cannot access folder also.
    Here's my code:
    #include <iostream>
    using namespace std;
    int main()
    cout << "Hello World !" << endl;
    What C++ software do you recommend to start? Should I use any other than Code::Blocks?

    As far as text editors, TextEdit will work, but as far as I know, you will constantly run into issues with formatting, spell-check, and other things. If you are guilty of "Which Button Do I Press?" then my first choice is likely not for you.
    If you are comfortable using the "Terminal" app, then I suggest using EMACS, (or just emacs). There is a built-in tutorial, and it is a very powerful editor, although for a non command line user it can be daunting, as most of the formatting and editing commands are all control characters (so regular characters are always entered as text). Emacs will do nice highlighting of various language elements just like XCode does. vi is another command line editing tool available on every version of UNIX. Emacs comes with Mac OS/X, as does vi. I have no idea if vi helps with programming as the first thing I do when I start to work on any Unix or Linux box is copy over some version of emacs, so i don't use it except sparingly.
    You can also continue to use XCode to edit the source files, as it does a nice job as a WYSIWYG editor and prompts you with help along the way. Just keep a terminal window open to use the command line to compile and link your program, but edit it in XCode and do a SAVE before you switch back to the terminal window.
    I also use BBEdit from Bare Bones, and some people like TextWrangler. There are at least a dozen other text editors out there that have features you can enable for programming. Do a google search for Mac OSX text editors and you'll see what I mean.
    I advise AGAINST using TextEdit, unless you set the file to "Plain Text". Also, don't use a .txt extension. Use .c, .cc, .ccp, .m, .mm, .js, or whatever the compiler expects to see for a specific language. Binaries will nearly always have a .o extension, and the final binary depends on the language, the linker and what options you provide. The default for c is a.out (or at least it used to be).
    You will also want to learn how to use "make", but that is another discussion.
    For starters, remember that "man" is your friend. If you want to look up information on Unix, and the command line on the Mac is talking to Unix, aka Darwin. Type "man man" for help getting started with the man command, and "man make" to get started with make. Note at the end of most man pages the section that says "See also", as this tells you about related commands.

  • How can I find a PDF plug in for Firefox 5 running on Mac OSX (10.6)

    I recently installed an Update and received a message that my PDF Plug In for Firefox would be disabled, but that when the Update had been installed the Plug in would be enabled. This has not happened.
    I am running Firefox 5 on Mac OSX (10.6)

    I've tried the download three times. It reports that installation was successful, but when I use Firefox I still get only an option to download the .pdf; I still can't read it within the browser. This fix WAS for Firefox 5.0, right?

  • How do I check for virus or malware on mac osx 10.5.8 safari ?

    How do I check my mac osx 10.5.8 safari leopard for virus or malware?

    Hello,
    ClamXAV, free Virus scanner...
    http://www.clamxav.com/
    Free Sophos...
    http://www.sophos.com/products/enterprise/endpoint/security-and-control/mac/
    Little Snitch, stops/alerts outgoing stuff...
    http://www.obdev.at/products/littlesnitch/index.html

  • Request help for purchasing HD webcams using iMac, OSX &Lion

    I am requesting help for purchasing a HD webcam using iMac, OSX &Lion.  Any suggestions would help.  The following is what I've done so far...
    I purchased Logitech's HD C910 webcam. It was a mess in requards to freezing up, no zoom and most of all no adjustments in: contrast, hue, color, etc. You're stuck just like a car with no engine or wheels who wants that.  The other Logitech products i.e. Pro 9000 is being discontinued with no software updates in the future  and the same with the other products. Most of the other manufactures do not provide software that is really compatible provideing true HD with full features. I'm willing to spend around $199,00 or so.  Any suggestions?

    Well I found my own answer to the webcam concern that I had ....I bought the Logitech C-910...Yes, I know the Logitech states their software is not compatible with OS X ...That's OK, I only use the basics supplied by Logitech to open the cam...Logitech does supply HD settings which are useful.  I like the wide angle which is there to play around. Then I use a software program called "Webcams Settings" found at Apple's App Store. There is a small charge for this download but more than worth it to have a fully functioning system.  The best way to get there is obliviously via your "Dock." Click on the icon and type in "Webcam Settings" in the top right portion of the page and presto....you have all the goodies to play like a professional. i.e.:  zoom, pan, tilt, aperture. etc. of course your webcam camera(s) must have the capability to perform these options in order to use them.
      Note I have used my webcam for everything you can imagine and have a 60 foot cord (several cords linked together) to go outside (LOL) 'Just love the goodies with "Webcam Settings".  I take outstanding pics too if I do say so, please.  Funny, I rarely use my cam to Skype but knowing the option is there for me anytime I wish.  I my cam to photograph orchids and misc. even portraits and family play photos with my tripod in hand.   Just because there is a big road block in your path doesn't mean there aren't other avenues. In the corporate life it's called take a negative and make it a positive or else.......and if you have to gripe then you better have an idea on how to turn it around.  -So- I did Logitech and Apple.

  • Help for writing a Plugin

    Hi All,
    I am new to the plugin development.
    I was looking for a sample plugin which can pop a messege or dialoag box while saving or opening
    Can anyone help me by sending a sample plugin code so that i can know the flow what a plugin does.
    my e-mail id : [email protected]
    Thanks
    Srinivas

    Thank you Mr Ian
    I am able to start the plugin through the SDK
    I have taken the WriteFishPrice sample from the SDK
    the plugin works
    but the values in the dropdown are hard coded in .fr file
    is there any way where i can send the parameters to .fr file to add more items and not defining many list items in the WFPID.h
    I might have confused you. let me clear the topic
    in the example the Declaring of the combo box (dropdownlist) is in WFPID.h,
    DECLARE_PMID(kWidgetIDSpace, kWFPDropDownListWidgetID, kWFPPrefix + 2)
    and in the example they have defined 4 dropdownitems
    #define kWFPDropDownItem_1Key kWFPStringPrefix "kWFPDropDownItem_1Key"
    #define kWFPDropDownItem_2Key kWFPStringPrefix "kWFPDropDownItem_2Key"
    #define kWFPDropDownItem_3Key kWFPStringPrefix "kWFPDropDownItem_3Key"
    #define kWFPDropDownItem_4Key kWFPStringPrefix "kWFPDropDownItem_4Key"
    where in the WFP_enUS.fr file they add the items to all the strings they defined
    kWFPDropDownItem_1Key, "Tuna",
    kWFPDropDownItem_2Key, "Salmon",
    kWFPDropDownItem_3Key, "Bonito",
    kWFPDropDownItem_4Key, "Yellowtail",
    Is there any way that instead of defining 4 dropdownitem keys i define 1 and make as a collection of items and send the parameter to the .fr file?
    Please guide me
    Thank you
    -Srinivas

  • Tethering help for cellphone ISP access on Macbook/OSX 10.4.11

    Hi, I am running into information-overload on this and sorry if not in the
    appropriate forum but...
    I am a broadcaster and when traveling need to have ISP access from my Macbook to upload short voice tracks to stations/clients. In the past I've just relied on wi-fi where a hardwire connection wasnt available but would ideally like to be able to connect using a cell/smartphone in the event i can't get a wi-fi hookup.
    Is there a primary information source here or anywhere - about the logistics of doing this...My Sprint plan gives me unlimited data at 30.00/month but they ask double that to get the 'laptop connect' card - I prefer to go the tethering route instead as i really don't see myself needing to do this THAT often to justify the huge cost boost.
    How simple is it do get connectivity with a smartphone such as the HTP TouchPro 2 (Windows Mobile) - or am i going to have problems with interfacing a non-Mac device...? I get conflicting reports...some say the WinMo stuff is buggy and doesn't easily 'talk' to Mac OS laptops. Would i need to go so far as switching providers and going to say, an IPhone for this....or otherwise is there a different OS - such as Blackberry - that is known to be able to tether okay with Mac OSX... Sorry if my questions are all over the place but i have no one readily available to give me expert consultation on this and am just trying to find the simplest route to accomplish this reliably in the near future.
    My old Sanyo MM9000 phone will not tether with any of my Macs so i know i'll likely at least need to upgrade to a newer phone -which is fine.
    Thanks very much for any thoughts, model suggestions et. al. Really appreciate it!
    Mike

    Hi Mike, I've never even touched a cell phone, but as far as your problem, might take a look at this...
    http://www.datajack.com/
    http://www.howardforums.com/showthread.php/1576490-anyone-seen-this-quot-the-dat ajack-quot-service?pp=15
    Either that or avail yourself to the many free Wifi spots around...
    http://www.wi-fihotspotlist.com/
    http://www.openwifispots.com/

  • Wireless printer sharing- Verizon only has automated help-or any help- for windows. i have a mac.

    i have a new Brother 490CW which instructs me to "push the WiFi protected set up button" on the router. the Verizon supplied router Ultraline series only has on/off power button.  Verizon's help is abysmal.  The automated response sends me back the the help for windows.  can anyone tell me how to set up this printer as wireless?
    thanks.

    Pretty good directions here : http://www.brother-usa.com/support/wireless/Step1.​aspx?ProductID=MFC-490CW
    You'll find the SSID (ESSID) + WEP key on a sticker on the Verizon-supplied router.
    Kevin
    Verizon Telecom
    Fiber Solution Center
    Notice: Content posted by Verizon employees is meant to be informational and does not supercede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or Plan.

  • Help for first install of macpro with osx server

    Hello to all
    it's my first message on this forum, i'm seeking for help because i'm kind of new with Mac systems.
    I'm gonna explain the problem
    So we are going to buy a mac pro and put 4*2To inside with raid 5 and osx server.
    The problem is that the cost of installation of sotwre and deployement etc is really expensive.
    I need to create a vpn too, this mac pro is gonna be a storage and multiple users must have acces to it. In fact this mac will be connected on the router and users will acces to it on local network then later we're gonna move from our base so the mac will be at the home of one of us and other users will have to access it from outside.
    I was thinking avoyding cost of install by doing it myself.
    So i've thinked that the best way to do it is by asking help to the community.
    Is anyone can help me with this or tell me where i can find tutorials to do it?
    I have skills but this is hard form me. The thing is that i learn fast. But i need help.
    Maybe my post is not really clear i write as it comes to me, english is not my langage too.
    So feel free to ask me questions or informations if you need.
    In the same time i'm reading posts on the foum about this kindof installations.
    Thank u so much
    .anto.

    Dear Marcassin
    i am happy to help to your problem .
    first i would say you must read the Documentation. and you should familier with Mac Os installation System.
    in your Mac Server DVD you will find the schedule sheet . print that and plan your server first. it will really help full. then come and list down the all the requirements.
    may be you will need more services after that.
    But again again again . read that sheet and fill all the requirements. and come back or read specific captors in the Documentation.
    if you want more details about the installing sachira.herath at gmail
     certified Pro 10.6/10.5

  • What is the best file format for PC (Windows7 64bit) and Mac OSX 9.2.1?

    My external hard drive containing files from my PC (Windows 7, 64 bit), says the files are READ ONLY. I'm trying to work of files on my Macbook Pro (OSX, 10.9.2). If I have to reformat  the drive, what is the best format that will work for both systems?
    Any help will be greatly appreciated.

    The Tuxera NTFS for mac seems to have fixed the issue.
    My question now is, Will reformatting to ExFatbe better or quicker?
    Thank you to AL of you for your help! 

  • Looking For Help for porting PC utility to Mac

    Hi,
    I am looking for local Mac developer(s)who could help me to port my MXF utility (HDV M2T=>QT conversion) to Mac OS X. I need someone who is around SF Bay Area. It's a simple program however requires knowlegde of threads. (I use worker thread. simple one) Please contact me at [email protected] if you are interested.
    <Edited by Moderator>

    Why was this merely "edited by moderator"? It should be removed or moved to the appropriate forum. Wait, there is no "solicitation" forum.
    bogiesan

Maybe you are looking for

  • Help! All my apps no longer connect to the internet

    When I am logged into my user account on my macbook pro, all of my apps can no longer access the internet, safari, mail, skype etc etc I thought it was just Safari, so I deleted plist file, but it is all my apps that are not connecting. Safari gives

  • Firefox 15.0.1 Constant Crashing Windows 7 64bit

    I am running Windows 7 64bit, Firefox 15.0.1 and all my addons are up to date. I have two extensions installed - AVG Do Not Track and Adblock. I have eight pluggins installed and three are normally disabled - Adobe Acrobat10.1.4.38, Google Update 1.3

  • Lost images, ratings & edits in Lightroom 4.1

    Hi all, On opening Lightroom 4.1 it appears to have reverted back to how it was a few months and so I lost all of the images I was working on. On reimporting them back into Lightroom, this was performed quickly as if perhaps they were remembered, how

  • How do I resolve an incomplete download of a track

    I downloaded a CD today and one of the tracks was incomplete; just want to re-download it and how to go about it. Thanks.

  • Elements 6.0 Organizer slow loading

    After opening Elements 6.0 editor, I then open organizer but it loads slowly (5 min) because it loads every photo in catalogue not just those in a selected folder.  Is there any way to speed up opening of the organizer?  Thanks for any help.