Recommendation for the implementation of a customer with BC and Muse

Hello

If I have a new client I want to create a website, how to proceed with BC?

I should create a new account of BC for the customer or if they have an account with my portal?

They should have their own domain name.

I create the site Web of Muse, I know that I need to connect my Adobe ID somehow to their account of BC if this would be the way to go.

What do you recommend?

BR Graphicalmarc

Hello

You can publish the site to your account partner, and then allow your customers to access admin.

If you want to publish the site on your partner to customers account, you would need to change connection BC end of Muse, Edit > Preferences > Publish > switch accounts.

So it depends on you how you want to proceed with options.

Let me know if you have any additional questions.

Thank you

Sanjit

Tags: Business Catalyst

Similar Questions

  • IPad disabled with thousands of pictures of children that are not backed up with iTunes or icloud. Recommendations for the recovery of photos please?

    IPad disabled with thousands of pictures of children that are not backed up with iTunes or icloud. Recommendations for the recovery of photos please?

    Sorry, but if your device is disabled and you have no backup, then you won't be able to save the data on the device:

    https://support.Apple.com/en-us/HT204306

    You should back up your device regularly to iCloud or import your photos to an application on your computer. Otherwise, you will be risking losing those photos. If your device has been lost, stolen, or crushed by your car, you'd be in the same situation. Really sorry for your photos.

    Good luck

    GB

  • Recommendations for the best 3D modeling App / program?

    Does anyone have a recommendation for the best 3D modeling application / program?

    (More for the creative rather than animation games and computer work)

    Thank you

    Hello

    I love Autodesk Inventor, but you need to use BOOTCAMP or VMWare/Parallels to run it because it only works with Windows.

    See you soon,.

    Adam

  • I need a download of software recommended for the Transcriber ICD-PX312 for Windows 7.

    I installed the software that came with the ICD-PX312 on a windows system 7 and it crashes constantly. I need a download location for the software recommended for the valid software for the Windows 7 platform.

    all links will be useful.

    Hi Tim,.

    Welcome to the community of Sony!

    Download and install the latest version of the software of the Organizer from the link below:

    http://eSupport.Sony.com/us/p/SWU-download.pl?MDL=ICDPX312&upd_id=8218&os_group_id=5

    If my post answered your question, please mark it as an "accepted Solution".

    Thank you for your message.

  • Guard application launch at the start of the appliance, also need advice for the implementation of network methods

    Hi all

    I'm new to the development of Blackberry and I'm writing a relatively simple application to run on 7.1.

    So far the development was interesting, I managed to create my user interface using resources online (mainly this forum), but today I tried to implement some of the network classes that I need and now I just met constant problems.

    I use Eclipse SDK 3.7.2 (the one that comes with the plugin RIM)

    First question:

    I'm not sure what I changed, but today I noticed that whenever I start the Simulator (by sim 9360) my application is started during the initial startup process. I don't think he did this before, but to be honest, I wasn't paying much attention. I think it starts at the start of the device is because I put a breakpoint in the constructor for my class from the main screen, which is hit before the Simulator happens even to the point where it is ready for user interaction. In addition, once it is ready, if I press the BB button, I see my registered application.

    I don't have it set to automatic start in .xml descriptior enforcement.

    I started this application on the HelloBlackBerry sample, here is my main method for the entry of the application:

    public static void main( String[] args ) {
            appSettings = AppSettings.fetch();
            // Create a new instance of the application and make the currently
            // running thread the application's event dispatch thread.
            HelloBlackBerry theApp = new HelloBlackBerry();
            theApp.enterEventDispatcher();
            //openConnection();
    
        }
    
    
    

    As far as I know, this is the only entry point for the application.

    More code

        public HelloBlackBerry() {
            // Push a screen onto the UI stack for rendering.
            mainScreen = new ScreenHelloBlackBerry();
            pushScreen( mainScreen );
        }
    

    Here is the method of. my class AppSettings fetch()

        // Retrieves a copy of the effective properties set from storage.
        public static AppSettings fetch()
        {
            AppSettings savedSettings = (AppSettings) _store.getContents();
            return new AppSettings(savedSettings);
        }
    

    Some of this code that I wrote myself, the persistence store cause the launch of my car?

    I tried to reset the Simulator to the factory settings, no change.

    All applications initialized during the startup of the device and then closed shortly after?

    Part 2: Need advice for the implementation of functions of network in the application

    I need to implement some methods that will retrieve data from a web service, and I also need to send data to this service. What I've read, the ConnectionFactory is the way to go. I want my application to make a request when the application is open and can check on a set interval. I didn't know exactly how to go about adding another thread for networking, I understand that network connections should not be created on the thread main event, so I tried to do this:

    The constructor of my class that implements screen (ScreenHelloBlackBerry), I use the following to create a modal dialog box to prompt the user for a username, I also try networking wire in the same segment of spawning:

            public ScreenHelloBlackBerry(){...initialize fields and managers, add it all together...then near the end
    
    //This will open the confirm dialog when the application is launched
            UiApplication.getUiApplication().invokeLater(new Runnable() {
                  public void run() {
                      openConfirmDialog();
                    //start connection - Possibly broken
                      ConnectionThread ct = new ConnectionThread();
                      ct.start();
                  }
            });
    

    I don't know if it's somehow OK to do, but it seems to work for what I need. I want a user who launches the application at the prompt, and if a user switch applications, when they come back they wondered again (unless they close the app and reopen it).

    Here is my ConnectionThread:

    public class ConnectionThread extends Thread
    {
    
        public void run()
        {
    
              ConnectionFactory connFact = new ConnectionFactory();
              ConnectionDescriptor connDesc;
              connDesc = connFact.getConnection("http://www.google.com");
              if (connDesc != null)
              {
                  HttpConnection httpConn;
                  httpConn = (HttpConnection)connDesc.getConnection();
                  try
                  {
                      final int iResponseCode = httpConn.getResponseCode();
                      UiApplication.getUiApplication().invokeLater(new Runnable()
                      {
                          public void run()
                          {
                              Dialog.alert("Response code: " +
                                            Integer.toString(iResponseCode));
    
                          }
                       });
                      httpConn.close();
    
                   }
                   catch (IOException e)
                   {
                     System.err.println("Caught IOException: "
                          + e.getMessage());
                   }
              }
        }
    }
    

    At the moment it has basically unmodified code from a sample that I found, I'll be retooling to meet my needs whenever I can make it work. I HAD this work to the point where, after the closed user confirm this dialog, a few moments later a an alert dialog appears with the 302 response code. I don't know what changed, but now it doesn't work at all, and if I try to scroll with the debugger, I can't past the httpCon.getResponseCode (). I've seen some mistakes earlier on "no record of service was set up", and I also had once a timeout exception.

    I'm sure I'm doing this wrong, but at the same time as I said WAS working, and now it is not. If someone has done this far, thank you very much for your time and advice are much appreciated.

    Also, should I try to start the thread of the network of the UIApplication class instead of the screen? There is currently very little happening in the class that extends UIApplication, do I spend most of my business logic out of the class of the screen and in the UIApplication class?

    Thanks in advance!

    Hi all

    Just to conclude this topic for those who are interested, I found an excellent guide to the implementation of networks in applications of BB, click here for a link.

    About my application being started at the start of the simulator of the device, I found that on a device real this behavior is not complied with, and in addition, the behaviour seems to have stopped after uninstallation and reinstallation of my Simulator.

    See you soon,.

  • Parallel logic LSI, LSI logic SAS, parallel Buslogic (not recommended for the guest operating system), vmware paravirtual

    Infrastructure:

    vSphere

    ESX 4

    Reference Dell R710 Server

    I install WIN 2003 x 64 as a virtual server on ESX 4, when I select LSI logic SAS & LSI logic parallel it does not detect the hard drive, do I need driver if so where can I download?

    For parallel bus logic (not recommended for the guest operating system) & Vmware paravirtual, do I have to select this option for my win 2003 R2 x 64 edition?

    Please help on this issue.

    ~ Rashid

    If you really want to use it for installation, you will need to extract the driver from the VMware Tools ISO and add it to a disk image.

    Dave

    VMware communities user moderator

    New book in town - Start Guide quick vSphere -http://www.yellow-bricks.com/2009/08/12/new-book-in-town-vsphere-quick-start-guide/.

    You have a system or a PCI with VMDirectPath?  Submit your specifications to the unofficial VMDirectPath HCL - http://www.vm-help.com/forum/viewforum.php?f=21.

  • Format recommended for the PDF author metadata

    Hello

    I work as a librarian and I am responsible for the Department of the thesis of my University Library. These are filed and archived as PDF files. Some of them are available online, some are not.

    I was told to systematically fill metadata "Title" and "Author" for each PDF deposited in our electronic despository.

    My question has to do with metadata "author." Is there a structure recommended for her?

    As it is I can think of a lot of different alternatives:

    First name last name

    LastName Firstname

    LastName, Firstname

    etc.

    As a librarian, my instinct was to choose the name, first name format (used in the author/creator DC element, for example), but I realized that whenever I have saved the PDF file and then displays the part of metadata (via the shortcut Alt D), it would show "Lastname, Firstname" rather than the full name (for some unknown reason, adds Adobe Pro "" ""). After some tests, I came to the conclusion that the coma was the source of the problem. So I changed my mind and adopted the format Firstname Lastname , but I'm not sure that this is the best option.

    So if I ask you a few questions, here they are:

    -Which format do you recommend for the metadata of the author (if there is one)?

    -Why a coma generates ""?

    Is there a specific separator character that I use when I need to fill two different names (if a given thesis has been written by two different people)? (this issue also applies to metadata "Key words")

    Thanks for your patience and for your time,

    See you soon,.

    JHM

    There are no rules in itself, but the XMP specification defines DC: creator as a ProperName field, which means it must be written in the way he would say - "John Smith" rather than "Smith, John". Finally, it is until you do with data - if your external search system to priority of family name, do it.

    The fields on the tab of "description" of PDF Properties dialog comes from this Document information block in the standard PDF file, which is independent of the XMP metadata. Although these fields of DI are often people will look on, in a formal catalog system the XMP object has priority (indeed, in the ISO PDF/A standard that you are supposed to ignore completely DI fields).

    Document Information fields are stored in the PDF file as strings rather than the XML entities. Commas would confuse the parser in thinking it was to see a table, so they will trigger Acrobat in order to encapsulate the entries between quotes. He will assume a comma and a single space are part of an individual term, if you want to create a list using the semicolons or several spaces between words. Senicolons conquer spaces:

    • Doe, John; Lord Lucan; Barney, the Purple dinosaur will be kept at the "Doe, John"; Lord Lucan; 'Barney, the Purple dinosaur'
    • Is no one, no one will be kept to the ', that is, not a "; person because the spacing is a term separator.

    The important thing to remember is that the entrance of DC: creator XMP is updated whenever you change the author field of DI, but it does NOT follow the same rules. ProperNames XMP are OK with spaces but they don't like commas or semicolons - so the first example above appears in the tree view of XMP as

    1. DOE
    2. John
    3. Lord Lucan
    4. Barney
    5. Dinosaur
    6. the
    7. Purple

    This reinforces the idea of using names as spoken. Lord Lucan has survived his trip to XMP, John Doe became two people. Barney is beyond hope. in many ways.

  • Recommendation for the configuration of the disk

    Recommendation for the configuration of the disk:

    A wide range of RAID 5 consisting of 8 x 146 GB drives?

    Two arrayys of RAID 5 with 4 x 146 GB drives in each table one would be used for the data store, and the other would be usd to images of backup to it.  The idea here is that when we do backup via the script GhettoVCB/o would be mainly on the secondary RADIUS and not the main data store.   In my opinion?  I think I have the only RAID 5 Bay with all the readers of 8 x 146 GB for a data store single should surffice.   I don't think the performance problems will be that detrimental.

    Do not hesitate to offer advice on scenarios, thank you

    Engineer accommodation

    ModusLink Open Channel Solutions, Inc.

    As written before, depends on the type of e/s.

    With more than R and W low, RAID5 (on multiple disks) could be very good.

    But don't forget to also use a global hot spare, degraded performance a RAID5 mode could be dramatic.

    And don't forget that your controller has a battery backup.

    André

  • I am not able to download apps for my iPhone on the App Store. He just 'waiting '. But never starts the download. I tried with wifi and mobile data. The two are not download apps

    I am not able to download apps for my iPhone on the App Store. He just 'waiting '. But never starts the download. I tried with wifi and mobile data. The two are not downloading the applications Can u find out what's wrong? I use iPhone 5s

    I had the same problem. At the same time hold the screen lock button and the home button until your iPhone restarts. That solved the problem for me.

  • I found the solution for the problem of sound-acpi with Satellite P100-219

    Hello

    I found the solution for the problem of sound-acpi with Toshiba P100 (it works with P100-219 at least). I can provide the source modified and compiled table DSDT, but I would like to know if it is possible to get these changes in the next update of the BIOS?

    See you soon,.
    MIK

    Hi Mik

    As you know that it is not possible to find info on the next BIOS, especially if you want to have some information about the Linux operating system. Just wait and see if some forum users pointed out something on the subject.

  • Why it takes so long for the BlackBerry vendor to deal with accounts?

    Why it takes so long for the BlackBerry vendor to deal with accounts?

    I put in my request 3 days ago, and it has not yet been verified.

    Hello

    Could you please PM me your name of the seller? Do you get the email that asks you to send the document ID/commercial? If this isn't the case, please try to chcek your spam folder.

    Kind regards

    Satya

  • Hello, I had paid for the creative but not access, with Juliette deroche sister cloud account, thank you

    Hello, I had paid for the creative but not access, with Juliette deroche sister cloud account, thank you

    A cloud subscription is linked to the Adobe ID of the person who purchased the subscription

    YOU can install and activate on 2 computers, but two activations cannot be used at the same time

    If you give your sister your credential, you can not both use your subscription at the same time

    Cloud license allows 2 activations http://www.adobe.com/legal/licenses-terms.html

    -Install on a 2nd computer http://forums.adobe.com/thread/1452292?tstart=0

    -Windows or Mac has no importance... 2 on the same operating system or 1 on each

    -Two activations may NOT be used at the same time (noted in the link above of the license)

  • I have the plan of photography with photoshop and Lightroom 5. I tried to open a catalog I had created it said the photographs were again for the Lightroom I. I have a Mac and downloaded Didier, thinking I would get a new update of lightroom.

    I have the plan of photography with photoshop and Lightroom 5. I tried to open a catalog I had created it said the photographs were again for the Lightroom I. I have a Mac and downloaded Didier, thinking I would get a new update of lightroom. It did not. Should I expect Lightroom cc and extra cost that would be for me?

    Please open the app creative cloud on your computer and the gpo tot app tab. If you are not able to see the Lightroom CC listed, sign out and sign in the creative cloud.

    Here is the screenshot for how you can download the application from the creative cloud

    Thank you

  • Outlook Express downloads e-mail messages for the 2nd time which have been read and deleted a few weeks ago.

    Outlook Express downloads e-mail messages for the 2nd time which have been read and deleted a few weeks ago.  This happens periodically.  Repeated messages are usually a week.

    Maybe they are still on the server (server of your ISP). Make sure that you don't leave copies of messages downloaded from the ISP server that may cause duplicate messages to download.

    It's the only thing I can think of.

    If you are unsure how to check your messages via the Internet site of the ISP, then check with them about how you do that. TaurArian [MVP] 2005-2010 - Update Services

  • How to get rid of the offer to try CC with Lightroom and start my Lightroom 6 as usual?

    How to get rid of the offer to try CC with Lightroom and start my Lightroom 6 as usual?

    I installed Lightroom 6. There are now worked fine.

    Now when I try to open the program, it does not open.

    Instead, a window appears with an offer to try Lightroom CC.

    I don't want to try Lightroom CC as a monthly payment.

    I see not a way to get rid of this window a start my 6 Lightroom as before.

    Open as a test and check your sign in Adobe. Once you Sign In it ask for a serial number. Enter the serial number, you have to V6.

    Only then disconnect.

Maybe you are looking for

  • Problem of speaker with Satellite L750

    Hello! I had some problems with my internal speakers on my laptop Toshiba Satellite L750. I just got the laptop a few months ago, and so far, everything seems ok... except for the speakers. So if I leave the laptop and put it on "sleep" or "hibernate

  • How to know if sequencefile has loaded or not?

    Customization of the user interface. I "recharge sequencefile on start. And do not use SequenceFileView. Some sequencefile spends a lot of time for loading. And sometimes the sequencefile reference must be empty. Because the sequencefile has been rem

  • How can I install my HP Photosmart c4780 printer under XP?

    I have a Sony Vaio, which has been wiped and Windows XP has been installed.  I'm unable to print and have try to make it work with our wireless HP Photosmart c4780.  I googled how to do and was asked to install a driver, I did.  I'm still not able to

  • CSRSS maintains files non-existe running

    Hello Can anyone help on this. The csrss process keeps reading disc in my computer for a long time. (Seems it will destroy my drive) Today, I wonder what happens to this topic and use the process monitor to check it out. The process monitor provides

  • Sending the emails go to the Outbox

    When I try to send an e-mail or make a new email and try to send it, it goes into the Outbox