Iweb changing home page address

Hi - although I created my site in iweb, I initially published it via FTP using Fetch. My home page was then www.ultimodevelopments.com.au/index.html (as you would expect). I thought it would be easier to publish using iweb directly so set this up & published it via the FTP server. My home page is now www.ultimodevelopments.com.au/ultimo/welcome.html
Why does it do this? I've tried reverting back to the old structure by finally deleting all published files yet it is still looking for a home page at www.ultimodevelopments.com.au/ultimo/welcome.html
This is a bit too messy for me - can anyone help?

When you used Fetch you only uploaded part of your site, namely the contents of folder named "ultimo". iWeb's own ftp always uploads the whole site (which is required for RSS subscribed buttons to work). To go back to the way it was, make sure you delete the index.html file on your server and again upload via Fetch only the contents of the ultimo folder.

Similar Messages

  • Cannot change home page

    cannot change home page. have moved and home page continues from last residence (router: 192.168.1.1). I now want a different home page. I have tried Tools>Use Current>OK, but my old 192.168.1.1 keeps coming back.

    Thank you, Anonymous, for your post. It was a good place to start. It never hurts to ask, "is it plugged in?" before assuming the machine is broken. I have tried the steps in your suggestion, but they don't work. Again, Thanks. -- Wayne

  • Change home page of an application

    How to change home page of an application ?

    Hi,
    Change home link from application security attributes
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/bldr.htm#CHDHIBHE
    Br,Jari

  • Safari - cannot change home page

    I've been struggling to change the home page but cannot seem to get rid of the default Mac page. I have changed home page in preferences, and the required page is showing clearly. However, the Apple page still loads every time I start Safari or open a new tab. Obviously there is something I am doing wrong. Any views on this?

    Hello Michael,
    This is really odd indeed two years of this! Sorry for your frustration.
    I think trying the Test or new account as Andy; )recommended would
    be very telling.
    Then you may have shipped the corrupt preference file over as well.
    you say Change home page to either another URL or "blank"
    Sticks in preferences box
    Close Safari
    Open and apple page appears yet again (despite preferences being to, say, blank).
    Just to be clear In Safari pref. the General tab;
    In the -> New windows open with: drop down is that set to "Home Page"
    You paste the preferred Url or you browse there
    Click on use "Current Page" when on the page you want
    and this does not work for you.
    it will not work if it is set to anything but the "Home page"
    I reiterated because you speak of "blank" does that mean you set it on
    Empty.
    I don't mean to be stubborn, it is just that i have had this issue.
    Mine was caused by an over site with the Empty/ bookmark etc. option
    on the drop down.
    Eme'~[ ) btw, your location, lovely imo.

  • Want to change home page. it say it's easy. no info on doing

    Question
    Want to change home page. it say it's easy. no info on doing so.

    See analytical info : [http://support.mozilla.org/en-US/kb/How%20to%20set%20the%20home%20page How to set the home page]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • Firefox keeps opening tabs on it's own whether I am on-line or not. I have reset several times and there are no pipe characters in the home page address.

    Firefox keeps opening tabs whether I am on-line or not. These are often games pages, but not always. I have reset several times and there are no pipe characters in the home page address. This is not the first time this has happened. The first time was a couple of months ago and a reset cured the problem, but this time it does not. How can I stop this occurring?

    '''''If this can happen with Firefox completely closed:'''''
    Some malware simply launches pages in your default browser from outside Firefox. Definitely scan for malware using some of the tools listed in our support article: [[Troubleshoot Firefox issues caused by malware]].
    There might be an additional step:
    Last year, many users reported advertising tabs opening randomly, sometimes even when Firefox was closed. It turned out that a program had created scheduled tasks to open those pages at certain times of day.
    You can check the Windows Task Scheduler:
    * Windows XP: Start button > [All] Programs > Accessories> System Tools > Scheduled Tasks
    * Windows Vista/7: Start button > Control Panel > System and Security > Administrative Tools > Task Scheduler
    * Windows 8: ?? You might try the charms bar search box if you don't find it in the control panel.
    * Past threads on the "dsite" problem:
    ** [https://support.mozilla.org/questions/967667 How can I keep Firefox from opening a window to website tofushopnews.com]
    ** [https://support.mozilla.org/questions/965048?page=2#answer-461509 How do I get rid of sponsorship tabs that open automatically?]

  • How do I change the page address?

    I am trying to figure out how to change the address of specific pages in an ADF application. Specifically, adding a directory that the page is located in.
    For example, if the page is currently located at "http://localhost:8000/context-root/faces/page.jspx";
    I would like to instead have it be located at "http://localhost:8000/context-root/faces/directory/page.jspx";
    I would also like to have the same behavior exist for task flows as well. (Eg: from "http://localhost:8000/context-root/faces/task-flow/page.jspx"; to "http://localhost:8000/context-root/faces/directory/task-flow/page.jspx";
    I am unsure of how to go about doing this. If i move the page itself to a directory, the request URL still follows the first pattern and not the desired pattern. I had thought there might be somethign in web.xml that might allow me to perform this mapping, but I have thus far been unable to find anything that looks like it would work. Is there any way to acheive the desired pattern (or something similar)?
    I am using JDeveloper version 11.1.1.6.0
    Thank you

    Sudipto Desmukh wrote:
    I can load the page and in the code it referencing the directory, but the address of the page does not changeWhere does it not change the address of the page ?
    Also hope that you kept the proper reference of teh page to directory/page.jspx in the DataBindings.cpx and package="directory" in its pageDefSorry for the late reply. I have changed the information in the DataBindings.cpx when dealing with moving pages. However, the address is not changing in the browser itself.
    The following is an example of what I'm trying.
    I have 2 pages, "home.jspx" and "directory/page.jspx".
    If I run it in JDeveloper and I run the page.jspx itself, then the URL exhibits the behavior I want.
    Browser URL: "http://localhost:port/context-root/faces/directory/page.jspx"
    However, if I navigate to the page through a task flow, it does not show the proper address and instead exhibits the below behavior.
    -First address: "http://localhost:port/context-root/faces/home"
    -Second address: "http://localhost:port/context-root/faces/home?_adf.ctrl-state=aw23ava3_1"
    What I need to have happen is the directory be part of the URL (and thus part of the GET request) even when using task flows for navigation.
    EDIT:
    I just created a blank project in the exact structure that I describe above and now I'm not having it render the directory if I run the page directly. I am at a loss for what is going on at this point.
    Edited by: mBaldwin on Aug 1, 2012 11:58 AM

  • Home page address is displaying additional information???

    Hello all,
    I am using iweb '09 and am running into something odd about (most definitely my fault) the text of my home page as it looks in the browser address bar.
    For example....i want my home page to just be www.test.com, however it is currently including the title of the domain folder from iweb (lets call it website) and the title of the home page (lets call it Olympics.html). So when I search for my site and click on www.test.com it goes to my site, but the address bar displays www.test.com/website/olympics.html when I just want it to say www.test.com.
    Can someone tell me how to fix this? Any help is greatly appreciated.
    Cheers,
    Azazal

    They will be able to find it, but it's up to you to include the necessary information to bump it up. You really need an index.html page.
    SEO is important - no one is just going to search for 'iweb dailynews' unless they already know the site, which defeats the purpose - plus you need to use content keywords so people searching for content rather than a specific website will find it. It's easy enough to get pages indexed, but if they come up on the 50th page when someone searches, you may as well not bother.

  • How to change home page in. Safari?

    How do I change. The home page in safari in ipad2.

    Hi,
    Load your home page then tap the icon just to the left of the Safari address bar and tap: Add to Home Screen
    In in the future if you need help with your iPad, post here:  https://discussions.apple.com/community/ipad/using_ipad
    This is the Safari for Mac forum.
    Carolyn  

  • Why does clicking on "Preferences" (to change home page) shut down Safari?

    What can I do to prevent Safari from immediately shutting down when I click on "Preferences" in an attempt to change my home page? Any help will be greatly appreciated.

    Hi Mark
    Welcome to Apple Discussions
    Sounds like the Preference file is corrupt.
    In the Finder, drag to the desktop the com.apple.safari.plist folder found in your User Account>Library>Preferences folder.
    Restart Safari. Open the preference file. If no crash you'll need to reset your Safari preferences to your liking, plus any custom settings found in the Edit Menu (spelling) or View Menu (status bar, bookmarks bar, custom icons in the "Customize Address Bar" ).

  • How Can I get rid of Yahoo home page? Changing home page doesn't work.

    A week or two ago, Yahoo started coming up as my home page. No matter how many times I change it back to Bing, every time I bring up Firefox, there is Yahoo as the home page. Changing it back to Bing and clicking ok is not working. I'm getting a little frustrated with this. How do I get rid of Yahoo coming up as my home page when I did not even ask for it?
    Thank you for your time and consideration.
    Sincerely,
    cbrsarah

    Hi johnbarr, please start a new question for further discussion since the original poster has marked this one as solved.
    For more information on viewing and managing your add-ons in Firefox, see:
    * [[Find and install add-ons to add features to Firefox]] (you'll notice there are several categories of add-ons on the page, the most important are Plugins and Extensions)

  • Changes done in options are not effected - not able to change home page

    When I do changes in the tools-options menu the same is not effected in the next re-start of firefox. For example if I change my home page to a new web page, the same is not opening in the next restart of firefox. Not only this any change done in the options menu is not effected

    See:
    * http://kb.mozillazine.org/Preferences_not_saved
    * https://support.mozilla.com/kb/How+to+set+the+home+page - Firefox supports multiple home pages separated by '|' symbols

  • Change HOME page in portal

    hello forum,
    Here is quite a newbe question I suppose..
    Is there a fairly easy method to change the content of the iViews on the HOME page in the portal?
    We wish only to change the text in the 'SAP Enterprise Portal' iView (com.sap.portal.welcome.iView) in the 'Portal Information' page. I already copied the original page and iView to a separate folder.
    Since we only need to show a simple text on this page, I think there is no need to develop a completely new iView, but instead want to change the existing iView (at least a copy of it).
    Thanks!
    Walter

    Hello M Peter,
    I was able to download the com.sap.portal.ivs.iviewservice.par.bak from the PCD; I imported it in NDS by means of 'import Portal Application Project from PAR file'; I was then able to see the contents of this file and make changes to the welcome.properties file in dist/PORTAL-INF/private/classes/. After changing the text for the 'WELCOME' field I used Create/Export PAR file to upload the changes back to the portal. One restart later leaves me with the following error after logon:
    Error occurred while trying to access desktop: "portal_content/every_user/general/defaultDesktop". The object does not exist or you are not authorized to access it. If this problem persists, contact your system administrator.
    I checked SAP note 869690 that describes this symptom; but I cannot request the default desktop by the stated URL. I created copies of the desktop and login pages in order to be able to change them, which might explain this behaviour.
    Because the only change is in the com.sap.portal.ivs.iviewservice.par service; how can I replace this file? I tried opening the original .PAR file in NDS and exporting it to the portal; but this does not change anything.
    This is a serious error; how can we restore original behaviour?
    Regards,
    Walter

  • Newbie, Change "home" page to regular page?

    How do I do that?
    I just started working away at page one of a gallery.
    Now I want a "front" or "home page."  But I can't seem to replace the one I've already created.  Seems stuck as "home."

    Not sure exactly what you are trying to do - but is seems you want to change a page name.
    In Plan View d-click on the page name to select it then enter your desired name.
    The basics of Muse are explained very will with the movies from Adobe at:
    http://tv.adobe.com/show/muse-feature-tour/

  • Would like to change home page to google

    Each time I attempt to change my home page from bing to google, I'm either told server cannot be found, or it returns to bing.

    You can use [https://addons.mozilla.org/en-US/firefox/addon/newtaburl/ NewTabURL] extensions to accomplish the same.

Maybe you are looking for