I need to disconnect from business catalyst

A while ago I began working on a website but had to stop because my computer went bad. Bought a new computer and just now installed CS6. Started to work on my website again and find a "Welcome back to Business Catalyst" login that says, "Please log in to continue working with this panel." I've no idea how I ever got connected to this catalyst thing and it scares me that Adobe's software can lead us into something like that without our knowing what we've done or how we did it. It's kind of creepy from the privacy standpoint.
I don't know what Business Catalyst is, don't know why I have to log in, don't want to have my computer work on files connected to anything cloudlike, and want to work ONLY on files on my computer. When I'm ready to have them anywhere else, it will be on my website on another hosting service.
How do I make sure my work is confined to my computer? How do I disconnect from business catalyst. I don't always have an Internet connection. I merely want to learn to use Dreamweaver at this point.
Another post on this forum was answered by a staff member to someone asking a similar question. He said to get on "chat" and talk to someone who could help disconnect them from Business Catalyst.
How, exactly do I get to that chat page. I've been searching Adobe's pages for about an hour and just end up going in circles. Still haven't found it.
Can you give me the URL? Thanks

Sounds like you are using muse or dreamweaver with the new Creative cloud or otherwise?
Business catalyst is part of Adobe, it is not 3rd party or anything else. Its Adobe. So do not stress about that. It is not installing files or anything. Business catalyst (google it) is a means to build sites.
To be able to connect and upload files to develop a BC site is part of both Muse and Dreamweaver. You can choose not to and ignore it.

