Problems with accessing website created in iweb

Hi peops, Have created a website with iWeb and published it to my friends and family. Some can see it, but some get a 'NOT FOUND' message..... has anyone else had that problem? The site is not password protected....
iMac PowerPC G5   Mac OS X (10.4.2)  

Some can see
it, but some get a 'NOT FOUND' message
Most likely this is because those getting the "not found" message are using a misspelled url. This can happen when you send a too-long version of the url by email or for other reasons. The url everyone should use is just
http://web.mac.com/username
It would help if you would provide your url here so people can verify there are no other problems.

Similar Messages

  • Problem with Access Policies (create multiple resources)

    I'm having a problem with Access Policies:
    The first policy must create a resource.
    And the following policies should create childs on the resource.
    The problem here is that when policies will add the childs, the resource is not provisioned yet.
    And then each one will create a resource but i just want one resource with the childs.
    When the resource is already provisioned, the policies update this resource properly.
    How can I fix this?
    tks

    Ricardo,
    I had a similar problem. In a post-process handler I was managing the user membership in specific roles through the removeMemberUser and the addMemberUser of the tcGroupOperationsIntf class.
    The last parameter of this method was a boolean which, when true, would automatically trigger the access policies programmatically in the post-process.
    The problem is that there also is an OOTB event handler for triggering access policies, so I was basically triggering the access policies twice and duplicated resources were appearing.
    Hope this helps.
    Cheers

  • Problem with internal links created in iweb 06 after upgrading to iweb 08

    I have a site I created in iweb 06 and have uploaded to my own server (not .mac). After switching to iweb 08, I have found that any blog entry that has a title with punctuation of any kind results in a broken link (404 page not found error). I am using fetch to upload the site, and am wondering if in need to change some fetch setting or preference. iweb 08 seems to use the blog entry title as the link, and it just won't work if there is any punctuation in the title. Everything uploaded perfectly in iweb 06. Is this a glitch in iweb 08 or am I doing something wrong. Thanks for any advice you can give. I have not upgraded to OS 10.5. (If you want to look at the site it's www.doylelogan.com/dlctravel)

    All your links are live except the one you mentioned.
    I don't understand what behavior you expect from the links. Your rollover color is very close to the normal and visited one. If you made it contrast more, the link would be more obvious.
    I don't like to underline links but maybe you need to do this if you feel that they are not obvious enough.
    Undo and redo the link that is not working.
    It may be that iWeb needs a jolt. Try the troubleshooting steps under "Fix iWeb" here....
    http://www.iwebformusicians.com/WebMusic/iWebTips.html
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.
    <Edited by Host>

  • Problem with accessing dynamically created movie clips, returns null...

    Hopefully this is a stupid question with an easy answer, if my code is straight forward enough.
    I am using this snippet of code to create menu items, and then use the jCount variable below to give the clips an index number, like so (which seems to be working just fine):
    for(var j:Number=0;j<xmlSubMenuLength;j++){ 
        var mcSubMenuItem:mcSubMenu=new mcSubMenu();   
        addChild(mcSubMenuItem);    
        jCount++;   
        mcSubMenuItem.name = "mcSubMenuItem" + jCount;
        //traces out names correctly
        trace ("---------------------------------jCount NAME = "+ mcSubMenuItem.name);
        mcSubMenuItem.x=mcMenuHolder.x+20;
        mcSubMenuItem.y =mcMenuHolder.y;
        mcSubMenuItem.y+= nextBtnY;
        nextBtnY+=subtopicSpace;
        global_subi.text = String(jCount); //i see the proper count of 10 in the text field
    However, when I try to access the clips using this snippet:  
    for(var j:Number=0;j<Number(global_subi.text);j++)//
      trace("GLOBAL SUBI = "+ String(global_subi.text));  //traces out 10, which it should
      var scSubMenuItem:String = "mcSubMenuItem" + j;  
      var scSubContent:Object = this.getChildByName(scSubMenuItem);
      trace(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>scSubContent:Object = "+ scSubContent); //returns null!
    My last trace statement returns null. Can anyone see my error, or explain why I can't access my clips after they have been created?
    Thank you muchly,
    ~Chipleh

    Hi kglad,
    Thanks for the response.
    "it's not clear from the shown code that jCount is initialized." - I've posted the relevant code below, which shows that I'm initializing jCount.
    "and it's not clear why you don't use j instead of jCount in that for-loop" - j is used as loop for creating the subtopic movie clips within the i for-loop. So, for each topic in i for-loop, create a group of suptopics using the j for-loop. The j for-loop re-initiates j every time the length of the subtopics is reached(if that makes any sense) - i.e. topic1>subtopic 1,2,3,4 : topic2>subtopic>1,2 : topic3>subtopic1,2,3,4
    jCount is used to keep a running count of the total number of subtopcs created - i.e. per the example above, jCount will display 10.
    var topicSpace:uint=button_mc.height;
    var subtopicSpace:uint = button_mc.height;
    var nextBtnY:uint = 0;//whatever;
    var jCount:Number = 0;
    function createXMLMenu(menuLength:Number,itemName:XMLList):void{
         var navItemText:XMLList = itemName;
          for(var i:Number=0;i<menuLength;i++)
               var mcMenuItem:mcMenu=new mcMenu();        
               addChild(mcMenuItem); 
               mcMenuItem.btnTxt.htmlText = i+1 +". " +navItemText[i];  
               mcMenuItem.ivar = i;  
               mcMenuItem.name = "mcMenuItem" + i;  
               mcMenuItem.x=mcMenuHolder.x;
               mcMenuItem.y =mcMenuHolder.y;
              //kglad's addition
               mcMenuItem.y+= nextBtnY;
               nextBtnY+=topicSpace; 
               var subVar:Number = i;//mcMenuItem.ivar 
               //Submenu content
               var xmlSubMenuLength:Number = xml.sim.bodyText.page[i].subpage.length()
               var menuItemAttachment:MovieClip = MovieClip(mcMenuItem); 
               for(var j:Number=0;j<xmlSubMenuLength;j++)
                     var xmlSubPageNumber:XMLList = xml.sim.bodyText.page[subVar].subpage;
                     var subNavLinkNumber:Number = xmlSubPageNumber[j];
                     var subTitleText:String = xml.sim.bodyText.page[subVar].subpage.subNavItem[j];
                     var mcSubMenuItem:mcSubMenu=new mcSubMenu();
                     trace("mcSubMenuItem.ivar = "+ j+1);
                     var mc2Attach2:MovieClip = MovieClip(menuItemAttachment);
                     mcSubMenuItem.btnTxt.htmlText = j+1 +". " +subTitleText;   
                     mcSubMenuItem.ivar = Number(subVar);
                     mcSubMenuItem.jvar = Number(j);
                     addChild(mcSubMenuItem);
                     jCount++;   
                     mcSubMenuItem.name = "mcSubMenuItem" + jCount;
                     trace ("---------------------------------jCount NAME = "+ mcSubMenuItem.name);
                     mcSubMenuItem.x=mcMenuHolder.x+20;
                     mcSubMenuItem.y =mcMenuHolder.y;
                     //kglad's addition
                     mcSubMenuItem.y+= nextBtnY;
                     nextBtnY+=subtopicSpace;    
                     global_subi.text = String(jCount);
                mcSubMenuItem.lExtend.visible = false;  
    global_i.text = String(i);
    Then I try to access the clips like so:
    -The first for-loop access the topic movie clips, no problem, and traces out scContent correctly.
    -The second for-loop traces out null everytime, when I would expect it to be tracing out the names of the subtopic movie clips.
    function accessClips(){
         //This will access the topic movie clips
         for(var i:Number=0;i<Number(global_i.text);i++)
               var scMenuItem:String = "mcMenuItem" + i;
               var scContent:Object = this.getChildByName(scMenuItem);            
               trace(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>scContent:Object = "+ scContent);
         //This is supposed to access the subtopic movie clips
         for(var j:Number=0;j<Number(global_subi.text);j++)//
               var scSubMenuItem:String = "mcSubMenuItem" + j;
               var scSubContent:Object = this.getChildByName(scSubMenuItem);
               trace(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>scSubContent:Object = "+ scSubContent);
    Hope this makes sense, Chipleh confused. If the code is not clear enough, let me know and I'll try to further clarify.
    Thanks again,
    ~Chipleh

  • How do I save a website created on IWeb 08 on one computer, so that I can open and adjust it on Iweb 08 on a other computer? pleas help me with this.

    How do I save a website created on IWeb 08 on one computer, so that I can open and adjust it on Iweb 08 on a other computer? pleas help me with this.

    Ernst ~ Welcome to the Support Communities. See this post:
    Editing my iWeb page from another computer

  • I would like to be able to accept credit cards on my website; can I do that with a website created with iWeb?

    I would like to be able to accept credit cards on my website; can I do that with a website created with iWeb?

    Here's some info about PayPal...
    http://www.iwebformusicians.com/Internet-Music-Sell-Distribute/PayPal.html
    You can also hook up with one of their preferred partners for various delivery options...
    http://www.iwebformusicians.com/Internet-Music-Sell-Distribute/Shopping-Cart.htm l

  • How can I save a website created on iweb, but that I no longer have it saved in my computer, so I can open it in my new computer and republish it ......

    How can I save a website created on iweb, but that I no longer have it saved in my computer, so I can open it in my new computer  with iweb
    and republish it on another server, since mobile me would be gone on jun 2012.

    You need the Domain.sites2 file that's located in your Users/Home/Library/Application Support/iWeb folder in order to be able to manage and publish the site from another computer?
    Do you have that file? If you do copy it to the same folder on the other computer and you're ready to go.
    If not then you'll have to recreate the site from scratch.  Chapter 2.3 on the iWeb FAQ.org site has tips on using some of the existing files, image, audio, video, etc., from the published site in the recreation of the site. 1 
    OT

  • I am wanting to publish a website created in iweb via a third party web host. How do I put a password for anyone wishing to visit the mysite?

    I am wanting to publish a website created in iweb via a third party web host. How do I put a password for anyone wishing to visit the mysite?

    You create the usernames and passwords where you host your website. Made with or without iWeb.
    Usually it's done in the controlpanel where you manage your account.
    If you cannot do it there, you'll have to do it yourself. See this post :
    https://discussions.apple.com/message/16014940#16014940
    And what is the purpose of password protection for ANYONE who vistis your site?

  • Problem with access to SMTP, IMAP, POP3 protocols in CAS 2013.

    Hi,
    we have problem with access thgrough SMTP, IMAP, POP3 protocols in CAS 2013.
    If I test connection to SMTP 25 port from other computer, session end quickly.
    Test from CAS2013 to localhost or public IP is OK (similar also for IMAP and POP3).
    Receive connectors are with defaults settings, firewall is disabled.
    Service Microsoft Frontend Transport Services restarted, but no success.
    Certificate is assigned to IMAP, POP3, SMTP, IIS.
    IIS and HTTP(s), protocols are OK. Clients can connects only thgrough web, mobile (ActiveSync), or with Outlook with proxy.
    Do you have some tip, what to test?
    If I create new testing receive connector on port 26 for anonymous, behaviour is same, quick disconnecting.
    Thank's Mirek

    Hi,
    Pleaser try to use the following link to test your STMP/POP/IMAP e-mail, and check the test if successful:
    https://testconnectivity.microsoft.com/
    If unsuccessful, please check the test result, it will tell us what caused the problem.
    Thanks.
    Niko Cheng
    TechNet Community Support

  • What happens to my websites created in iWeb when iCloud replaces IWeb (Rumoured)?...

    What happens to my websites created in iWeb when iCloud replaces IWeb as is rumoured... they will be lost?

    To tell you te truth We should should've all expected this...
    With no new updates to iWeb in a good couple of years, even though it's an amazing piece of software enjoyed by million. It upsets me no end to see apple continually doing this and what have they done exactly? Left goodness knows how many customers worried and uncertain about a product they love and rely on, I do anyway.
    One of the main reasons I have a Mac isn't only the build quality and the OS, although that does have a fair amount to do with it. The main reason for me moving to Apple and investing in a machine all those years ago was iWeb, being a creative control freak, I love to be able to get out my Mac, open iWeb and in minutes create a new launch page for a new mix, upgrade some of my services a customers asked for, recreate any aspect of how I present myself to people at a click of a button... I know you can upload to FTP server but phooey, why damage a good thing.
    This as annoyed me no end... so I'll not doubt I'll be taking it out on an Apple employee tomorrow when I take back my blown power pack for my MacBook pro, my third one in 8 months... I sign of the way apple is going?
    PS as for iOS 5 ... Seriously underwhelmed, we've been given features 90% of which should have been launched in iOS3!.. Oh, although I can't handle windows anymore, have you see. The new Windows 8 layer? Watch out Apple, he's behind you

  • Unable to view error for website created on iWeb

    We have hosted a website created on iWeb. When we access the site we often get the following error message. We contacted the hosting company, but they asked us to make the changes on the web pages as suggested in this error message in order to be able to view the actual error. Only then will they be able to help us out. Can someone help us incorporate these changes in our web pages.
    Thanks
    jay
    Server Error in '/' Application.
    Runtime Error
    Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
    Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
    <!-- Web.Config Configuration File -->
    <configuration>
    <system.web>
    <customErrors mode="Off"/>
    </system.web>
    </configuration>
    Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
    <!-- Web.Config Configuration File -->
    <configuration>
    <system.web>
    <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
    </configuration>

    In my first posting (just below my name) I've quoted the entire content of the error message that pops up. But it only pops on certain occasions, it doesn't happen every time. The other curious fact is that this message does not give you the actual error. It only tells you to make certain changes in your script so that you can view the error remotely. Therefore, until we are able to make these changes in the script or html code for the web page, we won't be able to know the actual error. When I tried to view the code or script of my web page, I didn't find a place where I could make these changes. Can you help me in this respect?
    BTW I was trying to study the pattern of these error messages and I think I've found a correlation. However, I'm not sure if that could be a valid reason. It seems like every time I update my website, people get these error messages until about 3-6 hours after each of these updates. Once a reasonable time has elapsed after the update, the site seems to be working fine. Could it be due to a conflict between the older & newer versions of the web page being simultaneously resident on the site for a while after the update. Or could it be due to the change in the index file? Pl comment.
    Thanks
    Jay Mitra

  • How do i transfer my website created on iWeb to another computer (also a macboook pro)

    how do I transfer a website created on iweb from one macbook pro to another

    In Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    Once you get the domain.sites file copied from your old Mac to the User/Library/Application Support/iWeb folder on your new Mac follow this:
    To open your domain file in Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    You can download an already compiled version with this link: iWeb Switch Domain.
    Just launch the application, find and select the domain file you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.
    OT

  • Since updating to Firefox 4.0.1 I have a problem with the website shortcuts I have on on desktop.

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [/questions/821825]</blockquote><br>
    Since updating to Firefox 4.0.1 I have a problem with the website shortcuts I have on on desktop. I have a few of these shortcut to website I use a lot. When I click on the short I get the message "windows cannot find [then the web address] make sure you typed the name correctly, then try again. To search for a file, click the Start button, and then click Search." I tried deleting the shortcut and setting it up again but still get the message.

    Try to redo the default browser and make another browser like IE the default browser and then let Firefox do it again.
    See:
    * http://kb.mozillazine.org/Default_browser
    * [[Setting Firefox as the default browser does not work]]

  • Problem with this Website : FilesFetche

    first i have macbook pro 10.7.5,
    i use google chrome,
    i have problem with this Website :
    FilesFetcher,
    i can't Surf the Internet Comfortably,
    if i open any Website be instead of it,
    after few Second,
    i need Surf the Internet Comfortably,
    - please help me -

    Are yo seeing ads?  The pages you are visiting are loaded with ads?
    1. If adware is installed without your knowledge,
        use  free  AdwareMedic by clicking “Download ” from here
         http://www.adwaremedic.com/index.php
       Install , open,  and run it by clicking “Scan for Adware” button   to remove adware.
       Once adware is removed, quit the app by clicking AdwareMedic in the menubar
        and selecting “Quit AdwareMedic”.
    Safari
    2. Safari > Preferences > Extensions
        Turn those off one by one and relaunch Safari again to test.

  • There is a problem with this website's security certificate.

    There is a problem with this website's security certificate.
    Error this morning on xxx.emea.acrobat.com

    You attempted to reach admin.emea.acrobat.com, but the server presented an expired certificate. No information is available to indicate whether that certificate has been compromised since its expiry. This means that Google Chrome cannot guarantee that you are communicating with admin.emea.acrobat.com and not an attacker. You should not proceed.

Maybe you are looking for

  • [SOLVED]Which terminal is right for me?

    Please help me choose a good terminal. I have viewed a couple of posts, but haven't found what I have been looking for. I'm looking for the following features in a terminal: * Copy with CTRL+INSERT, paste with SHIFT-INSERT. (On my computer, I cannot

  • Low memory error with titler

    Every time I ad a title I receive a message advertising of low memory.. I Have 2GB of memoery with a Intel dual processor

  • Signing out, keeping the data of iCal and address book on my mac

    I would like to sign out of iCloud - it doesn´t make too much sense for me right now - without loosing my iCal and address book-data. How can I secure the data on my mac instead of having it on iCloud?

  • Problem with Oracle Resequencer

    Hi all, We are trying to use Oracle resequencer. The test case has a JMSConsumer which routes to a BPEL Service. In the esb, ESB configuration parameter EnableResequencer in the esb_config.ini file is set to true and in the routing service of the JMS

  • Errors in xdbConfiguration.sql

    There are compile errors in the xdbConfiguration package. This is the new version from January 2003. The .02 Reset Demo fails and you can't do much from there. The SQL qutput follows after this. SQL> create or replace package body XDB_CONFIGURATION a