Corrupted iWeb site - Unicode character 194 appears throughout site

I'm using iWeb 3.0.4.
The website I created for my wife's business, BarbroDesigns.com, looks perfect within iWeb. When "Put" to ftp-dom.earthlink.net via Fetch, character 229 (Unicode character 194) appears throughout the website. When I first uploaded the website in 2007 it was fine. Within the last few months something has gone wrong. Recently, I've made several revisions to a particular file, "Contact & Links." Each time I has selected "Get" to transfer the original files to a named desktop folder. Then I launch a new named folder with all the original, unchanged files as well as the revised file. I've also tried uploading just the files at once without having them in a folder. Neither worked.
Unicode character 194 (a capital "A" described online as "Latin capital letter A with circumflex,") appears above headings, beside headings and body copy, at the start of copy blocks, under photos, between photos, and within photo dimension sizes.
It may be that I'm entering text and data into iWeb incorrectly or that, somehow, the file has become corrupted.
As always, I'd appreciate any suggestions or recommendations.
Thank you, Thor

I appreciate each person who's provided excellent suggestions. I'm continuing to err in fixing the website. Let me summarize what I've done to date:
- Created  a plain-text file named "htaccess" (no extension),  typed in "php_flag short_open_tag off," (no quotes; using quotes here to be clear) and also typed in "1 AddDefaultCharset UTF-8,"   "2. AddDefaultCharset UTF -8," "3. AddCharset UTF -8 .html," and "4. AddDefaultCharset Off" I then saved the plain-text file as ".htaccess" and put the file in the BarbroDesigns.com public folder via Fetch. I also put ".htaccess" at the top level of "public - ftp-dom.earthlink.net." Perhaps it should have been, as suggested in the document "Fixing Strange Characters on the iWeb Pages," at a higher level; "This file should be located at the top level of your space on the server." I've just added it there with no change in the sige display.
I also made sure the FTP settings, the Server Settings, and the Safari settings were set to UTF-8.
The last thing I did (and admitting that I may be way into overkill) was check W3C: http://web-sniffer.net/, and got this info:Http/1.0 (with Host header) and got this:
HTTP Request Header
Connect to 66.175.58.9 on port 80 ... ok  GET / HTTP/1.0[CRLF] Host: barbrodesigns.com[CRLF] Connection: close[CRLF] User-Agent: Web-sniffer/1.0.37 (+http://web-sniffer.net/)[CRLF] Accept-Encoding: gzip[CRLF] Accept-Charset: ISO-8859-1,UTF-8;q=0.7,*;q=0.7[CRLF] Cache-Control: no-cache[CRLF] Accept-Language: de,en;q=0.7,en-us;q=0.3[CRLF] Referer: http://web-sniffer.net/[CRLF] [CRLF]
HTTP Response Header
Status: HTTP/1.1 500 Internal Server Error
The "500 Internal Server Error" likely indicates I've done too much or done this by misunderstanding the discussion recommendations or done them in error.
If anyone has a suggestion to fix all this I'd be obliged.
Thank you, Thor

Similar Messages

  • In Unicode Programs , the "-" CHARACTER CANNOT APPEAR IN NAME

    HI,
       I am checking the routines for the transfer rules(0SRM_GLSPEND_INVOICE) in the ODS Object (0GLS_INV).
    WARNING :In Unicode programs, the "-" character cannot appear in names, as it does here in the name
    " L-LOCAL_ID"
    this is only before unicode conversion .
    thanks & regards
    subba reddy.

    HI,
       I am checking the routines for the transfer rules(0SRM_GLSPEND_INVOICE) in the ODS Object (0GLS_INV).
    WARNING :In Unicode programs, the "-" character cannot appear in names, as it does here in the name
    " L-LOCAL_ID"
    this is only before unicode conversion .
    thanks & regards
    subba reddy.

  • In unicode program, the "-" character cannot appear in names, as it ......

    Hello,
    Very Good Evevning!
    When I am actiavting my program I am receiving the following error message.
    In unicode program, the "-" character cannot appear in names, as it does here in the name "CHAR-".
    What is this error message and what does it mean...?
    Any suggetsions would be appreciated...
    Regards,
    Kittu

    Hello,
    When we activate, it does not throw any error message...The above Unicode error message will not stop us from activating our program.
    It seems that this is due to inconsistency between the servers...If any one has any explonation regarding the Above Unicode error then please let me know.
    Regards,
    Kittu

  • Why Is My Updated iWeb Site Corrupted After Updating?

    I just updated my iWeb site last night, and yet for some reason the 1st/welcome page is showing up as corrupted. The rest of my site looks fine, but after this most recent update the first page of my site looks awful. It looks bad in Safari - it looks worse in Firefox.
    I've never had this before. Why is this, and how can I fix it? Help!
    www.bullshattuck.com
    MacBook   Mac OS X (10.4.8)  

    Amazing! I can't believe it was that easy. Thanks for the help!
    www.bullshattuck.com
    MacBook   Mac OS X (10.4.8)  

  • Additional CR when printing unicode character

    Hello,
    the following code prints two lines on a printer. The second line contains an escaped unicode character. When running the example code I can't even see the unicode character on the paper; but in my original application it is visible. So this is not the problem. But always an additional carriage return is inserted after the unicode character, thus overprinting the beginning of the line with the remaining text. This did not occur in java 6 if I remember correctly. Is there any workaround for this?
    Regards
    J.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.print.*;
    import javax.swing.*;
    public class HelloWorldPrinter implements Printable, ActionListener {
        public int print(Graphics g, PageFormat pf, int page) throws
                                                            PrinterException {
            if (page > 0) return NO_SUCH_PAGE;
            Graphics2D g2d = (Graphics2D)g;
            g2d.translate(pf.getImageableX(), pf.getImageableY());
            g.drawString("Hello world!", 100, 100);
            g.drawString("Now the line with a unicode \u2259 character.", 100, 120);
            return PAGE_EXISTS;
        public void actionPerformed(ActionEvent e) {
             PrinterJob job = PrinterJob.getPrinterJob();
             job.setPrintable(this);
             boolean ok = job.printDialog();
             if (ok) {
                 try {
                      job.print();
                 } catch (PrinterException ex) {
                      System.out.println(ex);
        public static void main(String args[]) {
    //        UIManager.put("swing.boldMetal", Boolean.FALSE);
            JFrame f = new JFrame("Hello World Printer");
            f.addWindowListener(new WindowAdapter() {
               public void windowClosing(WindowEvent e) {
               System.exit(0);
            JButton printButton = new JButton("Print");
            printButton.addActionListener(new HelloWorldPrinter());
            f.add("Center", printButton);
            f.pack();
            f.setVisible(true);
    }

    Hello Sabre,
    thank you for testing. Of course it's good news that you don't see any overprinting, but unfortunately that doesn't help me on my site (Win7 64-Bit, java 1.7.0_09).
    Since I can see the character in my original application as I wrote, I made up the following test case and met a strange behaviour. I can make my desired unicode character appear without any overprinting as long as I don't use any other character in the string below 2000(16).
    Kindly run the following code. It prints a line of unicode characters starting with my desired one.
    Then change iConstant in makeTextLine() to any value below 0x2000. At my site this results in overprinting.
    Does it also happen at yours?
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.print.*;
    import javax.swing.*;
    public class UnicodeTest extends JFrame implements Printable {
      String text= "Test line with unicode \u2259 character.";
      public UnicodeTest() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setSize(350, 200);
        text= makeTextLine();
        JLabel lb= new JLabel("<html>Printing started...<br>"+text);
        add(lb);
        setVisible(true);
        PrinterJob printerJob= PrinterJob.getPrinterJob();
        printerJob.setPrintable(this);
        try {
          printerJob.print();
        catch (PrinterException e) {
          System.out.println("PrinterException: "+e);
      public static void main(String args[]) {
        java.awt.EventQueue.invokeLater(new Runnable() {
          public void run() {
         new UnicodeTest();
      public String makeTextLine() {
        StringBuilder sb= new StringBuilder();
        int iStartValue= 0x2259;
        int iConstant= 0x2020; // Tested with 0x100, 200, 400, 800, 1000, 2000.
        for (int i=iStartValue; i<iStartValue+30; i++) {
          sb.append((char)i);
          sb.append((char)iConstant);
        return sb.toString();
      public int print(Graphics g, PageFormat pf, int page) throws
                                                            PrinterException {
        if (page > 0) return NO_SUCH_PAGE;
        Graphics2D g2d = (Graphics2D)g;
        g2d.translate(pf.getImageableX(), pf.getImageableY());
        g2d.setFont(new Font("Dialog", Font.PLAIN, 12));
        g.drawString(text, 50, 40);
        return PAGE_EXISTS;
    }

  • My iWeb site can no longer be found by browsers

    I have had an iWeb site which has been live for about a month. It has been working perfectly. I have updated several times without any issue. It still appears to be working well within iWeb. I can make changes and publish changes.
    I have my own domain name hosted on mobileme
    When I now search the internet using any browser, it says
    Can't open the page http://www.dhsem.com.au/ because the server where this page is located isn't responding.
    I have checked my .mac account and everything seems to be fully functional. Why has my site suddenly disappeared off the internet?
    I have tried removing the com.apple.iWeb.plist file from Library/Preferences, rebooting the computer, republishing the entire site, all to no avail.
    The site is still sitting in iDisk/Web/Sites.
    Everything looks normal from the iWeb side of things. For some reason, no browser can find the server (The IP address of the server is: 118.215.20.59)
    Would appreciate any help

    You don't need to get your domain name registrar to do this - you should easily be able to do it yourself.
    Firstly, ensure that your domain name is entered into the Personal Domain name setting of your MobileMe account.
    Go to your domain name registrar and then set up CNAME forwarding if they provide this and forward your domain name to web.me.com - this is all you need do - you don't need to fiddle with nameservers or anything else like that.
    If they don't provide CNAME forwarding then you can use web forwarding instead.

  • Two users on same machine working on same iWeb site

    Hi
    We have two users on our new iMac because some things we want to keep separate. But we both want to work on our iWeb site when we feel like it, from our own account.
    I copied the domains file into Users\Shared and it appeared we could both work on it from there. But then I found that each blog entry becomes only partially editable by the other user. iWeb doesn't complain when I save, but it isn't actually saving the changes to blog entries that were started by the other user.
    Can anyone please help tell me how two users are supposed to work on the same iWeb blog? Thank you!

    I would also like to know the answer to this.
    Thanks!

  • Personal Domain - Can I get rid of my iWeb site's name in the URL?

    Hey everyone,
    I just set up my iWeb site (called "This is Out of Context") to point to a personal domain name (www.thisisoutofcontext.com). Problem is, now my homepage URL reads: http://www.thisisoutofcontext.com/THISIS_OUT_OFCONTEXT/HOME.html
    Is there any way to "get rid" of the second "THISIS_OUT_OFCONTEXT" so that my URL simply reads: http://www.thisisoutofcontext.com/HOME.html ? You know...short 'n sweet...like a "normal" website?
    Any thoughts or tips would be much appreciated (please go easy on me, I'm a total newbie here...)
    Cheers!

    does this work with iweb 08?
    my site was running fine until i upgraded to iweb 08 and redsigned my site. i have a godaddy account for my domain name and i have it masked and forwarded but my apple url still appears at the top of the browser bar while in safari and firefox. my site is www.louislemoine.com
    if you go there you will see what i mean. maybe what you are talking about will solve this problem. i am at work so i can not check to see if what you talk about will work. i am hoping that you are onto something.

  • My iWeb site can not be opened by many windows users only macs.

    My iWeb site should open for all platforms = How to do?
    I am also confused about compatability of my hard work and new iWeb sites (I love the iWeb App yet i got 4 family members all in different locations in the USA who run windows ....tell me that they could not open the web site which I announced via email.) Other Mac users did reply back saying it opened fine.
    Please send me a way to enable my work to open or if u must please tell me if the windows users need a RSS Reader and or .Mac accounts and or iTunes etc etc ...I wish to feel like the work I do on my Mac is compatable for all. As is Apple continues to isolate others and will include others only if they switch....
    Hey Macs are great so why not attract others with a platform that just includes all. Noone wants to enter a beautiful garden if the path to it is filled with thorns and at entrance others find a closed gate which reads You are not welcome.... that aint right and I'm a dumb bell old Dad who thought finally I was creating a web page that all could visit.
    Send instructions please on how all people can access my iWeb sites.
    Alex L
    My post above was replied with suggestion from Tom as seen then I followed up with thanks as seen.
    Anyone else out there have problems and answers per setting iWeb sites so all platforms can access your site???
    I really doubt there is any way for anyone to help
    you unless you provide the url which is not opening
    some some users.
    Thanks Tom for posting a reply which suggests I post my url so I have listed it below. I am just a Dad with all else so know that the guy writing this and using iWeb is a novice old man. I do like iWeb very much so if u can again reply or anyone reply how to allow all PC users to be able to visit this site than great.
    Thanks
    http://web.mac.com/alxnj/iWeb/ALsite/My_Family.html
    Anyone else have ideas and or same problem?

    Thanks Andy,
    I wish I could have told my sister about this as she could not open my homepage back before my new iWeb site. She now can open my site without the yet in case denial window does appear = I thank you.
    I think my iWeb site works as Noone has said otherwise from any platform etc...
    Alex L
    I do agree that should not have to be a consideration for any users so i agree that it would be great if Apple could allow simplicity to run seemlessly.
    I have had this problem since Homepage, and here is
    what has worked for me. I send out the link, and
    then for PC users I send the link with "<" after the address (without quotation
    marks. e.g., <http://site.com>).
    I also put a note that if that doesn't work, to just
    copy and paste the link into a browser. With that I
    have only had 1 person say they still can't open.
    Everyone else gets it to work.
    It's a lot to do and seems like a hassle, but you get
    used to it.
    Hope this helps!
    Andy Martini
    PS - APPLE! When are you going to fix this??! It
    seems like such a small thing yet you guys have been
    stumped for YEARS on this!

  • IWeb site registered but not showing up in Google

    I've registered my iweb site through google's webmaster tools using DNS since my domain name is registered through go daddy. I've also got an account for it on google analytics using iWeb SEO but when i search google for my site, nothing shows up. I've even typed my website in verbatim and I still get nothing.
    is there something else I need to do to get my site listed? I've started adding title tags and meta data to my most important pages (home and blog) to see if that would help. When I had my blog on wordpress and verified it through google webmaster it showed up the next day in search and i didn't even have to do any of the SEO like meta data.
    I feel like i've missed a step, or maybe iweb is not as easily indexed?
    HELP!

    Further information regarding the details would be helpful. However, if the site is unreachable it may be due to a known issue between GoDaddy and MobileMe. I spoke with tech support today regarding a similar issue with a iweb account that I have a DNS for through GoDaddy. The issue is being looked at by the support team and hopefully will be resolved quickly, but it I was advised that the issue appears to be from attacks on the iweb side which require the DNS address to be taken offline temporarily.

  • How do I link an iWeb site to a Yahoo store?

    Hi all,
    I designed an iWeb site for a friend, she is hosted at Yahoo Small Business. She also wanted to use Yahoo ecommerce does anyone know how to link an iWeb site to a Yahoo store? Yahoo uses store tags which they tell me can't be used in iWeb I was hoping to just link the ecommerce store I created in Yahoo to a store link in iWeb like a separate page. But I don't know how or if that will work. Any help would be appreciated.
    Thanks
    Marilyn

    Hi,
    LOL, you are absolutely correct I am moaning and groaning and you are correct about the tech suport the reason I am so frustrated.
    The website is www.papeteriecollections.com (iWeb)
    The Yahoo store is store.papeteriecollections.com
    The yahoo store is set up to the point of store tags. I was able to link the store to the site itself but not the items in the store to the items in the website. That's where the tags come in. From yahoo I copied their code from the item and then pasted it into iWeb. The link worked from iWeb back to the yahoo store, but not after publishing it. So then I tried the (html snippet) in iWeb and pasted the store tag code in there at the bottom of one of the items in my site, and order button appeared. (good thing) but it didn't work either. please see below:
    I hope this makes better sense and I apologize for being a baby!
    Thanks
    Marilyn

  • Can I publish iWeb sites and Gallery albums in one place?

    My Gallery has 66 personal photo albums of simple events (each photo with a caption). Using iWeb, I also have created a multi-page personal website of photos for each of 16 complex events (each site has a welcome page followed by 3-5 photo pages, and all pages have a few sentences of introduction). Now that my beloved Apple has spurned me, I'm hoping to get even, sort of, and post everything--all my photo albums and all my photo websites--in one place. This requires more complexity than I've seen in hunting among suggested replacments for iWeb or Gallery.
    In my drooling ignorance, I can imagine a website that has a few levels. On one level are key photos for all gallery albums PLUS key photos for all websites. A user clicks on the main photo of an album or website, and it opens either an album's photos (the current gallery way) or a site's welcome page.
    As best I can tell, I want too much. As promising as a site like Zangzing appears, it and others are limited to a single level of photos or to some six interior pages.
    Level one shows the key photo for each gallery album AND a key , and has a grand welcome page with linkClick on an album photo and it opens all the album's photos. Click on a website photo, and it opens to s that read, say, "Albums 2000-2005," "Albums 2006-2012," "Websites 2000-2005," Websites 2006-2012." At the next level, each album and each website appears . A Even better would be page links that intersperse albums and websites in chronological order. A user click on the main photo of an album or website and it opens either
    lists albums in, say, five-year clusters an  for --, perhaps one page for lots of links, maybe albums by years and websites by years.
    albums top-level row of albums (like Gallery) with the websites peppered among them. Click on a website photo

    PLEASE IGNORE ANY EARLIER VERSION. IT'S A DRAFT OF THE FOLLOWING QUESTION . . .
    My Gallery has 66 personal photo albums of simple events (each photo has a caption). Using iWeb, I also have created 16 personal websites of photos of complex events (each site has a welcome page followed by 3-5 photo pages, and all pages have a few sentences of introduction). Now that my beloved Apple has spurned me, I'm hoping to get even, sort of, and post everything--all my photo albums and all my photo websites--in one place. This requires more complexity than I've seen in hunting among suggested replacements for Gallery or iWeb.
    In my drooling ignorance, I can imagine a master website that has a few levels. On one level are key photos for all gallery albums PLUS key photos for all websites. When a user clicks on the key photo of an album or website, it opens either an album's photos (the current Gallery way) or a site's welcome page.
    As best I can tell, I want too much. As promising as a site like ZangZing seems, it and others seem limited to a single level of photos or to some six interior pages (far fewer than my 16 iWeb sites). Maybe I could create a grand entrance page that has links that read, say, "Albums 2000-2005," "Albums 2006-2012," "Websites 2000-2005," Websites 2006-2012." But then I'd be burying the albums and sites themselves at lower levels.
    Any help would be greatly appreciated.

  • Need help using Feedburner and Buzzboost in iWeb site

    Hello.
    I have embedded a blog feed into my iWeb site using Feedburner's Buzzboost. The feed appears correctly, but I cannot for the life of me figure out how to get the customizing CSS codes to work.
    I've found countless tips on using CSS codes to customize the Buzzboost appearance. I cannot get the feed to react to the codes when I insert them inside of iWeb (in an html snippet) or outside of iWeb (when inserting the codes directly into the CSS file for the page).
    I have tried everything I can find in searching this problem. Perhaps it is something very simple that I am simply overlooking.......
    thanks for any help in advance.

    WordPress does not allow custom code. You have their method using Insert Media.
    Mylenium

  • Dead links in iWeb site - IE only

    I have just published my first iWeb site: www.envisioningchange.ca
    All seems to work great in Safari and Firefox (though plug-in for social media sharing "Add This" is down right now), however many of the links, some of them in the text (not just nav links) are dead when viewed in Internet Explorer. I have searched for a solution to this on various forums and have not found anything specific to this issue.
    Anybody able to help?
    Many thanks!

    Hi Roddy
    Thanks so much for the replies and the super informative links! Unfortunately, following the instructions to insert drop shadows before putting images into iWeb resulted in a slightly different appearance and alignment to the image...one I'm not totally pleased with. If it's the only thing that works, I may go that route. The thing is, each page seems to behave differently, so I am unconvinced that this is the problem, since each page has an image with drop shadow, but some have active links and others do not.
    I would rather not watermark the images for a few reasons. I'm actually rather pleased with the transparent overlay to prevent right-click downloading.
    I checked the site on IE this morning and did not see any of the text mis-alignment you mentioned. Any chance you could send a screenshot?
    Problem continues to be a mix of link issues, including seemingly randlom links that are completely dead (both external and internal links), some with only half the link active (need to move mouse over the whole text to find an active part).
    One thing I did notice this morning is that as the home page was loading the image, the split second before the image was up, the links were active. As soon as the image was up, the links were dead. And this was after I removed the drop shadow on that page!
    Any further thoughts would be most welcome!

  • .Mac "Start Site" not the top site in iWeb site organizer

    My first iWeb site I created is for my family stuff. Mildly personal.
    My next one will be more friends/work.
    But, when I test out the iweb help entry that says the top site in the site organizer is/will be the start site, it does not hold true when I publish them.
    The help says:
    Your start site is the one that opens when you type this URL (address) into a browser (don't type the brackets):
    http://web.mac.com/[YourMemberName]
    To change your start site:
    Drag the site you want to be the start site so that it appears first in the site organizer.
    But, after I publish, the start site is still the old start site. Is this a timing/web cache issue? Or, bug? Or, how can one fix this?

    It could be a cache issue, but I think this is less likely. Never hurts to emtpy your browser cache though. I have seen one other person who's sites are stuck like this. Couldn't tell you why. She is stuck using the long URLs to specify each site. Maybe this is a bug in iWeb. I don't know.
    But here are some things you could try...switch the order of your sites again in the Site Organizer, publish, switch them back and republish. Or you might try a "Publish ALL to .Mac".
    The object here is to get iWeb to generate new index.html files that redirect to your choice of a start page. For a little background, if you look in your iDisk inside the Web folder. There is a folder called Sites. Inside Sites, there is a folder called iWeb. Inside the iWeb folder you will see the first of two redirection index.html files. This first one is what allows the short URL to work...
    http://web.mac.com/yourname/
    Now if you open up the site folder inside the iWeb folder, you will see another index.html file among all the other files there. This is the second index.html file that redirects to the same start page as the first. This allows the "long" URL to be used...
    http://web.mac.com/yourname/iWeb/sitefolder/
    I have seen situations where either one of these index.html files have not been generated or altered to reflect changes in the Site Organizer...usually the outer index.html file inside the iWeb folder. So anything that you can do to make iWeb publish new files should work....changing the order of your sites, erasing the files from your iDisk and republishing, changing the names of your sites, doing a Publish ALL. Try these things and see if your problem isn't resolved...
    If you have found any of this information to be useful to you, please take the time to provide me with feedback by marking my reply as "solved" or "helpful" using those little buttons that you see in the title bar of this reply. I'd really appreciate it!

Maybe you are looking for

  • How do I get a dialog box to reappear?

    I'm trying to write an application where 1. There is an opening frame. The user can click a 'start' button which opens the first of a series of dialog boxes. 2 Each of these dialog boxes has a user input field and buttons 'next' 'back' and 'cancel' ,

  • Not able to create a new Flex project in Eclipse

    I am trying to use Flex Builder 3 eclipse plug-in for development. But while creating a new Flex project in eclipse, I'm getting the following error: Template template.jst.web has not bee defined. I am using Eclipse 3.3, and have installed the latest

  • How would I create a photo gallery like this in Muse?

    Just trying to get the same kind of abilities working in muse. Link for site/gallery below greg noire - photographer

  • Viewing the physical query in OBIEE

    In the NQQuery.log file the physical query executed on the database is not logged. I have changed the logging level of the user to "2" in the Administration Tool. What else is needed to view the physical query?

  • Adobe Captivate 5 Not Opening - Loading Screen Freezes

    Hello - I just installed eLearning Suite 2 and cannot open Adobe Captivate on a Windows 7 machine.All other eLearning Suite 2 programs launch and run, but Captivate freezes on the "Loading..." screen at open and will not proceed any further. I have p