Similar Messages

  • Launch my site from Business Catalyst

    Hello everyone, I'm new here and recently I built my website in Muse.
    To Launch my new site from Business Catalyst and link it to my domain name,  do I need to subscribe to Business Catalyst and Muse?
    Thanks

    Hi
    You can published the site to BC directly from Muse , if you are subscribed to creative cloud then you don't need to subscribe BC separately.
    These links will help you :
    http://tv.adobe.com/watch/learn-business-catalyst/adding-business-catalyst-features-to-you r-muse-sites/
    http://tv.adobe.com/watch/learn-muse/publishing-your-site-to-business-catalyst/
    http://helpx.adobe.com/business-catalyst/using/business-catalyst-muse-users.html
    Thanks,
    Sanjit

  • Can you let me know if its possible to import a muse site from Business catalyst in to Dreamweaver?

    Can you let me know if its possible to import a muse site from Business catalyst in to Dreamweaver? I have published a site using Muse to Business catalyst but would like to use FTP in dreamweaver to administer and edit.

    I think you could but you wouldn't like what you see in Design View.   Why do you want to do this?
    Nancy O.

  • I need urgent help in business catalyst SOAP api for [Product_UpdateInsert] operation.

    Hi Everyone, I am new in Business Catalyst, but, my company is working with BC for a while. I have a task to import external data (such as catalogue, products, orders, shopping cart etc) to business catalyst native tables via SOAP api. I am able to use "Product_ListRetrieve" function that gave me products from BC. Now I want to insert and update product list, for which the api call is "Product_UpdateInsert". I am not being able to feed in even a single record. I need any code (jquery, php, javascript, java etc) as a sample, that works with SOAP api for this function. It is very urgent. Please help me. Thanks in advance. I have tried with the code below, but I am getting bugs (format not valid):
    try
         $soapfileurlUpdate="https://worldsecuresystems.com/catalystwebservice/catalystecommercewebservice.asmx?wsdl";
         $soap_clientUpdate = new SoapClient($soapfileurlUpdate);
         $array_of_products=array("Products",
      array("productId"=>"1128",
       "productCode"=>"1128",
               "productName"=>"Bostik 1128  Heat Transfer Sealer (thermo Putty) 460g Cartridge",
               "description"=>"Bostik 1128  Heat Transfer Sealer (thermo Putty) 460g Cartridge",
               "smallImage"=>"images/products/TEMUFF-7_New.jpg",
               "largeImage"=>"/images/products/TEMUFF-7.jpg",
               "cataloguesArray"=>array("DUCTS"), //array("string"=>"DUCTS"),
               "pricesSaleArray"=>array("US/9.95"),//array("string"=>"US/9.95"),
               "pricesRetailArray"=>array("US/9.95"),
               "pricesWholesaleArray"=>array("US/5.00"),
               "wholesaleTaxCodeArray"=>array("US/0.00"),
               "taxCodeArray"=>array("GB/VAT"),
               "groupProducts"=>array(""),
               "groupProductsDescriptions"=>array(""),
               "supplierEntityId"=>"1",
               "supplierCommission"=>"2",
               "weight"=>"20",
               "relatedProducts"=>array(""),
               "tags"=>"",
               "unitType"=>"",
               "minUnits"=>"1",
               "maxUnits"=>"2",
               "inStock"=>"10",
               "onOrder"=>"0",
               "reOrder"=>"0",
               "inventoryControl"=>"true",
               "canPreOrder"=>"0",
               "custom1"=>"",
               "custom2"=>"",
               "custom3"=>"",
               "custom4"=>"",
               "popletImages"=>"",
               "enabled"=>"true",
               "deleted"=>"false",
               "captureDetails"=>"true",
               "downloadLimitCount"=>"22",
               "limitDownloadsToIP"=>"0",
               "isOnSale"=>"true",
               "hideIfNoStock"=>"false",
               "productAttributes"=>"Size*|5|N:Small|,Medium|,Large|;Color*|5|N:Red|,Wh",
               "isGiftVoucher"=>"false",
               "enableDropShipping"=>"true",
               "productWeight"=>"20",
               "productWidth"=>"20",
               "productHeight"=>"29",
               "productDepth"=>"20",
               "excludeFromSearch"=>"0",
               "productTitle"=>"Bostik 1128  Heat Transfer Sealer (thermo Putty) 460g Cartridge",
               "cycletypeId"=>"1",
               "cycletypeCount"=>"1",
               "slug"=>"item-1",
               "hasVariations"=>"false",
               //"variations"=>array("ProductVariation"=>"true"),
               "roleResponsible"=>"",
               "metaDescription"=>""));
      echo "SOAP Data To Be Inserted:<br/>";
      var_dump($array_of_products);
      $vectUpdate = array("soap_version"   => SOAP_1_2,
                     "username"=>$soapusername,
                     "password" => $soappassword,
                     "siteId"=> $soapsiteid,
                     "productList"=>$array_of_products);
      $quoteUpdate = $soap_clientUpdate->Product_UpdateInsert($vectUpdate);
         $status = 1;
      echo "BC side is updated.";
      catch (SoapFault $sf)
         $errorlogText=date("Y-m-d h:i:s A"). "=> Error occurred while inserting data to business catalyst. \r\n";
      echo $errorlogText. " See log for errors.\r\n";
      echo $sf->getTrace();
      //fwrite($errorLogFile,$errorlogText. "Error Dump: ". $sf->getMessage());
      return;

    Hi BCMan, Thanks for replying. Yes, the error is from BC side. The format was invalid. I fixed the issue today. Actually, I was pushing data from my PHP server to BC host system using SOAP api. I am still getting format errors, but I am able to insert data into products table.
    One more question if you don't mind. Is it possible to use JQuery/Javascript to push data into BC tables in real time (while browsing products table) using customized pages? There are documents to solve this. However, I could not find examples of how I could fetch data from JSON file using JQuery and then populate products/catalog/order tables.
    I appreciate your help.
    Thank you.

  • I built website with muse on trial and loaded to business catalyst site. I purchased Muse yesterday and trying to transfer the website from business catalyst to my own domain name hosted elsewhere. can anyone please help with instructions?

    I built a website on Adobe Muse trial and loaded it onto business catalyst site. I purchased Muse yesterday & trying to transfer the website over to my own domain that is hosted elsewhere. I cant find good on-line instructions. Can anyone please help? I need to get this sit live ASAP for promotion campaign.

    Hi
    You would need to delete the domain from existing site and then add to your BC site.
    Please refer here for more details :
    https://forums.adobe.com/message/6365328#6365328
    Thanks,
    Sanjit

  • Why do emails from Business Catalyst site not show up on iPhone?

    I have an email setup on my own Business Catalyst website with a few alias's. The email account is setup in my Outlook 07 Windows 7 64 pro desktop, and I can send and receive emails from all of the alias's and the main email. However I am noticing that on some emails from clients, I get the email on my desktop Outlook 07, but it never shows up on my iPhone.
    EXAMPLE: Today I received an email at 12:57pm. It shows on my desktop. But never showed up on my iPhone. Once I saw this I forwarded the message from my desktop to the same email address that my client had sent his email to. Once I did that I did get the forwarded email of the original email on my iPhone. And yes, I have received other emails from the same client email address before on several occasions.
    Problem is that I left my office at 12:15 and did not see this 12:57 email until I got back to the office much later in the day.  And thus, ending my day very badly due to.....???      A) the Business Catalyst email I have setup is not setup correctly  B) my email settings in my iPhone is not setup correctly.
    Wondering if anybody else has experienced the same issue and figured out what step was missed.

    Hi bluetaildesign,
    Not sure how is that working on one instance but not other. Can you please try to use mail.b.hostedemail.com as incoming and/or outgoing mail server on iphone and try again. This hostname has the SSL certificate installed on it and can be used for transferring the emails in a secured manner. 
    Hope that helps!
    Kind Regards,

  • Error from Business Catalyst

    I have a creative cloud account and ever since I moved to it my BC does not work.
    I am getting this error:
    ﷯Error:
    Does not have enough privileges to create an Adobe Business Catalyst temporary site. Please contact the site administrator.
    Thought on how to fix this?

    Hi,
    It appears the user doesn't have full admin access.  Please reach out to BC direct chat support so they can assist in getting this resolved. 
    - http://helpx.adobe.com/contact/index.html (Select Business Catalyst and proceed) 
    Kind regards,
    -Sidney

  • I need to find a Business Catalyst specialist in the Plymouth MA area

    I am a small business owner with a website in business catalyst.  My virtual assistant is unable to continue working with me.

    Hi HealthCoachPam,
    Not sure if you are looking for someone in the immediate Plymouth area, but we are located just north of Boston.  www.webgreenit.com

  • Need to install from Business content

    HI,
    We have already active infoobject in  DEV,but due to some bugs it is not getting to make any changes.
    IF we re activate it from business content will there be any impact on the existing one.
    What are the steps to reactive from Business content.
    Thanks,
    Erick.

    Hi Erick,
    You can install it.
    Select the check boxes.
    Install: To install the object and to overwrite the installed one.
    Match/Copy: It will not overwrite the existing one. It will match with the Properties of the existing Object.
    Regards,
    Ramkumar.

  • Who do I inform/contact about my intentions to migrate my hosting from Business Catalyst to another hosting platform?

    I intend to transfer my hosting to another platform, which is asking if I have informed my current host (BC) of my intentions. I'm not sure who I should speak to about this.

    Hi Ryan,
    You do not need to speak to anyone. You export/grab what you want from BC and close the account.

  • Download changes from Business Catalyst

    We are two designers collaborating on a Muse site. My partner has just uploaded his new design to BC. I need to download his version into my Muse so that I can make some changes.
    How can I do this?
    In browser editing is not enouch, I need to edit the design.

    Hi
    As you have mentioned you can use In browser editing to make changes so that the changes should reflect on loading the site in Muse.
    As an alternative your partner can upload the Muse file to any server or same site root location from where you can download and work on the file.
    At current stage that's the option to work simultaneously on a file.
    Thanks,
    Sanjit

  • How do I install the modules from Business Catalyst into Dreamweaver?

    They have changed things around compared to Dreamweaver 6. I have my website on the B.C. website, but don't know how to add the modules on Dreamweaver.

    Thanks for the reply. I already have the add on installed. I've had it installed and using it for a few months now. The issue is, unlike the previous version before DW CC, I was able to install the modules on my computer and open them up in D.W. and was able to add the modules to my pages through D.W.
    I'll look at the link again and see if that is what it's showing me what to do.

  • HT201401 I am so frustrated!!!! My iphone 4s will no longer show caller id when a call is waiting, and it won't answer the call either.  I need to disconnect from first call and wait for call to come through without knowing id.  Help!!! I see no solutions

    My iphone 4s will not answer call waiting.  When I go into settings there does not appear to be the option to enable call waiting, yet I have had it for a year and had no problem with it!  Caller id does not show up during an existing call and the call waiting cannot be ansered.  Can anyone help???

    My iphone 4s will not answer call waiting.  When I go into settings there does not appear to be the option to enable call waiting, yet I have had it for a year and had no problem with it!  Caller id does not show up during an existing call and the call waiting cannot be ansered.  Can anyone help???

  • From Business Catalyst to ftp'ing to my domain. Is this an easy move?

    I work at a college and normally I just drag/drop my files into the web server folder. However, that isn't really an option with Muse if you want to push a button to upload revisions. So, the computing people here set it up so that I can ftp the files to our domain.  I haven't been able to test it because the site is used so often - it's more like old one down, new one up right away.  I'm really scared that there is some little item I have to specify ahead of time that I'll miss and all the links won't work...  Anyone have any suggestions/steps I should take?

    If you already have a paid site in BC (or a free BC site off your Creative Cloud subscription), then you can simply add the domain name to your BC site admin while pointing the domain to us. Take a look at the article here on taking your BC site live -  http://forums.adobe.com/docs/DOC-1741.
    On the other hand, if you already have a site live elsewhere with your domain name (at a third party hosting) but would just like to update it with your Muse site files, please use the built in FTP upload dialog. This video shall be helpful in undestanding how to go about doing it - http://tv.adobe.com/watch/learn-adobe-muse-cc/using-ftp-with-muse/.
    Thanks,
    Vinayak

  • Help needed with header and upload onto business catalyst

    Can someone help with a problem over a header please?
    I have inserted a rectangle with a jpeg image in  background, in the 'header' section, underneath the menu. It comes up fine on most pages when previsualised, going right to the side of the screen, but stops just before the edge on certain pages. I have double checked that I have placed it in the right place in relation to the guides on the page.
    That's one problem.
    The second problem is that I tried to upload onto business catalyst, which got to 60% and refused to go any further, saying it couldn't find the header picture, giving the title and then u4833-3.fr.png. The picture is in the right folder I have double checked. And it isn't a png. Does it have to be ?
    And the third problem is that I got an email following my upload from business catalyst in Swedish. I am living in France.
    Can anyone help ? Thanks.

    Thanks for replying,
    How can I check the preview in other browsers before I publish a provisional site with BC?
    The rectangle width issue happens on certain pages but not others. The Welecom page is fine when the menu is active, also the contact page, but others are slightly too narrow. Changing the menu spacing doesn’t help - I was already on uniform but tried changing to regular and back.
    In design mode the rectangle is set to the edge of the browser, that’s 100%browser width right?
    Re BC I have about 200 images on 24 different pages and it seems to be having difficulty uploading some of them. But it has managed a couple I named with spaces but not others I named with just one name.
    Is there an issue on size of pictures ? If I need to replace is there a quick way to rename and relink or do I have to insert the photos all over again?
    I’m a novice with Muse with an ambitious site !
    Thanks for your help.
    Mary Featherstone
    Envoyé depuis Courrier Windows
    De : Sanjit_Das
    Envoyé : vendredi 14 février 2014 22:15
    À : MFeatherstone
    Re: Help needed with header and upload onto business catalyst
    created by Sanjit_Das in Help with using Adobe Muse CC - View the full discussion 
    Hi
    Answering the questions :
    - Have you checked the preview in Muse and also in other browsers ?
    - Does the rectangle width issue happens when menu is active , or in any specific state , Try to change the menu with uniform spacing and then check.
    - In design view the rectangle is set to 100% browser width ?
    With publishing :
    - Please try to rename the image file and then relink
    - If it happens with other images as well , see if all the image names includes strange characters or spaces.
    - Try again to publish
    With e-mail from BC :
    - Under preferences , please check the country selected.
    - If you have previously created partner account in BC and selected country and language then it would follow that, please check that.
    Thanks,
    Sanjit
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6121942#6121942
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6121942#6121942
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6121942#6121942. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Help with using Adobe Muse CC at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

