How can I add code (web counter like statcounter) to iWeb '08?

Hi,
I have a website that was created in iWeb '08. I would like to add web counting code to my whole site (across all pages), something like statcounter. Is there a way to insert code to all the pages in the site?
Thanks!

QuickTimeKirk wrote:
You need to add that code after you publish your iWeb pages.
Then "hand edit" those html files using any "plain text editor" and save those files.
You can also add Statcounter code in an html snippet (it works).
You can also add it automatically to all your pages post-publishing using
iWebExpander (it's free): http://guimkie.com/projects/iwebexpander
or iComment ( costs 10$): http://web.mac.com/cbrantly/iWeb/Software/iComment.html
Regards,
Cédric

Similar Messages

  • How can I add a web counter to site that is NOT hosted by apple?

    Iweb 09 is now able to create and publish a web site to NON Apple host. I have one site hosted by apple, and one that is not. It is really great that now I don't need to have another web site editor program. BUT- as this site is created on iweb, I cannot add a web counter because I do not see the html for the site. Iweb 09 does not see to offer the choice of saving to a folder, so that I then would be able to add the html code for the counter.
    I tried to use Itweak, but as the web site is not on my idisk, I have been unable to add the counter. Does anyone have a solution to this problem?

    Old Toad's Tutorial #13 - Adding a StatCounter as an HTML Snippet
    The tutorial site has such a counter as do my Demo Sites.
    OT

  • How can i add a donate now button to my iweb website

    how can i add a donate now button to my iweb website

    Here's some info about PayPal buttons....
    http://www.iwebformusicians.com/Internet-Music-Sell-Distribute/PayPal.html
    A "Donate" button is created in the same way as a "Buy" button.

  • How can i add a new count to this source code ?

    [4shared.com - document sharing - download db.txt|http://www.4shared.com/file/210566155/c080d93a/db_online.html] Hi everyone
    I have 5 variables
    1. XTSM is between 0~200
    2. XTS is between 0~2
    3. XRX is 0~3
    4. XHAN is 0~7
    5. ZHTYPE is one of these : (1)TCHF_HLF (2)TCHSD (3)TCHFULL
    they are related to their with this shape .
    XTSM->XTS->XRX->XHAN->ZHTYPE (Just Logical)
    Please tell me how can i see this output?
    ----Type------------------Total---------------------Total of ZHTYPE-----------------
        XTSM:0/XTS:0               in this case is : 29     TCHF_HLF:28 TCHSD:1 TCHFULL:0
        XTSM:0/XTS:1               No. of found  
        XTSM:0/XTS:2               No. of found  
        XTSM:1/XTS:0               No. of found  
        XTSM:1/XTS:1               No. of found  
        XTSM:1/XTS:2               No. of foundI get XTSM/XTS/TRX/XHAN and now i want count total of this
    ZHTYPE is one of these : (1)TCHF_HLF (2)TCHSD (3)TCHFULL
    they are related to their with this shape .
    * Each XTSM has 3 XTS (0-2)
    * Each XTS has 4 XRX (0-3)
    * Each XRX has 8 XCHAN (0-7)
    * and Each line has a type of ZHTYPE
    This is sample file: 4shared.com - document sharing - download db.txt
    This output with this code is true but I want add ZHTYPE at the end of each line + XTSM/XTS please help me ???(for example this : XTSM:0/XTS:0 : 29 TCHF_HLF:28 TCHSD:1 TCHFULL:0)
    public class Test {
        public static void main(String[] args) throws IOException {
            Test test = new Test();
            test.execute();
        private static String TYPE_XTSM = "XTSM";
        private static String TYPE_XTS = "XTS";
        private static String TYPE_XRX = "XRX";
        private static String TYPE_XHAN = "XHAN";
        private void execute() throws IOException {
            InputStream in = null;
            BufferedReader br = null;
            TreeMap<Integer, TreeMap<Integer, Integer>> xtsmMap = new TreeMap<Integer, TreeMap<Integer, Integer>>();
            try {
                in = Test.class.getResourceAsStream("db.txt");
                br = new BufferedReader(new InputStreamReader(in));
                String line;
                while ((line = br.readLine()) != null) {
                    Record rec = new Record(line);
                    processRecord(xtsmMap, rec);
            } finally {
                if (br != null) {
                    br.close();
            printResults(xtsmMap);
        private void processRecord(
                TreeMap<Integer, TreeMap<Integer, Integer>> xtsmMap, Record rec) {
            TreeMap<Integer, Integer> xtsMap;
            if (xtsmMap.containsKey(rec.getXtsm())) {
                xtsMap = xtsmMap.get(rec.getXtsm());
            } else {
                xtsMap = new TreeMap<Integer, Integer>();
                xtsmMap.put(Integer.valueOf(rec.getXtsm()), xtsMap);
            if (xtsMap.containsKey(rec.getXts())) {
                Integer count = xtsMap.get(rec.getXts());
                xtsMap.put(Integer.valueOf(rec.getXts()), Integer.valueOf(count
                        .intValue() + 1));
            } else {
                xtsMap.put(Integer.valueOf(rec.getXts()), Integer.valueOf(1));
        private void printResults(
                TreeMap<Integer, TreeMap<Integer, Integer>> xtsmMap) {
            System.out.println("Type\t\tTotal");
            Set<Integer> xtsmSet = xtsmMap.navigableKeySet();
            for (Integer xtsm : xtsmSet) {
                TreeMap<Integer, Integer> xtsMap = xtsmMap.get(xtsm);
                Set<Integer> xtsSet = xtsMap.navigableKeySet();
                for (Integer xts : xtsSet) {
                    Integer count = xtsMap.get(xts);
                    String outputLine = TYPE_XTSM + ":" + xtsm + "/" + TYPE_XTS
                            + ":" + xts + "\t" + count;
                    System.out.println(outputLine);
        private static class Record {
            private Integer xtsm, xts, xrk, xhan;
            Record(String line) {
                StringTokenizer st = new StringTokenizer(line, "/");
                while (st.hasMoreTokens()) {
                    String token = st.nextToken();
                    String type = token.substring(0, token.indexOf(":"));
                    String valueStr = token.substring(token.indexOf(":") + 1, token
                            .length());
                    Integer value = Integer.valueOf(valueStr);
                    if (TYPE_XTSM.equals(type)) {
                        xtsm = value;
                    } else if (TYPE_XTS.equals(type)) {
                        xts = value;
                    } else if (TYPE_XRX.equals(type)) {
                        xrk = value;
                    } else if (TYPE_XHAN.equals(type)) {
                        xhan = value;
            public Integer getXtsm() {
                return xtsm;
            public Integer getXts() {
                return xts;
            public Integer getXrk() {
                return xrk;
            public Integer getXhan() {
                return xhan;
    }I want add ZHTYPE to this ...
    Code:
    Type        Total
    XTSM:0/XTS:0    29        such as this : TCHF_HLF:28 TCHSD:1 TCHFULL:0
    XTSM:0/XTS:1    29
    XTSM:0/XTS:2    29
    XTSM:1/XTS:0    29
    XTSM:1/XTS:1    29
    XTSM:1/XTS:2    29
    XTSM:2/XTS:0    29
    XTSM:2/XTS:1    29
    XTSM:2/XTS:2    29
    XTSM:3/XTS:0    14
    XTSM:3/XTS:1    14
    XTSM:3/XTS:2    14
    XTSM:4/XTS:0    13Thanks a lot.

    http://www.4shared.com/file/210566155/c080d93a/db_online.html

  • How can I add fonts to Muse like Brandon Grotesque or Proxima Nova?

    I thought that by having access to typekit I will be able to use those fonts everywhere, and in Muse the choise of web fonts is very small, and only a few have polish signs for me!!! Please tell me how I can add fonts like Brandon Grotesque to Muse (not having to export it as an image)

    See link below:
    How to add Typekit fonts to your Muse site

  • How can I add a web page tom my home screen? I no longer see the option to do so.

    On my iPhone 3g I had a Very useful web page saved to my homescreen. When I tried to save it to my iPhone 4s home screen, the option is no longer offered, I can Tweet, email, save as a bookmark and to the Reading list and Print. I just want to save this page to my Homescreen, please help.

    You should mark your reply as the correct answer just so everybody knows that you figured it out.

  • How can I add a facebook wall snippet to my Iweb site?

    Hi,
    I am working on a new website and have added a snippet of my tweets to the website and would like to do the same for my facebook wall. I can't seem to find how this works (other than using an Iframe - which I can't get working...) Does anyone have suggestions?
    thanks!

    What a little research can do.
    Here are results you want to study regarding the Facebook wall :
    http://www.google.com/search?q=display+facebook+wall+on+website

  • How can I add an information (including pic, text and button) area in the menu?

    The picture below is captured from on video in Adobe Muse official website. How can I add an area just like the picture shows? I mean the three sleeping bags, texts below and the learn more button.
    Thank you.
    (from http://tv.adobe.com/watch/creative-cloud-for-design/adobe-muse-november-2013-hide-menu-nav igation-on-rollout/)

    This tutorial <http://helpx.adobe.com/muse/tutorials/widgets.html> has a section titled "Hiding Composition widgets on rollout to create submenus" which covers how to use a Composition widget for this purpose.

  • How do I add URI web link with custom tooltip like "CLICK HERE TO UPDATE" instead of URI web link in tooltip.

    How do I add URI web link with custom tooltip like "CLICK HERE TO UPDATE" instead of URI web link in tooltip.

    You've probably found an answer to this by now, but I think this has been addressed in another forum -- The link below suggested using a button and adding the tooltip to the button. 
    https://forums.adobe.com/thread/304974?start=0&tstart=0
    Sounds like it would work but I haven't actually tried it. 
    Good luck~!

  • I just bought an ipad 2 wifi (no 3G)  How can I add my Verizon email account to my ipad?  I'd like to send/receive emails on my ipad.

    I just bought an ipad2 wifi (no 3G).  How can I add my Verizon email account to my ipad?  I'd like to send and receive messages from I ipad.

    Some help can be found here: http://ipadhelp.com/popular-list-of-email-name-servers/

  • How can an add-on like Firesheep access and execute an external program like Winpcap? Is that a security flaw in Firefox?

    I have been reading about the Firesheep add-on that allows the user to hijack sessions of users on the network by stealing the cookie. I understand that to prevent any application from stealing the cookie, the cookie should not be passed by the site without SSL. However, my understanding of how Firesheep works is that it interfaces with Winpcap (a network sniffer). So my question is "How can an add-on execute an external program or operating system command like Winpcap?" Can any add-on do this and should I be extremely afraid of downloading any add-on because of the potential that it could have complete access to my system?

    Hi Scott-L.
    You asked a very good question and it turns out you're right.
    However, one must be aware that download an Addon on another website that Mozilla may be dangerous. Indeed, the Addons found on the Addon Center are checked (roughly).
    In addition, Firefox includes a blacklist that blocks addons identified as malicious.
    More information here: [http://www.computerworld.com/s/article/9193420/Mozilla_No_kill_switch_for_Firesheep_add_on?taxonomyId=17&pageNumber=1]

  • In ABAP-HR, How can i add wage tyes in wage slip, PE51 transaction code

    Hi friends,
    How can i add wage type in the pay slip ie transaction code pe51.
    Thanks&Regards,
    Shiva Prasad

    have u seen my Reply to ur Prev.Post.
    Regards
    Prabhu

  • How can I add jar files into the namespace in code?

    My friends:
    I need to add jar files into my namespace dynamicly in my code.But the jar files might be repeated, I am not sure.so, i wonder how can I add them into my namespace, ignoring the repeated files?
    This is my code:
    URL[] urlArrayA = new URL[5];
    urlArray[0] = sample1;
    urlArray[1] = sample2;
    URL[] urlArrayB = new URL[5];
    urlArrayB[0] = sample3;
    urlArrayB[1] = sample4;
    URLClassLoader urlClassLoaderA = URLClassLoader.newInstance(urlArrayA);
    URLClassLoader urlClassLoaderB = URLClassLoader.newInstance(urlArrayB);
    how can i visit classes in urlClassLoaderA from classes in urlClassLoaderB?

    could anyone please answer the question for me ? thank you...

  • How can I add a podcast episode to an existing web page using iWeb?

    How can I add an episode to an existing web page using iWeb?
    I could probably figure this out but I am afraid if I make changes to the site and re-upload it to the podcast area I will have just doubled it. I see them repeated from time to time.
    What is the proper protocal? Thanks
    Mac G4   Mac OS X (10.4.3)  

    Hi apple-owner,
    Method 1.
    To create this scatter-plot, I selected the whole of Columns A and B. (Shift click on the Column reference tabs).
    The plot ignores blank rows, but they are "ready" for new data:
    Method 2
    If you did not select whole columns, you can extend the "active" rows. Rows 1-5 selected:
    Add more data rows and drag the fill handle (small white circle, bottom right) down
    Regards,
    Ian.

  • How can I add advertisement code into flash game?

    hi mates,
    just want to ask about loading advertisement code!
    How do you add the advertisement code (adsense) into flash games??
    my site Funny Games have over 5k games but they are getting from others sites thus I have no original files. How can I add more code into the current files?

    Unless the games were pre-made to allow you to specify some variables in the page code or some external file, you won't be having any luck... you cannot add code to the games unless you have the source files, which you apparently don't have.

Maybe you are looking for

  • PDF in Preview does not reflect in iBook

    I am using Preview 7.0 to open and edit PDF. Typically, I use highlight, underline, add notes etc, all within the Preview app in Mac Pro 15 Retina OS 10.9.4. I am also using iBook 1.0.1, when I add the "edited" PDF to iBook (and later sync via iTune

  • Extract information from Javadoc files

    I want to extract class, method & parameter information from the javadoc files (in html format, not from source code). Are there any existing API's / opensource projects that would help me do this. I have tried searching google and the forums, but I

  • Completing the DVD

    I am using FCE, and export my files to iDVD in quick time format. I am mainly doing weddings, and like to present the DVD to customers with chapter settings and a 'theme.' I find iDVD frustrating as there is a limit to the file size in iDVD. What oth

  • Computers can't see each other on E3000

    I am using a E3000 behind an ATT Uverse router. Every computer can connect to the internet. E3000 is used as DHCP and ATT Uverse is DNS. With this setup, computers can ping each other's IP address but can't use computer names. When names are resolved

  • How To Copy MEDRUCK?

    Dear Abapers, Please tell me how to copy MEDRUCK program to print the Purchase Order. Please tell me step by step as I am new to ABAP. Also tell me how to make changes in MEDRUCK according to my company i.e. how & where to change the company logo, ad