Muse uploading multiple sites with same domain?

It seems that when i upload my site via FTP, if i type the domain without www. and only Http, it is uploading and creating a separate site then when i submit an update with www.
www.threesistersgarden.org
http://threesistersgarden.org/
How can i fix this issue?

Hi Ho Yin Wong,
Are you referring to entering the domain name in the 'FTP server' field or the 'Site URL' field?
- Abhishek Maurya

Similar Messages

  • Multiple sites and personal domain

    Hi everyone!
    I'm having a problem with iWeb 08. Here's the details:
    Using iWebsite and iWeb '08 I've created 2 websites, one for personal use and one for my business.
    Now I'm interested in buying a personal domain for my business website.
    How can I do to set the personal domain only to my business site, leaving the personal one unchanged?
    Cheers,
    Samuele

    An easy way to manage multiple sites is either iWebSites or MultiSite.
    I use iWebSites to manage multiple sites.. It lets me create multiple sites and multiple domain files.
    If you have multiple sites in one domain file here's the workflow I used to split them into individual site files with iWebSites. Be sure to make a backup copy of your original Domain.sites files before starting the splitting process.
    This lets me edit several sites and only republish the one I want. Works for me.
    OT

  • Can we create same party site with same customer in different OU

    I am able to create same party sites with same customer in different Operating Unit through front end but I am not able to do so using TCA Api HZ_CUST_ACCOUNT_SITE_V2PUB.create_cust_acct_site .I am getting the below error 'Value for cust_account_id - party_site_id must be unique'.Ineed to migrate customer details from one OU to another OU and the party site number need to be same .Can anyone suggest a way in which I can do the above ?
    Reeja

    We can create multiple customer acct site across different OU pointing to same party_site_id with API's also. I am sure that you have initialise the org context in your code somewhere and thus its giving you this error. Reinitialise the org to target org before calling this API.
    Thanks
    Amit Singh

  • Upload multiple files WITH correct pairs of form fields into Database

    In my form page, I would like to allow 3 files upload and 3 corresponding text fields, so that the filename and text description can be saved in database table in correct pair. Like this:
    INSERT INTO table1 (filename,desc) VALUES('photo1.jpg','happy day');
    INSERT INTO table1 (filename,desc) VALUES('photo2.jpg','fire camp');
    INSERT INTO table1 (filename,desc) VALUES('photo3.jpg','christmas night');
    However, using the commons fileupload, http://commons.apache.org/fileupload/, I don't know how to reconstruct my codes so that I can acheieve this result.
    if(item.isFormField()){
    }else{
    }I seems to be restricted from this structure.
    The jsp form page
    <input type="text" name="description1" value="" />
    <input type="file" name="sourcefile" value="" />
    <input type="text" name="description2" value="" />
    <input type="file" name="sourcefile" value="" />The Servlet file
    package Upload;
    import sql.*;
    import user.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.Map;
    import java.util.HashMap;
    import java.util.Date;
    import java.util.List;
    import java.util.Iterator;
    import java.io.File;
    import java.io.PrintWriter;
    import java.io.IOException;
    import java.text.SimpleDateFormat;
    import org.apache.commons.fileupload.servlet.ServletFileUpload;
    import org.apache.commons.fileupload.disk.DiskFileItemFactory;
    import org.apache.commons.fileupload.*;
    public class UploadFile extends HttpServlet {
    private String fs;
    private String category = null;
    private String realpath = null;
    public String imagepath = null;
    public PrintWriter out;
    private Map<String, String> formfield = new HashMap<String, String>();
      //Initialize global variables
      public void init(ServletConfig config, ServletContext context) throws ServletException {
        super.init(config);
      //Process the HTTP Post request
      public void doPost(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException {
        request.setCharacterEncoding("utf-8");
        response.setCharacterEncoding("utf-8");
        response.setContentType("text/html");
        PrintWriter out = response.getWriter();
        Thumbnail thumb = new Thumbnail();
        fs = System.getProperty("file.separator");
        this.SetImagePath();
         boolean isMultipart = ServletFileUpload.isMultipartContent(request);
         if(!isMultipart){
          out.print("not multiple part.");
         }else{
             FileItemFactory factory = new DiskFileItemFactory();
             ServletFileUpload upload = new ServletFileUpload(factory);
             List items = null;
             try{
                items = upload.parseRequest(request);
             } catch (FileUploadException e) {
                e.printStackTrace();
             Iterator itr = items.iterator();
             while (itr.hasNext()) {
               FileItem item = (FileItem) itr.next();
               if(item.isFormField()){
                  String formvalue = new String(item.getString().getBytes("ISO-8859-1"), "utf-8");
                  formfield.put(item.getFieldName(),formvalue);
                  out.println("Normal Form Field, ParaName:" + item.getFieldName() + ", ParaValue: " + formvalue + "<br/>");
               }else{
                 String itemName = item.getName();
                 String filename = GetTodayDate() + "-" + itemName;
                 try{
                   new File(this.imagepath + formfield.get("category")).mkdirs();
                   new File(this.imagepath + formfield.get("category")+fs+"thumbnails").mkdirs();
                   //Save the file to the destination path
                   File savedFile = new File(this.imagepath + formfield.get("category") + fs + filename);
                   item.write(savedFile);
                   thumb.Process(this.imagepath + formfield.get("category") +fs+ filename,this.imagepath + formfield.get("category") +fs+ "thumbnails" +fs+ filename, 25, 100);
                   DBConnection db = new DBConnection();
                   String sql = "SELECT id from category where name = '"+formfield.get("category")+"'";
                   db.SelectQuery(sql);
                    while(db.rs.next()){
                      int cat_id = db.rs.getInt("id");
                      sql = "INSERT INTO file (cat_id,filename,description) VALUES ("+cat_id+",'"+filename+"','"+formfield.get("description")+"')";
                      out.println(sql);
                      db.RunQuery(sql);
                 } catch (Exception e){
                    e.printStackTrace();
            HttpSession session = request.getSession();
            UserData k = (UserData)session.getAttribute("userdata");
            k.setMessage("File Upload successfully");
            response.sendRedirect("./Upload.jsp");
      //Get today date, it is a test, actually the current date can be retrieved from SQL
      public String GetTodayDate(){
        SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd");
        String today = format.format(new Date());
        return today;
      //Set the current RealPath which the file calls for this file
      public void SetRealPath(){
        this.realpath = getServletConfig().getServletContext().getRealPath("/");
      public void SetImagePath(){
        this.SetRealPath();
        this.imagepath = this.realpath + "images" +fs;
    }Can anyone give me some code suggestion? Thx.

    When one hits the submit button - I then get a 404 page error.What is the apaches(?) error log saying? Mostly you get very useful information when looking into the error log!
    In any case you may look at how you are Uploading Multiple Files with mod_plsql.

  • Read multiples files with same extension

    how to read multiples files with same extension in java.
    for ex : i would like to read all .DAT files from C drive using java.
    How is it done

    - You create the filter
    - You get the list of files
    - You open and read each file.
    For the first two above you look at java.io.File and listFiles(FileFilter filter).
    For the third you find whatever input stream is appropriate from java.io.*

  • Need help in L2tp Lac router loadbalance to 2 LNS routers with same domain

    hi all ,
    ive implemented the LAC LNS with l2tp protocol ,
    i fololowed the articale
    https://supportforums.cisco.com/docs/DOC-6102
    https://supportforums.cisco.com/docs/DOC-6101
    and its 100 % fine ,
    but i have a question now
    what about if i have two LNS routers not 1 and those are with same domain ,
    how will LAC load balance pppoe sessions to the LNS routers ?
    again, i have 2 LNS
    regards

    Since the AEBS has only a single ethernet LAN port, the correct way to connect more that one cabled device to it is to use a basic ethernet switch. Using a router to do this job as you have done is (a) unnecessary, (b) more costly, and (c) directly causing the very problem you are trying to solve.
    Get rid of the Linksys router, replace it with a $30 4-port ethernet switch, and your problems will go away. Since the AEBS will be the only router on your network (as it should be) you only need to set up port mapping on the AEBS as described in the article How do I use port mapping.

  • Multiple accounts with same email

    I have multiple accounts with same email
    The one that has all my contacts is the one attached to FB but for some odd reason I can no longer access this specific account
    When I try to reset my password, it only keeps asking me to change my FB password
    Once I try logging in on Skype, it keeps asking my FB to connect to the other 2 Skype accounts, completely diffente usernames
    I am only interested in the one that originally connected to my FB as it has all my contacts
    As my other 2 accounts are my old Skype accounts and have my old contacts from years ago

    Actually this morning I was able to log on the account from an iPad with no fuss but the pc refuses to sign in^^^!???! "Skype couldn't connect" - What is going on???
    I also found out that I could sign in via a browser but not via skype program... So I uninstalled it and installed it again and it's working now...
    I have now changed the email so I don't have 3 accounts with the same primary email as Skype seems to not being able to handle multiple accounts with same email!!!

  • Multiple members with same alias

    I have multiple members with same alias name. Are there anyway to build dimension members with same alias name?

    Typically I will concatinate the member name (as either a prefix or suffix ) to the Alias to make it unique

  • Mounting multiple directories with same name on different severs to a single mount point on another server

    We have a requirement where in we have multiple solaris servers and each solaris server has a directory with the same name.
    The files in these directories will be different.
    These same name directories on multiple severs has to be mounted to a single directory on another sever.
    We are planning to use NFS, but it seems we can not mount multiple directories with same name on different severs to a single mount point using NFS, and we need to create multiple mount points.
    Is there any way we can achieve this so that all the directories can be mounted to a single mount point?

    You can try to mount all these mount points via NFS in one additional server and then export this new tree again via NFS to all your servers.
    No sure if this works. If this works, then you will have in this case just an additional level in the tree.

  • Multiple accounts with same email can't acces original account

    ok, so i created a new skype. I was messing with skype account on my desktop and wound up unlinking and re linking the account basically i made 2 extra accounts and they have my live: random.namehere_1 and live: random.namehere_2 and i cant log into my original one anymore also when i try to do a recovery it says i have 2-3 skype accounts on my email and i cant log into my accounts by typing in the live:random.namehere and the  password it just says ooops something went wrong basicallly saying the pw and account name are wrong when they arent i made sure of it. so how do i eliminate the cloned accounts and log into the main one.  

    Actually this morning I was able to log on the account from an iPad with no fuss but the pc refuses to sign in^^^!???! "Skype couldn't connect" - What is going on???
    I also found out that I could sign in via a browser but not via skype program... So I uninstalled it and installed it again and it's working now...
    I have now changed the email so I don't have 3 accounts with the same primary email as Skype seems to not being able to handle multiple accounts with same email!!!

  • Multiple Web Sites with Personal Domain Names - Overview

    I have read through the last 10 pages of these discussions and have almost worked this out, but I need some help.
    Problem:
    I want to publish and edit two separate web sites with their own, individual, personal web addresses
    from the same user account on the same Mac using iWeb '08 (2.0.2) and my .Mac account
    _So far:_
    I have purchased and registered the two domain names (with Cheap-DomainRegistration.com)
    I have configured the CNAME to point to web.mac.com, and "Set up a Personal Domain" in iWeb successfully, but using a separate Mac for each web site.
    The two sites work great.
    _What (I think) I need to know:_
    (excuse me for copying these posts out, but I can't find a way to link them to this post)
    1) Should I be using iWebSites as suggested by Old Toad (posted Jan 24 in response to StAnNe's "Multiple Websites--HELP!!!")?
    I use iWebSites to manage multiple sites.. It lets me create multiple sites and multiple domain files.
    2) Should I be using Mireille's approach (also posted Jan 24 in response to StAnNe's "Multiple Websites--HELP!!!")?
    Yes you are correct in the thought that with a family pack you can use different accounts and that is the easiest way to upload with one click to .mac. But it is still possible to publish differents sites to one .mac account if that is all one has. Even if the sites are in one domain file each purchased mysite.com domain name purchased can be pointed to a different page in the site
    Look at it this way
    Original Poster has
    site1 page 1 page 2 and so on
    then he/she has brothersite page 1 and so on.
    They each have a domain name purchase wherever
    then site1domain.com is forwarded to site 1 page1
    and brotherdomain.com is forwarded to brothersite page 1.
    Even though both sites are in the same file they do not have anything to do with each other.
    This is one possibility there are others but for a novice user this could be the way to go for simplicity.
    (Mireille, if you're there, can you clarify what you said - thank you)
    3) Would I use Roddy's fix (posted Jan 23 in response to canadensis' "Publishing Multiple Websites?")?
    Here's an example of how you can separate two websites that are on the same domain file.
    Quit iWeb
    Create a new folder on your desktop and call it "iWeb Sites".
    Inside this folder create two more - Website A, Website B.
    Go to Home Folder/Library/Application Support/iWeb and copy your domain file - command C
    Paste this into folders A and B - command V - and also paste a copy of it somewhere else - like in Docs - in case you make a mistake!
    Double click the domain file in the folder Website A - this will launch iWeb.
    In the left column, delete site B, save and quit iWeb.
    Double click the domain file in the folder Website B to launch iWeb.
    Delete website A, save and quit.
    Drop the iWeb sites folder into your Home Folder.
    If you want quick access to this folder you can highlight it and do command L to create an alias to leave on the desktop.
    From now on, to launch any site in iWeb you open its folder in the iWebsites folder and double click the domain file.
    This is not necessary when you are working on only one site as iWeb saves the domain file of the last site you were working on to Home Folder/Library/Application Support/iWeb. When you open the iWeb application, the last site you worked on will be launched.
    Summary:
    I'm not sure if some of the answers in previous discussions allow for personal domain names, which is what I need.
    I would be very grateful for any suggestions as I'm getting bogged down.
    Many Thanks,
    Jeff

    When you said, "you don't need to do CNAME for both sites…", would this method still allow me to use personal web addresses for both sites?
    Yes. With "Ordinary Forwarding" you normally just type your .Mac url (web.mac.com/username/sitename) into a form at the place where you have your name.
    I thought I was using 'web.mac.com' as the 'www' CNAME (alias) for my personal domain name (web address), so that when someone typed in my personal domain name they would 'go' to the domain registration location, which would then pass it on to the .Mac server, where my web site is hosted.
    That's exactly right. It's just not the only way to do that. Ordinary Forwarding is another way, but it differs in terms of what appears in the address bar of the browser. Either you will see web.mac.com/username/.... or, if you add "masking", you will see your personal name for all pages. The CNAME method results in a address bar that reads www.myname.com/sitename/pagename.html.
    Am I way off?
    All help gratefully received,
    Jeff

  • How to publcish new Muse Site with existing domain name

    We've created a new site in MUSE and we are ready for it to go live via BC. can we just use the same domain name of our existing site that is hosted by others? Will it replace it? Or do I have to cancel my existing hosting service first?
    Thanks!
    Shari
    http://www.pinterest.com/pin/create/extension/

    Hi
    You may create site using Muse, have the Muse project published to Business catalyst.Once done, have the site launched as either free site you get or as paid one based on you requirements.
    Once the site is launched, you may have the domain added to the site via site settings > site domains > new domain.
    When you add the domain you have two options :
    1. Use our DNS service
    2. Use External DNS service
    Based of your requirement , you will need to add the domain and have the domain redirected to Business catalyst where the site is now hosted.
    As far your existing site is concerned, you may want to keep it until the muse site is ready and published to business catalyst. However, once you are ready and domain is redirected , you may cancel your subscription with third party hosting service .
    You may find some links listed below helpful ( are related to process explained above) :
    1.Business Catalyst Help | Creative Cloud Sites / Upgrade and launch a site
    2. Business Catalyst Help | Business Catalyst for Muse users
    3. Adding a domain name to your site and taking site live

  • Getting old site off the 'net without appropriate files. (to start over with same domain name)

    As a complete novice, I'm not even sure how to start this question...but, I have tried everything and I think I have "lost" my website in terms of bringing in back into DW and changing/updating it.  My backup files on my computer have disappeared and the appropriate files through my cPanel to bring it back to in order make changes aren't there.  The website still functions, but it is outdated for my business needs.
    So, at this point, my question is this; how can I gain control over the domain and start over from scratch.  I don't want what is out there anymore, but without control through the above mentioned devices, is it even possible to build a new website and get the old one off the 'net as it is and still keep the original www.name.com?
    I'm clueless at this point.  Thanks.

    Chazmonk wrote:
    So, at this point, I don't know what is really going on.  My main goal was to get my existing website off the net and put something updated on with the same domain name.  I was successful with what JTANNA suggested, but I don't know what I'm doing with a mirrored site in terms of what my needs are.  I am not against changing the domain name and just leaving this one out there, though I did put a great deal of time into building it.  I would take some further help if anyone has more suggestions, but I'm about ready to move one.
    Thanks for trying to help.
    You will need to sort out the FTP issues because when you have edited your site, you will need to upload it and so FTP details will be required.
    Your first port-of-call to sort this out is to contact your host who can reset the password for you so that you can start all over again.  The alternative, is to give your password/login details to Murray (PRIVATELY) so that he can try from his machine.  When this is done, you can always change the password for your own security.
    hth

  • Returning multiple sites from personal domain to iweb domain

    I have a family web site that I've posted to my .mac account. I've been asked to update another web site for a preschool that had been created previously by another mac user. She emailed me the domain and I was able to open it and make edits. I created two separate folders to keep the domain files separate. A few problems have happened since:
    First, I can still access my personal account in both iweb and via the internet, but the address that appears at the bottom of the page is now the preschool address. I want this account to remain hosted on my imac account.
    Secondly, for the preschool, the site should be hosted on personal domain. The site does show up on the bottom of that site (the same now as my personal one). What I would like it to post a temporary version of the password protected revised site on my .mac account until I am ready to replace the one that is currently up.
    So, I guess my biggest question for the moment is how do I return both sites to the .mac host until I am ready to upload one of them onto the preschool personal domain?
    When I go to the iweb folder in my idisk I can not move the folders containing the separate sites.
    I have read other posts regarding multiple domains and they have not fully addressed this issue.
    Many thanks, Emily.

    Was the other mac user using the personal domain (CName) feature of iWeb?
    Were you using it as well with your family site?
    This might be the problem, as you can only use the personal domain feature with one iWeb site.

  • IWeb 09 Multiple sites with multiple MobileMe accounts

    Hi guys, one more for you,
    i have my MobileMe account and my website, i also create to more small sites just for testing purpose, i want to know if i can have multiple websites on iWeb and each one with their own MobileMe account.
    (e.g)
    -- site1 ( [email protected])
    -- site2 ( [email protected])
    -- site3 ( [email protected])
    i have only One Mac computer and i have to work on 3 different sites with only this computer.
    Help please... I am new to Mac world ( but i love it )

    Do you really have 3 separate users or just want to publish 3 separate sites? If it's the latter then you can do all of them with just one MMe account. In your domain file with three sites the top size will be the "alpha" site in that if you enter the minimum URL, http://web.me.com/YourMMe_AccountName/, the top site will come up. To go to the other two sites you'll need to add the site name on the end of the URL above, i.e. http://web.me.com/YourMMe_Account_Name/Site_1name/.
    In this economy if you can do what you want with one account that's saving some $$$$.
    OT

Maybe you are looking for