Online Store Complete Working Example

Hi
I have installed the packaged app, Online Store. However, it does not illustrate how payments are processed and how inventory is managed. Does anyone have a working example (with code) of a complete online store?
Kind regards
Jov

Hi Jov,
We've developed an online store and integrated it with Paypal Standard Payments.
Demo here:
http://www.apexskins.com/pls/apex/f?p=658
Paypal intergration here:
http://www.apexskins.com/pls/apex/f?p=653
I hope this helps.
Andrew
http://www.apexskins.com

Similar Messages

  • Buying an iPhone 5S or 5C from online store completely Sim-Free?

    Hello, is buying a iPhone 5S or 5C from the Australian Apple Online store completely sim-free and unlocked?

    No. Sim Free usually refers to a phone that has no Sim card inside.
    Most of the time Unlocked Phones are sim free. As in: they do not come with a sim card.
    However there are exceptions, a good example is the Unlocked T-Mobile version in the U.S. online store. They are unlocked but are not sim-free because they come packaged with a T-Mobile sim card that can be removed.
    Any sim card from any carrier,  can then be placed inside the phone and it will work.

  • Many online stores not working due to the new update.

    Hi, Mavericks has been awesome so far, except a number of problems, iBooks store will not run, i click on the store button then the app goes unresponsive and only leads to a force quit and then same problem if i open the app again. Next problem is very similar except with the app store, the store page is completely blank apart from the logo of the appstore in the backdrop of the window. The third problem is that Garagband spent so long to install, once i had installed it, it opened and then became unresponsive and then i looked for some fixes online, couldnt find any. So i thought maybe to delete the old garageband so the new one would work. However the new one didnt open at all after that. So i thought to delete the new garageband and install it again from scratch with annoyance. Except however the app store doesnt work. How can i fix these problems, even if these problems are bugs that Apple will hopefully work out, i do not know how i can receive an update when the app store (which is now used for getting updates) doesnt even work in the first place.
    Any help is welcome, because this problem has been driving me mad all day, i doubt that simple amount of time will change anything but i keep hoping.

    Checked to see how much space is available ??
    Click your Apple menu  top left in your screen. From the drop down menu click About This Mac > More Info > Storage
    Make sure there's at least 15% free disk space.
    If it's not a matter of storage space, the startup disk may need repairing.
    Launch Disk Utility located in HD > Applications > Utillities
    Select the startup disk on the left then select the First Aid tab.
    Click:  Verify Disk  (not Verify Disk Permissions)
    If DU reports errors, restart your Mac while holding down the Command + R keys. From there you should be able to acces the built in utilities in  OS X Recovery

  • My wifi is not working. It has no indication. I am living in Indonesia but I bought my iphone from apple online store. Can anyone help me how to fix my problem?

    My wifi is not working. It has no indication. I am living in Indonesia but I bought my iphone from apple online store. Can anyone help me how to fix my problem?

    The No Service means there is a problem with cellular service. You mention wifi in your title. Which is it you are having trouble with? What happens when you switch on and off as you state in your post? Are you saying that wifi does not connect while at home either?

  • I installed itunes 11.1.3 and now my itunes store wont work - for example the movie list comes up blank

    i installed itunes 11.1.3 and now my itunes store wont work - for example the movie list comes up blank- does anyone knw how to fix this?

    Looks like blame is incorrectly placed. Turns out my iSCSI connector is struggling with Mavericks. When I placed the iTunes library on a local drive, everything came back to normal.

  • My ipad (3rd generation) charger suddenly stopped working? I live in Singapore so there isn't an official apple store. Does anyone know where I can get it(charger) fixed/replaced? By the way, I got my ipad from the online store. Please and thank you

    My ipad (3rd generation) charger suddenly stopped working? I live in Singapore so there isn't an official apple store. Does anyone know where I can get it(charger) fixed/replaced? By the way, I got my ipad from the online store. Please and thank you

    Currently there are 15 Apple Premiun Reseller in Singapore; you can find your nearest reseller here:
    http://www.apple.com/sg/reseller/searchtips.php?location=

  • Complete working code for Gmail POP3 & SMTP with SSL - Java mail API

    Finally, your code-hunt has come to an end!!!!
    I am presenting you the complete solution (with code) to send and retrieve you mails to & from GMAIL using SMTP and POP3 with SSL & Authenticaion enabled. [Even starters & newbies like me, can easy try, test & understand - But first download & add JAR's of Java Mail API & Java Activation Framework to Netbeans Library Manager]
    Download Java Mail API here
    http://java.sun.com/products/javamail/
    Read Java Mail FAQ's here
    http://java.sun.com/products/javamail/FAQ.html
    Download Java Activation Framework [JAF]
    http://java.sun.com/products/javabeans/jaf/downloads/index.html
    Also, The POP program retrieves the mail sent with SMTP program :) [MOST IMPORTANT & LARGELY IN DEMAND]okey.. first things first... all of your thanks goes to the following and not a s@!te to me :)
    hail Java !!
    hail Java mail API !!
    hail Java forums !!
    hail Java-tips.org !!
    hail Netbeans !!
    Thanks to all coders who helped me by getting the code to work in one piece.
    special thanks to "bshannon" - The dude who runs this forum from 97!!I am just as happy as you will be when you execute the below code!! [my 13 hours of tweaking & code hunting has paid off!!]
    Now here it is...I only present you the complete solution!!
    START OF PROGRAM 1
    SENDING A MAIL FROM GMAIL ACCOUNT USING SMTP [STARTTLS (SSL)] PROTOCOL OF JAVA MAIL APINote on Program 1:
    1. In the code below replace USERNAME & PASSWORD with your respective GMAIL account username and its corresponding password!
    2. Use the code to make your Gmail client [jsp/servlets whatever]
    //Mail.java - smtp sending starttls (ssl) authentication enabled
    //1.Open a new Java class in netbeans (default package of the project) and name it as "Mail.java"
    //2.Copy paste the entire code below and save it.
    //3.Right click on the file name in the left side panel and click "compile" then click "Run"
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.*;
    public class Main
        String  d_email = "[email protected]",
                d_password = "PASSWORD",
                d_host = "smtp.gmail.com",
                d_port  = "465",
                m_to = "[email protected]",
                m_subject = "Testing",
                m_text = "Hey, this is the testing email.";
        public Main()
            Properties props = new Properties();
            props.put("mail.smtp.user", d_email);
            props.put("mail.smtp.host", d_host);
            props.put("mail.smtp.port", d_port);
            props.put("mail.smtp.starttls.enable","true");
            props.put("mail.smtp.auth", "true");
            //props.put("mail.smtp.debug", "true");
            props.put("mail.smtp.socketFactory.port", d_port);
            props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
            props.put("mail.smtp.socketFactory.fallback", "false");
            SecurityManager security = System.getSecurityManager();
            try
                Authenticator auth = new SMTPAuthenticator();
                Session session = Session.getInstance(props, auth);
                //session.setDebug(true);
                MimeMessage msg = new MimeMessage(session);
                msg.setText(m_text);
                msg.setSubject(m_subject);
                msg.setFrom(new InternetAddress(d_email));
                msg.addRecipient(Message.RecipientType.TO, new InternetAddress(m_to));
                Transport.send(msg);
            catch (Exception mex)
                mex.printStackTrace();
        public static void main(String[] args)
            Main blah = new Main();
        private class SMTPAuthenticator extends javax.mail.Authenticator
            public PasswordAuthentication getPasswordAuthentication()
                return new PasswordAuthentication(d_email, d_password);
    END OF PROGRAM 1-----
    START OF PROGRAM 2
    RETRIVE ALL THE MAILS FROM GMAIL INBOX USING Post Office Protocol POP3 [SSL] PROTOCOL OF JAVA MAIL APINote:
    1.Log into your gmail account via webmail [http://mail.google.com/]
    2.Click on "settings" and select "Mail Forwarding & POP3/IMAP"
    3.Select "enable POP for all mail" and "save changes"
    4.In the code below replace USERNAME & PASSWORD with your respective GMAIL account username and its corresponding password!
    PROGRAM 2 - PART 1 - Main.java
    //1.Open a new Java class file in the default package
    //2.Copy paste the below code and rename it to Mail.java
    //3.Compile and execute this code.
    public class Main {
        /** Creates a new instance of Main */
        public Main() {
         * @param args the command line arguments
        public static void main(String[] args) {
            try {
                GmailUtilities gmail = new GmailUtilities();
                gmail.setUserPass("[email protected]", "PASSWORD");
                gmail.connect();
                gmail.openFolder("INBOX");
                int totalMessages = gmail.getMessageCount();
                int newMessages = gmail.getNewMessageCount();
                System.out.println("Total messages = " + totalMessages);
                System.out.println("New messages = " + newMessages);
                System.out.println("-------------------------------");
    //Uncomment the below line to print the body of the message. Remember it will eat-up your bandwidth if you have 100's of messages.            //gmail.printAllMessageEnvelopes();
                gmail.printAllMessages();
            } catch(Exception e) {
                e.printStackTrace();
                System.exit(-1);
    END OF PART 1
    PROGRAM 2 - PART 2 - GmailUtilities.java
    //1.Open a new Java class in the project (default package)
    //2.Copy paste the below code
    //3.Compile - Don't execute this[Run]
    import com.sun.mail.pop3.POP3SSLStore;
    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Date;
    import java.util.Properties;
    import javax.mail.Address;
    import javax.mail.FetchProfile;
    import javax.mail.Flags;
    import javax.mail.Folder;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.Multipart;
    import javax.mail.Part;
    import javax.mail.Session;
    import javax.mail.Store;
    import javax.mail.URLName;
    import javax.mail.internet.ContentType;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.ParseException;
    public class GmailUtilities {
        private Session session = null;
        private Store store = null;
        private String username, password;
        private Folder folder;
        public GmailUtilities() {
        public void setUserPass(String username, String password) {
            this.username = username;
            this.password = password;
        public void connect() throws Exception {
            String SSL_FACTORY = "javax.net.ssl.SSLSocketFactory";
            Properties pop3Props = new Properties();
            pop3Props.setProperty("mail.pop3.socketFactory.class", SSL_FACTORY);
            pop3Props.setProperty("mail.pop3.socketFactory.fallback", "false");
            pop3Props.setProperty("mail.pop3.port",  "995");
            pop3Props.setProperty("mail.pop3.socketFactory.port", "995");
            URLName url = new URLName("pop3", "pop.gmail.com", 995, "",
                    username, password);
            session = Session.getInstance(pop3Props, null);
            store = new POP3SSLStore(session, url);
            store.connect();
        public void openFolder(String folderName) throws Exception {
            // Open the Folder
            folder = store.getDefaultFolder();
            folder = folder.getFolder(folderName);
            if (folder == null) {
                throw new Exception("Invalid folder");
            // try to open read/write and if that fails try read-only
            try {
                folder.open(Folder.READ_WRITE);
            } catch (MessagingException ex) {
                folder.open(Folder.READ_ONLY);
        public void closeFolder() throws Exception {
            folder.close(false);
        public int getMessageCount() throws Exception {
            return folder.getMessageCount();
        public int getNewMessageCount() throws Exception {
            return folder.getNewMessageCount();
        public void disconnect() throws Exception {
            store.close();
        public void printMessage(int messageNo) throws Exception {
            System.out.println("Getting message number: " + messageNo);
            Message m = null;
            try {
                m = folder.getMessage(messageNo);
                dumpPart(m);
            } catch (IndexOutOfBoundsException iex) {
                System.out.println("Message number out of range");
        public void printAllMessageEnvelopes() throws Exception {
            // Attributes & Flags for all messages ..
            Message[] msgs = folder.getMessages();
            // Use a suitable FetchProfile
            FetchProfile fp = new FetchProfile();
            fp.add(FetchProfile.Item.ENVELOPE);       
            folder.fetch(msgs, fp);
            for (int i = 0; i < msgs.length; i++) {
                System.out.println("--------------------------");
                System.out.println("MESSAGE #" + (i + 1) + ":");
                dumpEnvelope(msgs);
    public void printAllMessages() throws Exception {
    // Attributes & Flags for all messages ..
    Message[] msgs = folder.getMessages();
    // Use a suitable FetchProfile
    FetchProfile fp = new FetchProfile();
    fp.add(FetchProfile.Item.ENVELOPE);
    folder.fetch(msgs, fp);
    for (int i = 0; i < msgs.length; i++) {
    System.out.println("--------------------------");
    System.out.println("MESSAGE #" + (i + 1) + ":");
    dumpPart(msgs[i]);
    public static void dumpPart(Part p) throws Exception {
    if (p instanceof Message)
    dumpEnvelope((Message)p);
    String ct = p.getContentType();
    try {
    pr("CONTENT-TYPE: " + (new ContentType(ct)).toString());
    } catch (ParseException pex) {
    pr("BAD CONTENT-TYPE: " + ct);
    * Using isMimeType to determine the content type avoids
    * fetching the actual content data until we need it.
    if (p.isMimeType("text/plain")) {
    pr("This is plain text");
    pr("---------------------------");
    System.out.println((String)p.getContent());
    } else {
    // just a separator
    pr("---------------------------");
    public static void dumpEnvelope(Message m) throws Exception {       
    pr(" ");
    Address[] a;
    // FROM
    if ((a = m.getFrom()) != null) {
    for (int j = 0; j < a.length; j++)
    pr("FROM: " + a[j].toString());
    // TO
    if ((a = m.getRecipients(Message.RecipientType.TO)) != null) {
    for (int j = 0; j < a.length; j++) {
    pr("TO: " + a[j].toString());
    // SUBJECT
    pr("SUBJECT: " + m.getSubject());
    // DATE
    Date d = m.getSentDate();
    pr("SendDate: " +
    (d != null ? d.toString() : "UNKNOWN"));
    static String indentStr = " ";
    static int level = 0;
    * Print a, possibly indented, string.
    public static void pr(String s) {
    System.out.print(indentStr.substring(0, level * 2));
    System.out.println(s);
    }END OF PART 2
    END OF PROGRAM 2
    P.S: CHECKING !!
    STEP 1.
    First compile and execute the PROGRAM 1 with your USERNAME & PASSWORD. This will send a mail to your own account.
    STEP 2.
    Now compile both PART 1 & PART 2 of PROGRAM 2. Then, execute PART 1 - Main.java. This will retrive the mail sent in step 1. njoy! :)
    In future, I hope this is added to the demo programs of the Java Mail API download package.
    This is for 3 main reasons...
    1. To prevent a lot of silly questions being posted on this forum [like the ones I did :(].
    2. To give the first time Java Mail user with a real time working example without code modification [code has to use command line args like the demo programs - for instant results].
    3. Also, this is what google has to say..
    "The Gmail Team is committed to making sure you always can access your mail. That's why we're offering POP access and auto-forwarding. Both features are free for all Gmail users and we have no plans to charge for them in the future."
    http://mail.google.com/support/bin/answer.py?answer=13295
    I guess bshannon & Java Mail team is hearing this....
    Again, Hurray and thanks for helping me make it!! cheers & no more frowned faces!!
    (: (: (: (: (: GO JCODERS GO!! :) :) :) :) :)
    codeace
    -----                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

    Thanks for the reply,
    I did checked by enabling session debuging and also checked pop settings it's enabled for all
    mails, I tried deleting some very old messages and now the message count is changed to 310.
    This may be the problem with gmail.
    Bellow is the output i got,
    DEBUG: setDebug: JavaMail version 1.4ea
    DEBUG: getProvider() returning javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsystems, Inc]
    DEBUG POP3: connecting to host "pop.gmail.com", port 995, isSSL false
    S: +OK Gpop ready for requests from 121.243.255.240 n22pf5432603pof.2
    C: USER [email protected]
    S: +OK send PASS
    C: PASS my_password
    S: +OK Welcome.
    C: STAT
    S: +OK 310 26900234
    Custom output: messageCount : 310
    C: QUIT
    S: +OK Farewell.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Turning my Dreamweaver website into a online store

    Can someone please help me.  I have created a website that will have a online store.  I am at the point where I am ready to add the custom html / tags from my hosting company that will make my site a store.  The instructions tell me to delete part of my website and copy and paste their code in its place.  Is anyone failmer with this?? If yes, can you give me a short example of what part of my site to delete and replace with their information.
    Thanks in advance

    Not sure that this will work:
    firstly the personal web sharing thing is only for
    computers on a network or intranet not across the
    internet.
    That's not true - I used it for years to host my own website. The button in System Preferences simply issues the command 'sudo apachectl start' to start the Apache webserver.
    Anyway, to host your website, you'll need to not only turn on Personal Web Sharing (the relevant firewall ports on the G5 should open up automatically) on the G5, but you'll need to set up your router as well.
    Hopefully there's some place on your router where it shows you its WAN IP, i.e., the address that it has for the "outside world". That's the address that any visitor would need to connect to. Of course, this could change if you have a dynamic IP connection with your ISP.
    The router also needs to be configured to forward traffic to your G5 if that traffic arrives on port 80 (the standard port for http traffic), and maybe on port 443 (for https connections). This may be called port forwarding or virtual servers or something like that, depending on whose router you have. You'll also need open up those ports on the router's built-in firewall.
    If you want to use "proper words" in the URL, you need a domain name. Preferably, you'll have a static IP address to use with this, or if you don't, you can use a service such as DynDNS.
    This is the setup in a nutshell. Work with getting this configured and see if someone can successfully connect to your server from the outside.
    Feel free to post back with questions as much as you like. It will work; I had my old PM9600 (running OS X) operating as a webserver/mailserver for several years.

  • Score online store.

    Hello!
    First, I want to apologize for my bad English, to write this message, I am using Google automatic translator.
    Your attention is perhaps the very first online store, which is completely made only with Adobe Muse! Important for me to hear the opinion of both the design the store and its products. Except paid templates in the store you can download free templates. Store can be viewed at this link, or copy into your browser - SiteForMuse.com
    Please answer the following questions:
    How much do you think should be templates for Adobe Muse?
    Who will be interesting templates for Adobe Muse?
    Which sites would you like to see for free download?
    Below, will not create a large background of the store.
    About 6 months ago, I first saw the Adobe Muse. At that time, I already had a lot of experience building websites with many different CMS. The first impression of the program was enjoyable, so I took a more in-depth study. In three days, I have completely mastered this program, and I realized that this is the ideal tool for "instant" (maximum two days) the development of sites for small businesses and individuals. With Muse, you can quickly create prototypes site.
    At this point, I had eight of satisfied clients for whom I did a site just for five days, from the date of signing the contract. Only, it is important to note that these customers are not interested in the quality of the code, the main thing that would work, and fast.
    We realized that Adobe Muse super program for fast development of templates and layouts to create larger projects.
    Now, every weekend my friend and I are doing at least two templates for Adobe Muse, which now want to share with those who are just beginning to learn interesting world of web design!
    Our store for two weeks, and the only thing that I currently do not like it, it's terribly difficult to promote the store. Adobe Muse still creates a lot of extra code.
    Thank you!

    I have already been contacted. I informed them that I will be returning the entire order upon receipt. It is unacceptable to me to have to chase things down like this. Better testing between your store front and the Amazon site should have been done.
    Your support staff was not empowered to make a?decision about a mere 40 dollars.
    I cannot do business with companies like Creative. I will still enjoy the 2 sets of Creative PC speakers I have purchased, but I will never purchase another Creative product.
    Email I finally received:
    Hi Jim,
    I have received an email regarding your concerns, and I would like to take the time to handle this personally. I will work to refund the $40 and give you a coupon for 20% off your next purchase (MFQBBLEU) Please keep in mind that this coupon is exclusi've to you and cannot be distributed. I sincerely apologize for any inconvenience this has caused you. We really appreciate your business and want to help make your experience better.
    Thanks,
    Johann Pacla
    Channel Marketing & eCommerce Manager
    Creative Labs, Inc.
    [email protected]
    408.28.9825 phone
    my response:
    there is no need. i will be returning the entire order to amazon upon arrival.
    I am sure Johann belei'ves me as I have not received a reply to that response.

  • How can I create a Online Store using Muse? (with not Business Catalyst)

    How can I create a Online Store using Muse with not Business Catalyst for example three services
    _ttps://orders.self-pub.net/checkout.php?m=fastcheckout
    _ww.self-pub.net/services/covers.html

    Hi,
    Unfortunately there is no option stand alone in Muse to create an online store. However if any hosting plan uses CMS feature like Business Catalyst and ecommerce using modules and tags, you can use the same proceedure as for Business Catalyst and integrate that system and host the Muse site on their platform and that would work.
    There is other thing that you can try is, Insert HTML codes to link the pages and some contents in Muse to your desired CMS. What you can also do is after you create the site in Muse, you can export the Muse site and get the layout and design of your site and copy paste the codes for pages with some HTML and coding skills to integrate with your desired hosting.
    Hope this helps.
    Regards,
    Rajan

  • IPhoto 2014 Ordering prints, problems communicating with apple online store

    iPhoto v. 9.5.1
    When I'm trying to order prints directly from within iPhoto, i get this error "There was a problem communicating with the Apple Online Store. Please try again."
    I tried:
    - Booting from safe mode
    - Calling tech support
    - Reinstalling iPhoto
    - This guide: http://b.rthr.me/wp/?p=356
    The only thing that are partly working is changing country iPhoto > Preferences > Advanced > Print Product Store.
    If i change from Denmark to Germany or UK, i get the check out screen - but I can't pay with a danish credit card or choose to have the package send to Denmark.
    Any ideas?

    The following are two fixes posted by other users that helped them:
    #1
    go to the System/Sharing preference pane and make sure Remote Apple Events is checked.
    If it is, uncheck it and then recheck and try ordering again.
    #2
    Quit iPhoto.
    From the Finder menu bar, choose Go > Utilities to access your Utilities folder (or press Shift-Command-U).
    In your Utilities folder, open Keychain Access.
    Find the "NetServices" entry in your Keychain Access window.
    Select the "NetServices" entry and press the delete key.
    Reopen iPhoto and attempt to place your order again.
    You should be prompted to enter your account information if you deleted the Keychain entry successfully.
    After entering your account information, you should be able to complete your order.
    OT

  • How can I file a formal complaint with the Apple Online Store Canada?

    I've spoken to two customer service representatives at this point about an order that I cancelled within a half an hour of placing it, as I was initially unaware that the product I purchased would not fit my sister's iPhone. As stated in the Cancelled Order portion of the following page: http://store.apple.com/ca/help/viewing_changing_orders#cancel, I should NOT have been billed for the order. I was billed last Friday and am still yet to receive the refund, despite the fact that the first rep I spoke to advised that my money would be refunded in one day. The statement on the link I provided is completely misleading, as well as the email I received stating that I would not be charged at all. Someone with Apple must amend this statement on the website and the automated emails, as it could be considered legally misleading. I will in no way be pursuing any legal action, as I don't have the time and I'm only out $90.00, but I can't imagine having purchased the MacBook that I wanted to purchase prior to this incident and going through an ordeal like this again. Can someone please advise who I should contact and where I can find their contact information please? I love the apple products that I own and would hate to discontinue my customer relationship with the company.

    Also, please remember that no refund from any store is instantaneous. They will process the refund, probably within 24 - 48 hours. After that, your bank/credit card company has to credit your account....... mine takes at least 3 business days to do so (the banks are very efficient in posting charges, but like to keep the money for a couple of days before giving it back to you - they've been doing that for years).
    Edit: I just checked their return/refunds policy and it includes this:
    Once we receive your item, a refund is initiated immediately. If you canceled a pickup item, and you were billed for it, we initiate your refund immediately after you submit your cancel request. The way your refund is processed depends on your original payment method:
    If you paid by credit or debit card, refunds will be sent to the card-issuing bank within five business days of receipt of the returned item. Please contact the card-issuing bank with questions about when the credit will be posted to your account.
    Products purchased from the Apple Online Store using an Apple Store Gift Card will be refunded to you as an Apple Store Gift Card by email within 3 business days. If you’d like us to mail you an Apple Store Gift Card, ask the representative helping you. You will receive it within 8 business days via United States Postal Service (USPS). If you purchased an item from the Apple Online Store and are returning it to an Apple Retail Store, you'll receive an Apple Store Gift Card by email within 3 business days.
    Note that it states it will be initiated immediately, but  will be sent within 5 business days.
    Read the entire policy here:
    http://store.apple.com/us/help/returns_refund

  • I'm from Brazil and I would like to know if the unlocked iPhone 5 which advertesed on the Apple Store webpage works fine in Brazil. Could someone from Apple please confirm that?

    Hello Apple Support Team,
    I'm from Brazil and I would like to know if the unlocked iPhone 5 which is advertesed on the US Apple Store webpage works fine in Brazil. Could someone from Apple please confirm that for me?
    Thanks in advance.

    The iPhone bought unlocked from the Apple store in the US will work in Brazil on GSM. Nevertheless the LTE frequencies might be different.
    Be aware that:
    You will NOT be able to order from the US Apple online store. You will have to go to a physical Apple store in the US.
    The warranty is only valid in the US and you will not be able to get warranty service in Brazil.
    With all of that, why not buy the iPhone in Brazil?

  • 64 bit Windows 7 Itunes 10.5 store not working

    64 bit Windows 7 Itunes 10.5 store not working:  Reset netsh winsock, turned off fierwalls, etc.  Still Itunes store comes up as blank white.  I need help.  I also suggest Apple made it possible to download from a website instead constantly glitchy software.
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    Dell Inc. Inspiron 620
    iTunes 10.5.3.3
    QuickTime 7.7.1
    FairPlay 1.13.37
    Apple Application Support 2.1.6
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 4.0.0.97
    Apple Mobile Device Driver 1.57.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.5.502
    Gracenote MusicID 1.9.5.115
    Gracenote Submit 1.9.5.143
    Gracenote DSP 1.9.5.45
    iTunes Serial Number 002EAD84036361B8
    Current user is not an administrator.
    The current local date and time is xxx
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    Intel Corporation, Intel(R) HD Graphics Family
    **** External Plug-ins Information ****
    No external plug-ins installed.
    iPodService 10.5.3.3 (x64) is currently running.
    iTunesHelper 10.5.3.3 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:    {81DAE0D9-A8E7-418D-A08C-386B4561B2B7}
    Description:    Realtek PCIe GBE Family Controller
    IP Address:    xxx
    Subnet Mask:    xxx
    Default Gateway:    xxx
    DHCP Enabled:    Yes
    DHCP Server:    xxxx
    Lease Obtained:    Sun Feb 26 22:49:54 2012
    Lease Expires:    Wed Feb 29 17:19:08 2012
    DNS Servers:    75.75.76.76
            75.75.75.75
    Active Connection:    LAN Connection
    Connected:    Yes
    Online:        Yes
    Using Modem:    No
    Using LAN:    Yes
    Using Proxy:    No
    SSL 3.0 Support:    Enabled
    TLS 1.0 Support:    Disabled
    Firewall Information
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was successful.
    Connection attempt to Gracenote server was successful.

    I've removed PCTools from the reg.
    Okay ... PC Tools has released an update for some LSP-related iTunes conflicts, so it might also be worth investigating that:
    iTunes is not working correctly with PC Tools protection software installed

  • IPod Classic 160GB film library sync problem -  trying to sync films that have converted from purchased DVD to mp4 format locally, not purchases from the online store - all other libraries sync perfect - why?

    Hello Apple and the iTunes Windows PC users community.
    I am trying to sync films that I have converted from purchased DVD to mp4 format locally, not purchases from the online store. The mp4s all appear and play successfully in my iTunes application but will not sync across to the iPod film library folder.
    For your information: I am using iTunes 11.1.3.8 on a Windows 7 64bit machine with 500GB hard disk and 8GB of Ram in the UK.
    I have restored the iPod classic 160GB three times now to see if it was a hardware problem with no joy. Each time all the music restores properly as do the podcasts and all the items in TV programmes all appear to sync and work fine.
    I have also tried to copy films into the TV Programmes to get around it with no joy. They always go to the films section to start with. It is just the Films library that does not sync - all others work perfectly. As a last resort I have uninstalled and re-installed iTunes with no joy either.
    I am technically savvy and have gone through the itunes and ipod settings but nothing appears to make a difference - This is the first time I have had to post here as I can usually solve the majority of the ipod anomilies but this one has me flummoxed.
    Has the film encoding type changed in the newest itunes update? - Has this happened to anybody else and is it a hardware, software, or operating system problem.

    Having uninstalled the current version 11.1.3.8 and loaded and older version of iTunes 10.7.0.21 I can now categorically confirm that the newest update seems to be causing the problem as the films and TV Programmes are syncing perfectly on this older version.
    If you are going to do this please dont forget to remove the  ' iTunes Library.itl' file as this stops the older versions from running as I've just found out

Maybe you are looking for

  • Document Management Portlet

    I just wonder if anybody had a chance to use or evaluate prebuild portlets in the WebLogic Portal 8.1. I would like to buy WebLogic to build our internal portal but I need some functionality to be out-of-the-box like calendar, news, msg board, hopefu

  • Imac to samsung blueray wirelessly with no router?

    Is it possible? I'm using a wireless LAN adapter. one into back of blue ray and the other is supposed to go into the back of the cable modem. but no usb port is there. i heard that i could plug the USB adapter right into the back of my Mac and then s

  • When Downloading Update for Adobe Reader.

    I am haveing problems installing Current Version of Adobe Reader on my Laptop. I meet the system requirements and when the instalaion get to the point to put it on my computer it says. Can not acess network location. What can i do to fix this.

  • "Service Unavailable" error is unidentified

    Am I the only one bothered by the lack of application identity on the "Service Unavailable" error box? This pops up infrequently enough that I can never remember which application is putting it up. Would it be so hard to title it "Oracle Calendar Ser

  • PLEASE PLEASE PLEASE ADD 'Search this forum' widget

    http://forums.adobe.com/message/2753563#2753563 If you want your users not to ask the same question over and over again, then please install the widget mentioned in the forum post above.