LR 2.1 Plugin Manager not saving my plugins

I use Jeffrey friedl's smugmug plug in for exporting. never had a problem in the past with it. Now light room plug in manager is not saving the plugin. I have to add it into lr every time I go to use it. I close out of LR and then its gone. I have tried other plug ins and the same happens so its not specific to jefferys. I have tried saving the plug ins in different folders with no sucess.. Anyone have this happen?

I opened LR and opened the plugin manager.. hit add and it points to my library folder. So I downloaded, unzipped and installed the plugin at that location. The plugin installed without a hotch and exported to my smugmug album online. I closed out, reopened and not there.. again! I have no idea why it is loosing not only this plugin, but any plugin I put into LR2. Very frustrating to say the least.. and it worked fine before I upgraded.

Similar Messages

  • Plugin.xml not found on plugin.zip

    I was registering a plugin using the plugin utility and it threw this exception:
    plugin.xml not found in plugin zip
    However my plugin.xml IS there, my jar file is in the JavaTasks folder also. Has someone run into that as well?
    Thanks

    Hi,
    I think you first placed jar and plugin.xml in a folder and then zipped it.
    Instead, select your jar file and plugin.xml and then zip them together.
    Hope this helps. :)

  • Does Mozilla's Plugin Checker not read Safari plugins correctly? My Plugins are all up to date and it still says "update."

    Shockwave Flash
    Shockwave Flash 10.3 r181 — from file “Flash Player.plugin”.
    Shockwave for Director
    Adobe Shockwave for Director Netscape plug-in, version 11.6.0 — from file “DirectorShockwave.plugin”.
    I'm wondering if it is how Safari does not list the entire version in it's plugin page, such as 11.6.0 instead of 11.6.0.r.626.
    Also I have Looked in the plugins file for Safari and turned on the extension to show invisible extensions and it shows this:
    DirectorShockwave.plugin 11.6.0r626
    Flash Player.plugin 10.3 r181.34
    I have also uninstalled and reinstalled just to see if that was the problem.

    When you run the plugin check, you should get a column with the full version number (here's Flash, for example, in the attached screen shot).
    As for finding Safari plugins, I don't know how it works on MacOS; on Windows, Firefox will scan certain locations outside of its folders to pick up plugins that are not Firefox-specific. The plugin checker then will use the information that Firefox has gathered.

  • Documents/attachments not saved in workcenter incident management?!

    Hi all!
    We patched our system to SPS 20.
    While testing the designed functionality of the incident management within the work centers I got an problem with saving attachements.
    I can choose an attachement/document (.doc; .xls; .pdf; etc.) and assign it to the ticket.
    If I save the ticket I get the feedback "saved correctly" but the attachment disappears and is not existing any
    more in the ticket.
    This only happens within the work center. In SAP GUI the attachements can be assigned and saved correctly.
    We checked and implemented the latest notes for SPS 20. Also 1269928 and 1080131.
    Does anyone have had a problem like this before?
    Thanks for you help in advance.
    Regards,
    Alex

    Hi Alex,
    you might check SAP Note [1401196|https://service.sap.com/sap/support/notes/1401196] "Work Centers: attachment not saved in Incident Management" to solve the problem.
    Best regards,
      Andreas

  • Plug-in manager not rearranging plugins as requested

    Hello. I've moved IKMultimedia's ARC2 and TR-Meter to a new folder in the plugin manager called "AAA" and hit "done". They show up in the plug-in manager as expected. When I go to the slot to insert them, the TRMeter is in the "AAA" folder but the ARC2 in not. AND when i navigate to the IKMultimedia folder in the list the TRMeter is still visible but the ARC@ is not there. Its nowhere.

    OK, figured it out. I was looking for the ARC2, which is a stereo only plug-in, on an insert on a mono track. When I changed it to stereo, the ARC2 showed up. I guess the smart new plug-in manager is smarter than me......

  • Firefox hangs on plugin loading, not marked by OS as unresponsive, must be killed with task manager, works fine with other Windows 7 users on this computer.

    I'm not sure what plugin is the problem but when the plugin_container process loads, firefox hangs and becomes unresponsive. Windows 7 doesn't recognize it as such, however, and I have to kill the process with TaskMgr.
    The problem does NOT seem to be the plugin container itself because when I add the MOZ_DISABLE_OOP_PLUGINS environment variable to windows the problem still happens, just internalized to the firefox process.
    Since I remote into the box a lot I have other users, all of which have no problems with firefox. It's only localized to the one user.

    My suspicion is Flash, since that probably is the most commonly used plugin. Try disabling the protected mode feature, since that is currently being debugged. See this support article from Adobe under the heading "Last Resort": [http://forums.adobe.com/message/4468493#TemporaryWorkaround Adobe Forums: How do I troubleshoot Flash Player's protected mode for Firefox?]

  • Image is not saved in jpeg/bmp file but ok with png

    Hi i am unable to save the image in disk in jpeg format.
    Here is the code.
    public void saveImage(){
    //if no filechooser is there means no image file opened.
            if(fileChooser==null){
                if(errorWindow==null)
                    errorWindow=new ErrorWindow(XXX.getPrimaryStage());
                errorWindow.showErrorWindow("There is no image to save !!\n");
            else{
                fileChooser.setTitle("Save The Image");
                File saveFile=fileChooser.showSaveDialog(XXX.getPrimaryStage());
                if(saveFile!=null){
                    System.out.println("saveFile path= "+saveFile);
                    //get the extension of output image to be saved.
                    //XXX: is the main class name(say)
                    outExtension=*XXX*.getImageExtension(saveFile);
                    //if user does not give extension: set default extension as jpg
                    if(outExtension.equalsIgnoreCase(saveFile.getName())){
                        outExtension="jpg";                   
                        String newPath=(saveFile.toString())+".jpg";
                        saveFile=new File(newPath);                   
                    Task task = new Task<Void>() {
                        @Override
                        public Void call() {
                            Platform.runLater(
                                    new Runnable() {
                                        public void run() {
                                            try {
                                                //The image is inside ImageView->inside ScrollPane-> inside TabPane.
                                                Image curImage=XXX.getCurrentImage();
                                                int width=(int)curImage.getWidth();
                                                int height=(int)curImage.getHeight();                              
                                                System.out.println("cur image width= "+width+" ht= "+height);
                                                bufferedImage=new BufferedImage(width, height,BufferedImage.TYPE_INT_ARGB );
                                                //set the current image to awt Buffered Image
                                                SwingFXUtils.fromFXImage(curImage, bufferedImage);
                                                    imageTabPane=xxx.getImageTabPane();
                                                    Tab tab=imageTabPane.getSelectionModel().getSelectedItem();                                    
                                                    TabPane childTabPane=(TabPane)tab.getContent();
                                                    ScrollPane sp=(ScrollPane)childTabPane.getSelectionModel().getSelectedItem().getContent();
                                                    final ImageView imageView=(ImageView)sp.getContent();
                                                    WritableImage wim = new WritableImage(width,height);
                                                    imageView.snapshot(null, wim);
                                                    System.out.println(" snapShot width= "+wim.getWidth()+" ht="+wim.getHeight());                             
                                                    *ImageIO.write(SwingFXUtils.fromFXImage(wim,null), outExtension, saveFile);*
                                                       //<------ its not working  for png,jpeg,bmp,gif                                          
                                                    // the below lines are working only for png and gif
                                                    OutputStream out = new FileOutputStream(saveFile);                                                
                                                    ImageIO.write((RenderedImage) bufferedImage, outExtension, out);
                                                    out.flush();
                                            } catch (Exception ex) {
                                                Logger.getLogger(FileMenuController.class.getName()).log(Level.SEVERE, null, ex);
                                                //ex.printStackTrace();
                                            System.out.println("finished");
                            return null;
                    Thread th = new Thread(task);
                    th.start();
                }else{
                    System.out.println("File is not saved");
        }//saveImageNote: The above code is executed in ubuntu(10.04) using Netbeans 7.2(Javafx(2.2), java(1.7.0_11).
    When i run(from terminal) separately in a new class with an image in an Imageview( inside a Vbox) and take the snapshot
    of the imageview and write into the file using ImageIO.write(SwingFXUtils.fromFXImage(wim,null), outExtension, saveFile);
    with any extension (jpeg,png etc) it is working fine.
    Please help me.
    Any small hint is also helpful.Please feel free to comment or give suggestion.
    Edited by: 963038 on Feb 17, 2013 7:14 PM

    When i omit the line OutputStream out = new FileOutputStream(saveFile);
    and write only
    ImageIO.write((RenderedImage) bufferedImage, outExtension,saveFile);
    //out.flush();
    then saving the image even in "png" also fails.
    The following is the error code:
    Note : FileMenuController is my file where the saveImage() is wrtten.
    javax.imageio.IIOException: I/O error writing PNG file!
    finished
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1168)
         at javax.imageio.ImageWriter.write(ImageWriter.java:615)
         at javax.imageio.ImageIO.doWrite(ImageIO.java:1612)
         at javax.imageio.ImageIO.write(ImageIO.java:1536)
         at *newciptk.controls.menu.file.FileMenuController$1$1.run(FileMenuController.java:205)*
         at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:173)
         at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:76)
         at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
         at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.io.IOException: Operation not supported
         at java.io.RandomAccessFile.writeBytes(Native Method)
         at java.io.RandomAccessFile.write(RandomAccessFile.java:499)
         at javax.imageio.stream.FileImageOutputStream.write(FileImageOutputStream.java:124)
         at javax.imageio.stream.ImageOutputStreamImpl.writeInt(ImageOutputStreamImpl.java:91)
         at com.sun.imageio.plugins.png.ChunkStream.finish(PNGImageWriter.java:136)
         at com.sun.imageio.plugins.png.PNGImageWriter.write_IHDR(PNGImageWriter.java:401)
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1135)
         ... 9 more
    javax.imageio.IIOException: I/O error writing PNG file!
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1168)
         at javax.imageio.ImageWriter.write(ImageWriter.java:615)
         at javax.imageio.ImageIO.doWrite(ImageIO.java:1612)
         at javax.imageio.ImageIO.write(ImageIO.java:1536)
         at newciptk.controls.menu.file.FileMenuController$1$1.run(FileMenuController.java:205)
         at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:173)
         at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:76)
         at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
         at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.io.IOException: Operation not supported
         at java.io.RandomAccessFile.writeBytes(Native Method)
         at java.io.RandomAccessFile.write(RandomAccessFile.java:499)
         at javax.imageio.stream.FileImageOutputStream.write(FileImageOutputStream.java:124)
         at javax.imageio.stream.ImageOutputStreamImpl.writeInt(ImageOutputStreamImpl.java:91)
         at com.sun.imageio.plugins.png.ChunkStream.finish(PNGImageWriter.java:136)
         at com.sun.imageio.plugins.png.PNGImageWriter.write_IHDR(PNGImageWriter.java:401)
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1135)
         ... 9 more

  • Log On to null  and  Plugin Manager error

    After installing BOE XI 3.1 Update and SAP Integration Kit 3.1, when attempting to log on to InfoView get a Log On to null showing up in the upper corner and when attempting to use SAP Authentication get:
    Account information not recognized: Plugin Manager error: Unable to locate the requested plugin secSAPR3 on the server. (FWB 00006)
    SAP Authentication doesn't show up in CMC either. Any ideas? Already checked SAP Java Connector.

    Here is the "README":
    wdeploy: Business Objects Deployment tool
    Objective: To deploy Business Objects web applications.
    Location of online deployment guides:
    BusinessObjects Enterprise XI 3.1 Web Application Deployment Guide for Windows
    BusinessObjects Enterprise XI 3.1 Web Application Deployment Guide for UNIX
    1. Go to http://help.sap.com
    2. Click on tab "Business Objects"
    Please note that you will need your SAP Service Marketplace USER ID and PASSWORD to access this material.
    If you do not have the necessary credentials contact your SAP support center.

  • Downloads of updates not saving, no prompts or icons in the Application folder-how do I ensure updates are saved?

    I am following the instructions to download v 6 but receive no prompt to move the Firefox icon to the applications folder. I have done that anyway, but it's not saving-the latest version is July 11. I then get reminders to update all the time-what am I doing wrong?
    I am working on a Mac laptop

    A lot of people panic when they see Photoshop displaying differently from other software. But that's normal and expected. Here's what happens:
    1. Photoshop is color managed and performs a document profile > monitor profile conversion when it displays. So whatever the document profile is, Photoshop will display correctly - unless you have CM policies set to "off" (...!)
    2. Other applications, including many web browsers, aren't color managed and will just send the file numbers directly to the display. This distinction is extremely important, because there will be a slight difference. Again, that's normal. Photoshop is right and the other apps are wrong.
    3. Without color management, it all hangs on how your monitor displays color. Most monitors are so close to sRGB that any sRGB file will display roughly correctly. This is why sRGB is the de facto web standard: it can live without color management. And that's why you should always convert web material to sRGB. Yes, that's the Edit > Convert to Profile option. You can also use Save For Web to do this if you check the appropriate boxes.

  • 'Error loading plugin: Plugin file not found' message on ONLY 5 sites, but all others OK.  Help, please!

    Hi Again!
    I posted this problem here before, but since I really need to access the sites that receive this error message in less than a month, I had to re-post; hopefully someone who didn't see it before will see it & have a solution for me.
    Here are the details:  I'm running windows 8.1 & I use Firefox 33.1.1, Pale Moon 25.1.0 or Opera 26.0 as my browsers, (I have IE installed & up-to-date, but I never use it).  I followed the 10-point checklist on Adobe & everything was done, except for "uncheck Hardware Acceleration" in Flash 'Settings'; I tried to uncheck it on this site, where it's indicated, as well as in my 4 browsers when I'm doing something that uses Flash, but no matter how hard I try, I can't 'uncheck' the check mark in that tiny box!  Since this error problem only affects 5 web sites, & I can watch streaming media on all other sites, I don't think it's an issue. 
    Here's how this problem began:  I was watching a live, streaming nest-cam on 5/09/14 around 11:00AM, (yes, I DO know the exact time & date, because it happened so suddenly while I was watching this website that I'd been watching since the end of February, 2014), when my screen went black.  I thought it was probably an Adobe Crash, but when the usual Crash Report window didn't show up, I just closed Firefox & reopened it, expecting to resume watching the nest-cam.  When I went back to the site, I got the black screen with the "Error loading plugin: Plugin file not found" message.  The chat portion on the site still works, though. I know there are other sites with this nest-cam feed, so I started trying them, but it took several tries for me to find one that didn't get the error message! I posted this problem on "Windows BBS" forum, & someone else posted that the same thing happened to them AND on the same sites!  They didn't have a solution, either.  I cleared my cache, rebooted my PC & even did a System Restore, but whatever happened in that brief second made using ONLY 5 sites impossible.  Here are the sites that receive the error message:
    http://pixcontroller.com/eagles, (but I CAN go to http://pixcontroller.com, but there isn't any streaming media)
    http://cbslocal.com/eagles
    http://westmorelandconservancy.org/BlueBirdwebcam-1.htm
    http://wildearth.tv/cam/pittsburgh-bald-eagles, (I get the error message on ALL cams on this site)
    http://aviary.org/BE-NestCam1 (I get the error message on ALL cams on this site)
    Now if any videos from the 5 websites above are uploaded to YouTube, I can watch them perfectly...no error message if I watch the videos elsewhere.  Luckily, I found Ustream, & they have most of the nest cams I watch, but I need to fix this issue, because it's nearing nesting time!  I'm an amateur nest-watcher & it's vital that I have access to these 5 sites, so if anyone knows how to fix this, PLEASE tell me!
    Thanks for taking the time to read my post.
    All suggestions/solutions are gratefully accepted.
    Thanks in advance for your help!
    DogPal 

    File Not Found Error in Welcome Screen
    07-Nov-2013 10:25
    Tags: #dreamweaver_cs6_update
    Help please!
    Live preview also not working.
    I have exactly the exact problem described below but do not have a folder with the same name as the volume created under the volume. Please can someone help - I've tried everything. This problem only happened when I upgraded to Dreaweaver CC!
    "On launching Dreamweaver on your Macintosh if your Welcome Screen is not loading and if you see a "File not found" error, please check if you have a folder with the same name as your volume created under the volume. For more info on this please go through the attached pdf document. Other dialogs/panels in dreamweaver that will be blank due to this issue are Jquery Swatches panel, Adobe Edge Webfonts tab in Manage Fonts dialog,W3c Error Info dialog, Externalise Javascript dialog and svn revert dialog. After following the changes mentioned in the attached document please check all the affected dialogs/panels to confirm everything is working as expected."
    Thanks,
    Martin Bond
    [personal information removed by moderator]

  • Flash plugin will not install even after installing the latest version Flash

    When I go to a site that contains Flash content, it says "A plugin is needed to display this content" and there is a link to install the plugin. Additionally, there is a message at the top of the page that says "Additional plugins are required to display all the media on this page" with an option to "Install Missing Plugins." I click the link to install the missing plugin, and a dialog box pops up that says "The following plugins are available:" and lists "Adobe Flash Player 11.0.1.152" with a check box next to it. The box is checked, and I click "Next" to install. It goes through the motions, and then tells me that "No plugins were installed." There is a link to manually install the plugin, which takes me to Adobe's Flash download page. I unchecked the box to pair McAfee Security with the download, and downloaded the latest version of Flash (to be honest, I've actually downloaded this exact same version about 10 times today). The dialog box pops up, I save the file, and once it has downloaded, I open the containing folder (my downloads folder). I then close all programs (including Firefox) except for the Windows Explorer folder that I'm going to run the installer from. I double-click on the Flash installer to run the installation. The installation process completes, the installer tells me that the download is successful, and my browser opens back up with an "Installation Successful" message from the Adobe website. Yay! My installation is successful... Orrrrrr not. Navigating back to the page with the Flash media - still have a message saying I need the plugin. Attempt to download plugin again...no dice.
    THEN, I go to "Manage my add-ons" thinking maybe I need to enable the plugin. There is no Flash (or Shockwave) plugin listed on any of the menus - it's like it doesn't exist.
    I downloaded the latest version of Java because I read somewhere that Flash requires Java to work; I installed the "Add-On Compatibility Reporter" so I could force Java to be enabled. It made no difference whatsoever, as best I can tell.
    I also went to Adobe's page where you can see what version of Flash you're running (http://www.adobe.com/software/flash/about/) and it doesn't even show that I have Flash installed. In Internet Explorer, it does show that I have Flash installed, but it's the previous version (but that is likely due to the fact that I downloaded Flash from Mozilla, not IE, and they use different modes in each browser - so an update that you download from one browser does not necessarily apply to the other browser).
    So in summary: I do not know what on earth is wrong here, but I am about as frustrated as I have ever been in my life. I don't know why the Adobe Flash installation is saying it is successful (is it lying to me??), but there is no plugin showing up in my Manage Add-Ons menu, and I have googled every possible combination of the content in this post and have not found a solution that works yet.

    NOTE: Just discovered that Adobe is making a bigger mess than any previously.
    They now have a 32-bit uninstaller for Flash '''''AND''''' a separate 64-bit uninstaller for Flash. You will need the 64-bit uninstaller for what you had installed above.
    *32-bit uninstaller: http://download.macromedia.com/pub/flashplayer/current/uninstall_flash_player_32bit.exe
    *64-bit uninstaller: download.macromedia.com/pub/flashplayer/current/uninstall_flash_player_64bit.exe

  • ReportViewer Parameter area state not saved without to refresh in ie

    Hi from Germany,
    we have created a master detail report with 3 levels and some parameters defined. Connected are these 3 reports by drill throughs with "go to report"-actions. We use the report manager for the navigation to the reports.
    For a faster go back from a detail report to its higher level report again we added links in the header with go to url actions and the expression "javascript:history.go(-1)").
    It works great but in the ie (version 10 and 11, too) there is a not wanted behavior after the user has updated the parameter values and clicked on "Show report". The report is rendered now with the changed parameters fine BUT the parameter area
    is still opened.
        First question: Is there a way to collapse the parameter area also with the click on "Show report"-Button?
    Now users close often the parameter section and drill through to the next level report. When you go from there back (history.go(-1) or also with the browsers back-button) the report before opens but again with an displayed parameter area. It forgots that users
    have collapsed it before.
        2nd question: It seems that the last state with the closed parameter area was not saved (in the session?). Can someone explain me why and if there is a way to solve it?
    In firefox it works like we wanted. There is the parameter area collapsed automaticly after go back in history. It seems it is realy a bug in the ie.
    I have found out a workaround:
    when you close the parameter area in ie and click after it on the refresh-button on the reportviewer-toolbar then the collapsed state is registered and go back to this report opens it right with collapsed parameters. Also a refresh by the browser-button opens
    the report with collapsed parameters.
    It seems for me it is a bug, isn't it?
    Kind regards
    René
    René

    Hi René,
    If I understand correctly, you want to hide the parameter area when the report render in report server. I have create a simple report to test, however, I cannot reproduce the same issue.
    Based on my test, it has two situation when we go to subreport the parameter area cannot hide.
    If we are use “Go to URL” action jump to the subreport, it will not hide the parameter area.
    We have not pass the parameter value to the subreport, it will display the parameter area for us to choose parameter value.
    If you are not above situation, we can use “Go to URL”
    action to work around it. To add parameter (rc:Parameters, rc:Toolbar) in report URL to control the parameter area visibility. Please refer to the following URL:
    Http://ServerName/ReportServer/Pages/ReportViewer.aspx? %2fReportFolder%2fReportName&rs:Command=Render&rc:Parameters=Collapsed
    Reference:
    http://blogs.msdn.com/b/jgalla/archive/2009/03/23/hiding-parameter-area-when-viewing-reports.aspx?Redirected=true
    If there are any misunderstanding, please elaborate the issue for further investigation.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • My plugins are not showing up in PS CC

    Just installed PS CC ( both 32 and 64 bit version on Windows 7), looks good but not one of my plugins are showing up.
    I checked : Preferences-Plug-ins and it is showing  login dialog to Photoshop Server.
    I am not familiar with CC so not sure what it means.
    Is there a way to reset this dialog that it will search for plugins in a plugin folder.
    BTW, no plugins show up in the CC plugins folder in Windows explorer either, except for the NIK plugin I reinstalled, but even that one doesn't show up in the dropdown menu in PS CC.
    What is the solution ?
    thanks
    Lazlo

    Thanks Dennis
    I have managed to get them going, at least most of them in CC 32 bit version.
    No luck with 64, but I do not care about that.
    I have moved the content of the plugins folder from CS5 into CC , reinstalled  NIK ( again) and they all seems to be running.
    Still, I do not know what Photoshop Server is in the Plugin Preferences.
    I used to be able just to select the additional plugins folder in their and that would work, but here I cannot change anything.
    It is a most weird dialog, do you have any idea how it works ?
    thanks
    Lazlo

  • Error while trying to register the SMP3.0 Application on Management Cockpit Using Logon Plugin

    Hi,
    I am working on SMP 3.0 SP 02 ->cordova 3.3.1 - 0.3.1, i am able to ping the Odata endpoint in Management Cockpit successfully. I followed the steps which are present in the getting started with kapsel - 2 (use of logon plug in).  i am able to register to SMP 3.0  server by using register.html on the machine that SMP server is running but not from other machine using port 8083. Also if i try to use registration2.html which uses login plugin am getting the errors. Please help me out with this error
    {"errorCode":"80003","errorMessage":"Unable to reach Backend URL","errorDomain":"MAFLogonCoreErrorDomain"} at file:///android_asset/www/plugins/com.sap.mp.cordova.plugins.logon/www/common/modules/Utils.js:4
    Thanks
    Varsha

    <<I am able to register to SMP 3.0  server by using register.html on the machine that SMP server is running but not from other machine using port 8083.
    As mentioned above, by default port 8083 is used only by the management cockpit.  Try using the HTTP port which by default is 8080. 
    The ports are configured in this file.
    C:\SAP\MobilePlatform3\Server\config_master\org.eclipse.gemini.web.tomcat\default-server.xml
    If the registration fails one quick test to verify basic connectivity to the SMP 3.0 server from the device or emulator is to open the following URL from a browser on the device or emulator.
    http://SMP_Server_IP_Address:8080/sapui5/
    If the above URL opens correctly in a browser on the machine that the SMP server is running on but not from the browser on a mobile device or emulator there is likely something such as a firewall preventing communication over port 8080.
    Here is a link to the Getting Started With Hybrid or Kapsel for SMP 3.0 document.
    Getting Started with Kapsel - Part 1
    Regards,
    Dan van Leeuwen

  • In Firefox 4, how do I change the order of plugins on the Add-ons Plugins manager page (I turn Shockwave Flash on only to see videos - having it off prevents screen freezing - and so I want it stay at the top of the list)?

    In Firefox 4, how do I change the order of plugins on the Add-ons Plugins manager page? I turn Shockwave Flash on only when I want to watch a video and then turn it off to prevent screen freezing, and so I want it to PUT it and KEEP it at the top of the list.

    Hit Ctrl+0 (That's a zero, by the way). I'm not sure if it will work, but hey, that's the first thing I would try.

Maybe you are looking for