Configuration on domain name inside Business Catalyst

I created a web site in Muse and using Business Catalyst to upload this site.
I purchased the url (domain name) from godaddy.com.
Currently, the domain is parked at godaddy.com and I need a DNS to re-route the site back
to Adobe Business Catalyst.. how can this be done?

Sorry... This forum is to discuss the forums, not products, and not sales
You need to ask your question in the forum for the Adobe product you are using
How to Select a Forum http://forums.adobe.com/docs/DOC-1015

Similar Messages

  • How to transfer exisitng domain names to business catalyst?

    What are the requirements or what is the proccess to transfer exisitng domain names to business catalyst?
    Your input is much appreciated.
    FT

    Business Catalyst does not have a domain hosting capabilities, so you can not transfer domains to BC.
    If you would like to point a domain to BC though you either point the A-record or NS records to your BC site:
    http://helpx.adobe.com/business-catalyst/partner/going-live-guide.html

  • I want to know how to use my domain name in business catalyst

    please I want to know how to use my domain name in business catalyst

    Hello marionussen,
    This issue of your's is specific to Buisness Catalyst and me have a forum for Buisness Catalyst. I would suggest you to post your query to forum: http://forums.adobe.com/community/business_catalyst for help.
    Let me know for any further query.
    Regards,
    Ratandeep Arora

  • Pointing an existing domain name to business catalyst.

    Hi there,
    I have an existing site called www.design180.co.nz. But I have designed a new site. I want to replace the old site with the new one Ive redesigned Adobe in muse. The hosting company has the domain name, I will need them to point the domain name to the business catalyst, where the new site will be hosted. Ive 5 free accounts so I will use one of them. This is where I am stuck... Does he point to "ns1.worldsecuresystems.com (54.236.190.129)" - primary DNS server.
    At present the site is set up as a trial in Muse design18002.businesscatalyst.com
    After he points to the site can i save the muse site as www.design180.co.nz

    Hi there, I am guessing your reading the documentaiton. That is correct, if your pointing all traffic to your BC site you need to use those NS records.
    What you then do is go into your site admin, into site settings and manage domains. You need to set up your domain in there.
    Once you do that, it can take up to 24 hours for a .com, but for a .co.nz it should take about an hour or so tops to propergate. ISP's cache dns different so some may take longer, especially if someone is viewing outside NZ.

  • Using own domain name on Business Catalyst / Muse

    I have a 'complete plan' subscription to CC and I believe 5 free sites with Business Catalyst.
    From checking this forum and FAQ it appears I should be able to link a domain name I currently own to a BC site so my URL drops the businesscatalyst.com element of the name. I have changed teh NS to ns1.worldsecuresystems.com  (and ns2 / ns3) and the next stage is to go to Site Settings and enter the doman name.
    My problem is where do I find the menu Site Settings as I can not see it within Muse?
    Peter H

    Hi Peter
    The settings to add the domain is not with Muse but in Business Catalyst domain settings.
    You would need to publish the site first to Business Catalyst and then make the site live.
    After performing the steps you can add the domain.
    More Details :
    http://forums.adobe.com/thread/1401662?tstart=0
    http://helpx.adobe.com/business-catalyst/using/change-site-domain.html
    Thanks,
    Sanjit

  • Migrating domain name to Business Catalyst

    After playing with Muse for a while I am looking to publish my site shortly. My current hosting package is up in January so would like to move over to Business Catalyst rather than renew that if possible.
    Current hosting comes with free email addresses associated with the domain name, one of which is printed on my business card. Is there a way to keep and migrate this or do I need to lose it and reprint cards with an updated address?

    You have a couple options. Since you used Muse I will guess you are thinking on using your free hosting.
    The free hosting is very basic and does not have email support. You will still need to keep your domain registered with where ever it is now. Adobe doesn't host domain names.
    So what you need to do after you go live is to:
    Either upgrade it to a paid site and you can set the DNS at your current registerar to ns1.worldsecuresystems.com and ns2.worldsecuresystems.com
    or
    Just direct the A record in your domain settings where you have your domain to 192.150.2.140 and leave the MX record (email) with your current host.

  • Having trouble setting new domain name in business catalyst

    Hello,
    I'm having problems setting up my site to go live. Here's what I've done so far:
    1) built the site and pushed it live
    2) upgraded the site
    3) set up a GoDaddy domain name
    4) set up the servers on GoDaddy
    5) set up the associate account info on BC
    And then.... nothing.
    I've then deleted the domain and tried to repeat the process, in case I missed something, but now I can't set up a new domaine and keep getting the error "Domain already exists. Please delete all records associated with this domain". What records? What does this even mean?
    Can someone please walk me through the steps to get this site live?
    Thanks!
    Darin

    Hi Aish,
    I'm still having no luck with the site. I've triple-checked and everything is correct on the GoDaddy end. I'm attaching a screenshot of with BC portal, so you can see where I'm at. I somehow ended up with duplicate domains and I have no idea which one to delete. Also, I can't seem to enter anything for the A records, C name records, etc. Is there anything at all that support can do to get this thing up and running? It's been close to a week since I upgraded the site. Please advise.
    Thanks,
    Darin

  • How to configure Ogone for working with business catalyst ?

    How to configure Ogone for working with business catalyst ?
    In france ogone seems to be the only solution for seamless payment and there's no explications on the forum to configure it.
    Thx for your answers

    Hi ,
    [Configuration Guide SAP adapter for SAP Quality Center by HP|https://websmp101.sap-ag.de/~sapdownload/011000358700000612662007E/Adapter_Configuration_.pdf] might be useful.
    Check [Master guide|https://websmp201.sap-ag.de/~sapdownload/011000358700000612672007E/Adapter_Master_Guide.pdf]  also.
    Regards
    Naveen
    Edited by: Naveen kumar Palanichamy on Feb 19, 2009 6:38 AM

  • Azure AD user name not using configured custom domain name

    I have configured a few users for Lync Online that I setup before I had custom domain name work with Azure AD.  Now I have the custom domain setup and verified and configured as the primary domain.  The users that were configured for Lync
    Online are still displayed with the *.onmicrosoft.com username in Azure AD.
    Is there a way I can change these users so their usernames use our custom domain?

    You can easily change the UPN via PowerShell:
    Set-MsolUserPrincipalName -UserPrincipalName [email protected] -NewUserPrincipalName [email protected]
    If you want to do this in bulk for all users, you can use something like this:
    $all = Get-MsolUser -All
    $users = $all | ? {$_.UserPrincipalName -match "tenant.onmicrosoft.com"}
    $users | % {Set-MsolUserPrincipalName -UserPrincipalName $_.UserPrincipalName -NewUserPrincipalName $_.UserPrincipalName.Replace("tenant.onmicrosoft.com","domain.com")}
    Test it first against a single user of course :)

  • How to configure internet domain name for P6 website using weblogic

    After installing and configuring weblogic for P6 you get the following address https://servername:7002/console/login/LoginForm.jsp to access P6 website.  Anyone know how to configure a purchase domain such as www.mydomain.com have it redirect to https://servername:7002/console/login/LoginForm.jsp Is this configured in weblogic server? If not, what is needed to redirect the purchased domain?

    HI
    You could have that domain resolving to/by some DNS servers and set up a load balancer / proxy to redirect every incoming request to that domain / site to your weblogic console.
    however , what is it you are trying to do? It is very unsual of redirecting/ using Domain names to redirect to wls consoles.
    could you explain your use case in detail please
    Sri

  • How to transfer domain name to Adobe Catalyst

    I currently have a website/domain name and email address through Clikpic. I have now changed directions and designed my own website with muse. How do I go about transferring everything to Adobe.

    Hi,
    http://forums.adobe.com/docs/DOC-1741

  • Configuring NFSv4 domain name

    I currently use NFSv3 sharing from a Debian box to my Mountain Lion clients, and it works quite well.  I was having issues (as do many, or so I read) with NFSv4, one of which was that the initial mount would take perhaps 30secs to a minute to list the contents of the directory.
    However, I've just read the following here:
    We […] set the NFSv4 domain name using "dscl" as described in the man page of "opendirectoryd" of 10.8.3. After a reboot […] the slowliness of NFSv4 was gone!
    The dscl use is as follows:
    NFSv4 Domain name
         The following will set the default domain name used to map user and group identities in NFSv4
         client/server operations.
         dscl . -create Config/NFSv4Domain RealName <Example.com>
         This command requires root privileges.
    I haven't got a clue how to go about implementing an "NFSv4 domain name", ie. how to choose it, what format it takes, whether I should use the same or related domain names on each client etc.
    Would someone be willing to clarify things for me?
    I'll obviously still be reading around once I've posted this, but all the documentation I've come across so far seems to expect a greater degree of competency in matters of networking than I can lay claim to.
    Thanks.

    hi  Linc Davis, n Scotch, sorry for post over here cos im new ....  i dont know how to ak u directly to u , i do hv a serious problem , i cant get any help even i went to it support of Apple ,  my problembegin from pass 2 weeks , my mac book air , iphone , ipad , windows laptops all, my devise with connect to wifi was hack ... 
    first i found out this hacker using a "ramdisk software " install in my window ... but i cant check it out in my mac
    the problem is even when i delete the all partitions n reinstall again , my window or mac system will be the same , which r the bluetooth on , wifi on , home or work group file or librery are sharing ,
    admin password overwrite , permission overite , even i off the wifi n bluetooth , in the background service still working  , i cant delete any file  or uninstall any application releted to those file  , even if i uninstall, within a min will be automatic install,  n my rootkit are  change , { i use ox rootkie hunter to check } ,
    i found out under File - Get info - owner or user permmision - i can see some extra user , and with permission of write n send by dropbox , i cant install drop box software of couse ,[ i cant founf the dropbox in my appilication],
    in the disk utilitis - repair disk permission , even i repair 100 times still will having the same problem ..i provide the copy of the repair ....
    ... and all this happen which im not conecter to wifi..  so i suspect his is around me which using some sort of air port express or wimax things 
    Repairing permissions for “Air!”
    Permissions differ on "Library", should be drwxrwxr-t , they are drwxr-xr-x .
    Permissions differ on "System/Library/User Template", should be drwx------ , they are drwx---r-x .
    Permissions differ on "Library/Application Support", should be drwxrwxr-x , they are drwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/English.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/English.lproj/RemoteDesktopMenu.ni b".
    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/English.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/English.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    and with my iphone n ipad , he can overwrite my software which i cant change the location setting ,bluetooth setting which always on n my chat history in whatsapps, line ...etc histories send out automatic , my photo even i hv been deleted , will come out again in some time ...
    Please help me if possible... Tq very much

  • IPod Domain Name and Business Name, OK?

    Can I start a little iPod repair business and do battery replacements and such or will Apple get angry at me and send me letters?
    I've noticed these sites like ipodjuice.com, ipodrepairclinic.com, some guy calling himself "KingiPod.com" and a bunch of other ipodrepairman.com type sites.
    I guess there's technically nothing wrong about offering iPod repairs, but when it comes down to calling your business name "*iPod ______, LLC*" or whatever, does Apple care? Or is it like "hey, let them do it so we don't have to", type of thing?

    What you really need is professional legal advice which is probably why no one wants to chime in with a specific answer on this one.
    Barbara

  • Where do I turn on a module inside Business Catalyst?

    Turn on a Module for my Header? All of my buttons, Images, Reports etc.. are all missing.
    LItterdata.com

    You need to provide more information then that Chris.
    If it is a content holder - site manager - content holders.
    If the content is removed from a page etc then you need to add it back in.
    If it is a web app item then you need to go to that item and enable it.
    You do not turn on reports, you just go to it in the admin menu on the left.
    IF you are referring to features you do not see when you login in to admin either the site create has not given you permission to access those features OR you are on a plan that does not support them.

  • Point 123-reg domain to Business Catalyst

    Hi everyone,
    I just published my muse website through Business Catalyst and additionally purchased a domain from 123-reg.co.uk.
    I now want to point the domain name to Business Catalyst DNS servers but am not sure how to do this.
    I read about this in the muse help forum but don't know how to apply it to my domain on 123-reg.co.uk.
    Can somebody please help me?
    Thank you

    I have done exactly that and also came accross this document. I have found the DNS section on the registrar's website but don't understand what to fill in?
    here is a screenshot if what I see right now.
    Thank you, I appreciate your help

Maybe you are looking for