Maybe you are looking for

  • Button does not make the same thing in English and in German

    Hi I have created an HTMLDB-Application (HTMLDB 2.0) with two Pages: Page1 has one Region in which there is one Report and two Buttons. Button1 has the Label 'German' and Button2 has the Label 'English'. Page2 is a HTML-Page wich only gives a success

  • Why does my MacBook Pro not boot up with the Snow Leopard Disk?

    I have erased the entire hard drive on a 2011 macbook pro that had snow leopard on it. I was corrupted. I not insert my Snow Leopard Disk and the machine will not boot. I chose target mode to erase the hard drive from my mac book pro with Mt. Lion on

  • Airline travel with imac 24?

    I will have to travel occasionally on airlines with my new imac duo 24. Although it may exist, I have not found a post on this specific topic on this forum using the search option. The computer is too large for carry-on by airline (SWA) dimension reg

  • Why do we need get and set methods?

    It is considered good design practice to keep all class data private and provide get and set methods for accessing the data in a controlled manner. So, instead of directly accessing the class data, you use getter and setters. I do not really feel the

  • Getting parseFloat to take things like "$1.0054e+10"

    Hi, I need to read in an excel file, some of the columns of which should be floating point numbers. The problem is that the format of the data in these columns can't be guaranteed, I may or may not get $ signs, I might get the 'e' exponential thing,