Adobe DPS Publish button

Can someone tell the reason why the publish button appears disabled ( letters color gray)?

One possibiliity is that a publishing attempt failed. In the Organizer, choose Publish Requests from the drop-down menu, and look for the folio with the dimmed Publish button. If you can click Dismiss, do so, and you should be able to publish the folio again.

Similar Messages

  • Adobe Muse - "Publish" Button Not Working

    I am trying to upload a website from Adobe Muse to Business Catalyst. Whenever I click "Publish" the window pops up and just says "Signing in to adobe business catalyst..." and never actually advances past that. It just keeps loading, and never gives me the chance to actually publish my site. I've waited and waited, trying several times, hoping it would eventually work, and it never does. What can be done about this? I need to this to work, as the website needs to be published very soon, Any help would be appreciated!

    The Internet Options set in Internet Explorer in some cases (like this one) control the settings for all applications on your computer, regardless of whether or not you've selected IE as your default browser.
    The symptoms you describe sound like something is interferring with Muse contacting the BC servers. My first idea was related to the fact BC increased the minimum security level supported a few months back, thus my question about what levels of SSL/TLS you have enabled. Your settings are fine.
    Assuming you can visit your site in the browser without any problem and can login as admin to your site (add "/admin" to the URL for your site to login to BC directly in the browser) that would make it unlikely there's a corporate/enterprise-level firewall or proxy server interferring. Though if Publish works from your home network and not from work, that would point back to a corporate firewall or proxy issue.
    Do you have Norton or other anti-virus/anti-malware software installed that may be configured to prevent applications other than your browser from accessing the internet?

  • Publish two publications from different customers with the same Adobe DPS ID

    Hello:
    I have a publication made on InDesign and I have uploaded it to the Adobe Server with my Adobe DPS account. For the first publication, I published the publication with the Folio Producer on the digitalpublishing portal, and then I created the app using the Adobe Viewer Builder. Then, I tried it locally on my iPad. It was working fine and I could see my publication.
    Now, I do need to upload a new publication for a different customer with the same Adobe DPS account and I need to create a different app with the new customer look and feel but I don't want to show the first publication in this new app, only the last one.
    In a nushell, I need to keep separated two publications (or more) when they are published if I'm using the same DPS Account... Is that possible?
    Saludos Cordiales,

    Hi Leo,
    Every title should have its own publication AdobeID (a title can contain multiple editions / folios).
    So you have to request for every title you want to work on a provisioned account with Adobe. Make sure that you have setup the corresponding emailaddress / emailalias. For example [email protected] and [email protected]
    After the accounts have been provisioned you can:
    * upload and organize multiple folios for that publication in the corresponding Folio Producer
    * Create a viewer with your Viewer Builder and on the first page supply the AdobeID for the give publication
    You can request new publication accounts any time and these are included with your DPS subscription.
    When you first account got provisioned, you should have received an excel document to request provisioning for the various publications. In this document you can list the accounts you want to use for publications, individual users of the system and viewer builder access.
    With kind regards,
    Klaasjan Tukker
    Adobe Systems Benelux

  • ANN: MEI Portico Version 2.0 for Adobe Digital Publishing Suite Now Available

    Jenkintown, PA (November 28, 2012) — Managing Editor Inc. (MEI) today announced MEI Portico™ version 2.0, the latest in the premier Adobe® development partner's lineup of solutions for publishers. The new version of MEI's custom storefront software for tablets was built to empower Adobe Digital Publishing Suite™ customers and is now available for purchase.
    MEI Portico lets publishers create custom branded UIs for their mobile and tablet apps on Apple, Google Android, and Amazon Kindle Fire platforms. Custom storefronts enable multiple gateways for showcasing user-targeted tablet content within the app. App administrators can enable search capabilities and organize their DPS folios as they see fit, so that navigation is easy and readers can effortlessly find the issues they want or are entitled to. Portico allows publishers to override in-app purchases for authenticated subscribers, and enables restricted distribution capabilities for corporate and educational institutions using Adobe DPS as part of their digital communications strategy.                       
    MEI Portico 2.0 introduces custom canvases to the original Portico toolbox. Rather than having to rely on templates for their storefront’s landing view, designers can now create their own HTML designs to incorporate into an MEI Portico-driven interface. Using web design skills, designers have full control over every aspect of their app’s look and feel — from storefront layout to images, login pages to RSS or social media feeds, subscriber views to featured folios. And because administrators can launch canvases at a moment’s notice, implementing new features into your app can be completed without a time consuming app update.
    "Custom canvases mean that DPS apps can take advantage of Portico’s robust feature set without compromising their brand’s look and feel," said Brett Kizner, MEI's director of new product marketing. "Portico 2.0 has delivered greater flexibility with the ability for our customers to design their own app experience on their app landing page."
    To see a sample of MEI Portico 2.0 in action, visit Adweek's new app at: https://itunes.apple.com/us/app/adweek-magazine/id570229326?mt=8
    About MEI Portico
    MEI Portico works with the Enterprise edition of the Adobe Digital Publishing Suite to build custom storefronts for your digital brand. For publishers who want to enhance their tablet output with functionality beyond the standard template, MEI’s creative services team can help develop specialized Porticos with custom features. For more details and purchasing information, contact an MEI sales representative at 215-886-5662 or [email protected]. To learn more about Portico, visit www.maned.com/portico.
    About MEI
    Managing Editor Inc., an Adobe premier development partner, specializes in quality, proven publishing solutions. MEI provides tools that manage content for any output medium — print, online, tablets such as the iPad, mobile devices such as the iPhone and other digital formats. Visit www.maned.com for more information. Nervous Pixel is the registered trademark of Managing Editor Inc. All rights reserved.

    Hi Tom,  The custom button functionality of DPS is restricted to DPS Enterprise. I'd love to discuss your needs to see if there is a way for us to assist you. I'll PM you my contact info.  Best, Brett

  • Adobe DPS HTML/Javascript/CSS Web Console: why it is so difficult?

    Why?
    This is the type of question that i can not understand. Is it that difficult to make? Maybe an airpor to Google Chrome Adobe Edge Inspect? I have many files well written with CoffeeScript, that uses RequireJS, that is impossibile to forget a semicolon etc. that works like a charm on Google Chrome (desktop, AND Chrome iPad, AND Chrome Android). That works like a charm in the native iPad/iPhone web browser and in the native Android browser. But it didnt in Adobe DPS. And guess what: i cant find why it doesnt, because Adobe doesnt have a simple Web Console inside DPS / InDesign.
    Is there any news on this field? Because using Adobe Edge Inspect is not a option: my code works inside EI because im browsing the page with my desktop browser. I want to know what is going on inside DPS.
    And my code it is not "soooo" advanced. It is just a simple button with "on touchstart" event listener. Am i doing some stupid error? Fine! Just help me find out what it is, so i can fix it. Because in every single browser i tried, it works. But inside DPS. A sample code? Sure, here you go:
    [Javascript Code]
    Main.prototype.clicks = function() {
            var _this = this;
            $('#btnA').on('touchstart', function(evt) {
              evt.preventDefault();
              _this.buy('productA');
              return false;
            $('#btnB').on('touchstart', function() {
              return _this.buy('productB');
            return $('#clear_data').on('touchstart', function() {
              return _this.clearData();
    [/Javascript Code]
    The Javascript above is being generated by Node.JS compiling a CoffeeScript file. The buttons do work at DPS for iPad, but doesnt on Android. Maybe Android has a problem with 'touchstart'. Maybe jQuery has a problem inside Adobe DPS. But who knows? I dont have a decent web console inspector to check what is going on. Really frustrating.
    Maybe Apple and Google dont give the neccessary hooks to implement the web console? But if you can do the Inspector from the desktop to the device, why not from the device to the desktop? Am i missing something on Edge Inspect? The strange part is: the above code works well on Edge Inspect but doesnt work on Android DPS.
    Sorry if im a little angry or pissed. But this would be really great: a simple web inspector: HTML, Javascript, CSS. A way to inspect the <head> tag of the HTML, what was loaded, in what order. What script is missing, Javascript breakpoints, etc.
    Thank you.

    There is this one little widget called Safari Web Inspector, provided that you're using a Mac: https://developer.apple.com/library/safari/documentation/AppleApplications/Conceptual/Safa ri_Developer_Guide/Introduction/Introduction.html.
    Besides, referring to http://helpx.adobe.com/digital-publishing-suite/kb/create-html-articles-android-viewers.ht ml, you can give window.onappear a try when you are doing JS initialization.

  • Where is the download for Adobe Digital Publishing Suite

    Hello guys!
    I just bought adobe creative cloud yesterday and i found out about Adobe Digital Publishing Suite. I clicked on learn more because there was no download button and like there were no download buttons on the learn more page. Please provide me to a link of some sort or a way to get it!
    Kind Regards,
    BakerBoy11

    Here are a few links to get started:
    Installing DPS tools
    Getting started with DPS
    Single Edition overview

  • Sending Push Notifications with Adobe DPS

    Question.
    I'm testing out all the Adobe DPS and Apple options. And one of the things I would like to test is Push Notifications.
    I followed the iPad publishing guide to be able to get all the certificates so that's ok. Then I was looking for a way to send
    push notifications. Because Adobe DPS doesn't really have a UI environment (PLEASE correct me if I'm wrong ;-) to send push
    notifications I have to do it 'by hand'. When I tested my app on my iPad I got the "app name wants to send you push notifications",
    so i'm sure my certificates are working. Now I just need to send a push message.
    So I followed this great tutorial:
    http://www.raywenderlich.com/3443/apple-push-notification-services-tutorial-part-12
    I was able to do everything and was able to send a push notification ... but I never received it. And the reason for this is because
    I don't have the app device token, which is a 64 character serial number which acts as your app address. So I don't have any way of sending the notification
    to my particular app. (which is a test sideload multifolio app).
    Because the Adobe DPS is cloud based you don't get any code (which I love). But I think that is currently stopping me
    from finding out my device token.
    What I'm asking:
    - Does this mean I can't send any push notifications to Adobe DPS created apps?
    - If this is supported somehow, I suppose (again, correct me) I need the app device token for the created app. Where do I get this?
    Thanks !

    At this time, it's not possible to manually push notifications. When you enable push, only publishing a new folio displays the red badge. At some point, when third-party push is supported, manual pushes will be possible.

  • Can you move a magazine app designed by another company to Adobe DPS?

    My company had a digital company (who shall remain nameless) produce their magazine app under the (digital company's) information. I want to transfer everything over to Adobe DPS because frankly, this digital company did not live up to their promises, have terrible customer service, and are strictly just adding buttons to a pdf (not interactive at all). With that said, do I need to start from scratch and build a new app? Or can I just obtain the app that's already been created? If not, do I just tell the other company to delete our app? Thanks!

    If you move to DPS you'll wind up building a new application using our tools and submitting that to Apple as an update to the existing application. Your readers will see an update to the app and when they download it they'll have the new version.
    What is more complicated to sort out is whether readers would still be entitled to content they'd previously purchased. That depends a lot on you previous setup, how the previous product handled purchases, etc.
    Neil

  • Can you create apps after 1st May 2015 using Adobe DPS single edition?

    Can you create apps after 1st May 2015 using Adobe DPS single edition?
    I currently have SE via creatieve cloud - one of the only reasons we switched to CC was for the DPS SE.
    Does anyone know if this capability will just be 'switched off' at midnight 1st May 2015?? There are huge costs for going the enterprise route but with no date in sight for Publish to be launched I am not sure I can wait for this, or should I???

    Adobe states: Please note that the Digital Publishing Suite, Single Edition, service will be available for use until May 1, 2015, but beyond that date the service will no longer be available.
    So essentially my licence will expire on 1st May - Adobe's note just mentions 'service' -  even though part of CC and I will not be able to maintain my app or create any more IPA's after 1st May. I can't beleive there is nothing to switch over to other than paying thousands of pounds for enterprise??
    Just all so vauge, feels like a plug is going to be pulled and thats it??? Maybe I am missing something?

  • Adobe DPS - using video

    I am trying to set up an FAQ page with a list of questions on the left which activate videos that appear in the same frame area on the right. I’ve uploaded the video as an object state, and used the button to activate and play the relevant video/state. It works ok in the SWF preview, but crashes InDesign everytime I attempt to upload it as an article. can anyone help me?

    Having spent quite a bit of time scratching my head and googling i ended up finding the answer to this myself - so i thought i best post it to help others out.
    What i could not comprehend was why a functioning backbone example on the ipad could not be directly copied across to work on the android device - what transpired was that the backbone example was using an older version of the AdobeLibraryAPI  - taken from Derek Lu articles (from a few years ago) whilst the Angular version was using the most up to date version of the AdobeLibraryAPI. I found this mentioned and explained on another forum post:
    https://forums.adobe.com/thread/1622729
    so i went to Adobe DPS - Library and Store SDK 2.32 : Class Index : JsDoc Reference and got the latest version of the API, swopped it out and hey presto the backbone version now works on the android.

  • Publish Button is Gone!! Updated Reader 9.1

    We just updated to Reader 9.1 and have noticed the Publish button/tools are no longer in upper right. Only in Tasks drop down.
    In order to see the Tasks tool set you must right click tool bar and turn it on.
    When re-launching browser, Task tools do not stick, you must re-check them/turn them on.
    Are there plans to fix this issue? Oversight? or were this intensionally done?
    I am a little worried that other features have disapeared with this new release of reader 9.1.
    Please help anyone.
    Thanks,
    -Jimmy

    I'm thinking it was intentionally unintentional. I'm guessing that in order to fix the security flaw, they had to re-write some of the user interface, and didn't take the time to make it look like the previous version (because they promised a fix by March 11).
    I realize this update was to fix a major security flaw, but why can't we have the same user interface? In version 8 and 9.0, it was so much easier to tell that you're on a document that was comment-enabled as well as easier to publish your comments. The ease of use was part of the reason we went with this solution.
    Now what happens is you load the document (either in Reader or your browser) and it looks like every other document instead of having nice, clear commenting functions at the top of the window. Sure, it asks to connect to the commenting server, but after that, in order to comment, you have to add the "Tasks" toolbar EVERY TIME you load a comment-enabled document. That preference doesn't seem to stick - even if you load Reader and tell it to show that "Tasks" toolbar.
    To make things even worse, this change only happened in the Windows version of Adobe Reader 9.1. The Mac version retains the same look and feel for commenting as in 9.0 and 8.x. So now, in order to create documentation, we'll have to make separate documents for Windows vs Mac users.
    Adobe- please unify your User Interface again.

  • Publish Button Inactive

    Our IT department recently installed Robohelp 9 on my laptop. I was previously using RoboHelp 5. When I select Generate and Save for WebHelp (Primary Layout) for RoboHelp for HTML, the Publish button is shaded/inactive.  Our IT Department appears to be at a loss as to how to resolve this problem. Does any one have any suggestions as to how it can be resolved so I can publish my project?
    Thank you.

    Welcome to our community
    Whether your Publish button is active or not depends on whether a Publishing Destination has been defined in your Single Source Layout recipe. In version 9, right-click the Single Source Layout in the pod and choose Properties:
    Navigate to the Publish section in the left area of the dialog, then note what you see on the right. My guess is that you will find this area empty with no destinations declared. If that's the case, you will need to click the New button and define one. Otherwise, you will likely just click to enable any destination that is defined but not enabled.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Is it possible to make a log in page for Adobe Digital Publishing Professional Edition?

    I would like to create a log in page with key in username and password on the first page of the DPS App.
    Is it possible to make a log in page for Adobe Digital Publishing Professional Edition?

    No. You need enterprise edition to create a custom storefront.
    Neil

  • Can you create an app using Adobe DPS, then pass the Folio to a programmer to add interactivity?

    I'd like to know if I can create an app using Adobe DPS, then pass the folio to a programmer to add advanced interactivity that DPS doesn't provide. I would like the programmer to use either XCode or Android SDK because it is a standard, but they can also use C#, JavaScript, and several other coding languages. The folio would serve the purpose of a tight digital comp for the programmer.

    Thanks for your help Bob! I found this article on the Adobe site. Figured I'd share it. http://helpx.adobe.com/digital-publishing-suite/help/import-html-articles.html

  • Error: Sorry, your account cannot access the Adobe Digital Publishing Suite

    A few days ago I ordered Creative Cloud account. Since that when I try to log in into Folio Producer I receive this message:
    Sorry, your account cannot access the Adobe Digital Publishing Suite. Please contact Customer Support for help.
    At the same time I do can log in into Folio Builder in my InDesign CS6 and even add folios. Might be this error by someway linked to that I had in the past DPS Pro account?
    Thank you in advance.

    This issue does not have solution. I came up to DPS developing team, anyone does not want to fix manually each account and they do not have an automatic solution.

Maybe you are looking for

  • How to create a Form based on a dynamic table?

    Hello, The Select statement below creates a table based on a string (string is a value of an item): select * from table (pkg_util.fn_get_table (:P18_VALUE))I need to create a region on a page with a Form based on this table. I was able to create a Re

  • ADF input text horizontal scrollbar?

    JDeveloper 11.1.2.1.0 I'd like to create a user feedback messages area (read-only) using ADF that behaves in the same way as log windows do in JDeveloper. A multi-row af:inputtext is close to meeting the requirement except: - if a line is too long fo

  • About to the fiscal data in BP

    Hello,  I have two questions. I can add the tab of fiscal data to the role ISM020-Media Customer as he is in the role FTB000-Bussiness Partner Co.Code? How updating the data of the table KNA1 from the table BP1020 associated to the screen of fiscal d

  • UDF for Bin Location

    Hello, I have created a UDF in Item Master to store a bin location called Bin(EMPR_BinCode), we use multiple warehouses so for whse 01 the bin maybe AAA100 and for warehouse 02 the bin maybe ZZZ100. I have created a UDF in marketing documents and als

  • How to enable the 3G card on the lenovo x300 647818M under VISTA?

    Hi Anyone knows how to enable the 3G SIM card under the VISTA??? I insert the one 3G card into the backsideof laptop and install the driver. But  i never get any pop up for connect to internet via the 3G sim card. So, Please help. Cheers Alex Solved!