Hit Counter Not Working :(

I want to add the "hit counter" on my welcome page, but when I go to publish it...it does not appear. It doesn't even appear on iWeb. What am I doing wrong??

SPV:
Welcome to the Apple Discussions.
Is it still linked to the old site?
If you published you site to your second .Mac account then you'll have tow versions of it out there. One on the first account and the one on the new account. They will have different URLs as the default URL will be:
http://homepage.mac.com/.Mac account name/
So unless you deleted it from the first account each account will have that site. If you don't want the site on the first account go to the iDisk/Web/Sites/iWeb folder for that account and look for the folder with the sites name and delete it. There will be an index.html file there also you can delete.
Do you Twango?

Similar Messages

  • Read Only Display of Radio group and Text area with counter not working

    Hello,
    I am using Apex 3.2, with 10g for the database
    I have this form, with fields that will set to read only when status = 'closed'
    All of the fields display as read only except for 2. I cannot figure out why this is not working correctly.
    1st field is Issues that is a text area with character counter, with a sql query behind it, that is set to null unless the query is pulling in the data.
    2nd field is Status which is a radio group that will not display as read only when status = 'closed'
    I have other fields on the form with the same format and they change to read only when the status = 'closed', I have even copied the pl/sql expression from one field to these fields and it still doesn't work correctly. I have also tried javascript for an on load event, which works, but once I click on the save button, it disables all of the page items, which works correctly, but I purposely forget to enter information, to make sure the validations are firing correctly, which it does, but the script disables everything, not allowing me to correct the errors. The javascript is firing on the on page load event.
    Any help on this is greatly appreciated.
    Mary

    Dung,
    That API seems to have a bug, it returns true/false/null, so you could use 'return not nvl(htmldb_util.current_user_in_group(p_group_name => 'APP Admin'),false)' to get a false value.
    Unfortunately there's another problem: using the read-only attributes for checkbox or radiogroup item makes them hidden. My suggestion would be to create another item that has disabled="disabled" in the HTML Form Element attribute in the item definition and display that item or the non-disabled item alternately, using conditions based on the current_user_in_group logic.
    Scott

  • Badge count not working on reminder after IOS8 upgrade.

    Hello,
    after upgrade my iPhone 5s (64) to IOS8 last weekend, the badge count (only for the reminder!?) does not work.
    Deactivating / activating did not helps.
    Note: Reminder works with iCloud sync
    Thanks for any answer,
    Dirk

    same here: https://discussions.apple.com/message/15712300#15712300

  • Select count(*) not working in Apex

    Hello,
    The following sql works in both SQL*Plus and Toad but not in apex.  The variable seems always to be 0 no matter what data I have on the table.
    Basically I try to flip the status from "Inactive" to "Active" only when there is no "Inactive" status left on the table.  Say there are 2 inactive statuses.
    If I delete one inactive status, the overall status should still be "Inactive".  However, with this code, it flips to "Active" status regardless. 
    I tried manually assign the variable to 1 and the status was not flipped.  Therefore, it sounds to me that the count(*) is not working in APEX.
    Does anyone experience this before? 
    Thanks in advance,
    Ning
    ===================================
    DECLARE
    v_status_count NUMBER;
    BEGIN
    UPDATE LGR_APP_STATUSES
    SET DELETED = 'Y'
    WHERE LGR_APP_STATUS_ID = :P42_LGR_APP_STATUS_ID;
    commit;
    select count(LGR_STATUS_ID) into v_status_count from LGR_APP_STATUSES
    where DELETED = 'N'
    and LGR_APPLICATION_ID = :p42_application_id
    and LGR_STATUS_ID in (3,8);
    IF (v_status_count = 0) THEN
    update lgr_applications
      set lgr_application_status = 'ACTIVE'
      where LGR_APPLICATION_ID = :P42_LGR_APPLICATION_ID;
    commit;
    END IF;
    END;

    Hi,
    In query you have used p42_application_id.
    Other statements use P42_LGR_APP_STATUS_ID
    Do you have that item? What is session state for that?
    Regards,
    Jari

  • Select and Count not working.....HELP PLEASE!!

    I have the following scenerio:
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PART LIKE 'AN101011%' AND #RECDT BETWEEN 19970826 AND 20020826 GROUP BY #PART,#PDESC
    //brings back count of 1 which is right...only one part within the date range
    PCOUNT: 1
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PART LIKE 'AC043208%' OR #PART LIKE 'AN101011%' AND #RECDT BETWEEN 19970826 AND 20020826 GROUP BY #PART,#PDESC
    //looped through result set and these two counts are right
    PCOUNT: 1
    PCOUNT: 1
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PART LIKE 'AN101011%' OR #PART LIKE 'AC043208%' AND #RECDT BETWEEN 19970826 AND 20020826 GROUP BY #PART,#PDESC
    //now brings back a pcount of 2 for the first part which is shouldn't, there are two parts with the same number but only one which falls within the date range.
    PCOUNT: 2
    PCOUNT: 1
    could anyone help me with this.....thanks in advance

    Found the solution....its in the order of processing of the select statement...for others future reference....
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PART LIKE 'AN101011%' AND #RECDT BETWEEN 19970826 AND 20020826 GROUP BY #PART,#PDESC
    //brings back count of 1 which is right...only one part within the date range
    PCOUNT: 1
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PART LIKE 'AC043208%' OR #PART LIKE 'AN101011%' AND #RECDT BETWEEN 19970826 AND 20020826 GROUP BY #PART,#PDESC
    //looped through result set and these two counts are right
    PCOUNT: 1
    PCOUNT: 1
    //*****this works because in actual fact it is reading the date range and it associates it with the last part number so it reads it like this (note the brackets):
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PART LIKE 'AC043208%' OR (#PART LIKE 'AN101011%' AND #RECDT BETWEEN 19970826 AND 20020826) GROUP BY #PART,#PDESC
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PART LIKE 'AN101011%' OR #PART LIKE 'AC043208%' AND #RECDT BETWEEN 19970826 AND 20020826 GROUP BY #PART,#PDESC
    //now brings back a pcount of 2 for the first part which is shouldn't, there are two parts with the same number but only one which falls within the date range.
    PCOUNT: 2
    PCOUNT: 1
    //***this did not work because the date range only applied to the last part number not the first..so it read it like (note the brackets):
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PART LIKE 'AN101011%' OR (#PART LIKE 'AC043208%' AND #RECDT BETWEEN 19970826 AND 20020826) GROUP BY #PART,#PDESC
    //**Therefore, I changed it to (including the brackets) and it ran fine:
    SELECT #PART,#PDESC,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE (#PART LIKE 'AN101011%' OR #PART LIKE 'AC043208%') AND #RECDT BETWEEN 19970826 AND 20020826 GROUP BY #PART,#PDESC

  • Spry textarea character count not working in IE9

    Hi.
    I'm using DW CS5 for a ColdFusion form with a textarea field. The spry character count works in every browser but IE9. Anyone know how to fix this?
    Thanks!

    This feature will not work in IE9 and IE10.
    The problem is two-fold
    a) The Copyright notice shows 2006 as the last Spry update. This was around the time of IE7
    b) Microsoft tends to go off on a tangent where every release of IE behaves differently
    As always, we are in the hands of the Adobes and Microsofts.

  • Hit counts not accurate

    The hit count given by OSES seems to be inconsistant. For example, when doing a basic search on my data for a given query, the initial hit count is 110. As I flip through the pages and reach page three(should be showing results 20-30 out of 110) the hit count suddenly changes to 27(now showing results 20-27 of 27). I have built a custom search page using the Web Services API and this behavior is repeated there.
    This is done in my custom page by incrementing the variable "startNumber" by 20 each time the user goes to the next page. EG:
    OracleSearchResult result = stub.doOracleSearch(searchTerm,
    new Integer(startNumber),
    new Integer(20),
    Boolean.FALSE,
    Boolean.FALSE,
    null,
    "en",
    "en",
    Boolean.TRUE,
    null,
    null,
    null);
    Any ideas?

    It's more efficient to approx row counts, and by default this is the behaviour that you'll get. You can change it by visiting the admin tool and changing the hit count method in the query configuration screen.
    If you have a large dataset then performance will degrade if you have exact counts. I can't get to a SES instance now, but I think you have the option to estimate if the result set is over a certain size.
    Interestingly though, that estimate is way out in your particular case. Is your default set really dynamic? If so, one possibility is that your indexes are becoming fragmented and need more frequent optimisation. I'm not 100% sure on this but worth a try.
    (Note that the Google search engine behaves in the same way re estimates etc.)
    Let me know how you get on!
    Ben

  • Hit counter not showing in .mac

    I have finally republished my web site in iWeb 08. I have si opages in total, and five of them helpfully show up in summary in my .mac homepage, together with a hit counter. However, the sith page is my home page, the one I mostly care about, and this isn't in the list. Is the .mac list limited to five pages? And if so, can I select which five pages it lists?

    Take a look at TextEdit available in your Applications folder. Open it up and then look at the Preferences window. Click on the "Open and Save" tab and then check off the box to "ignore rich text commands".
    Now you'll want to find your HTML file. If you are NOT publishing to .Mac, then you are using the "Publish to Folder" command in iWeb. You'll then be left with a folder full of files that make up your website. Look inside that folder and you should see a bunch of files that have the .html extension. These are the HTML files that you will want to edit. Find the .html file that is associated with your page. For example, if you page is named "welcome" then there should be a file called "welcome.html".
    Control-click on the appropriate .html file and then select "Open with...". Choose TextEdit from the window and then you should see the HTML code for your page! Edit away and then when you are finished just type Apple-S to save your changes. Don't use "Save As..."...just Save.

  • Hit Counter not appearing.

    OK I'm using iWeb, the URL is at Godaddy, but the hosting is at my /mac account. I have the family pac. Two web sites the hit counter works just fine. A third one I got it to work on a page where I don't need it, but can't get it to SHOW on the page where I want it. I've tried to put it anywhere on the page, and have restarted etc etc. Suggestions?

    what is the purpose of your link? hit counter? or pushing wares?
    there are only links on your page, people can google 'hit counter'...
    ... at least, you should show an example of what looks like iweb hit counter.
    here is bling: http://www.cyclosaurus.com/Home/Cyclosaurus.html
    (to the left) it looks like iweb hit counter, but it is a StatCounter.

  • Counter not working in Muse slideshow

    I created a slideshow and added 6 images. When I adjusted design and added additional images counter stopped working in slideshow.

    Hi I am having a very similar problem but in this case relating to captions.
    I have encountered the same error as above, but after a while of re-jigging things around it seemed to unfreeze and recognise the placing in the sequence. A problem which I have encountered at the same time, and hasnt fixed, even when using different version of the lightbox / slideshow widget is how to add different captions to each image. This is easy on the design tab, but when previewing only one of the captions (generally the current one) shows. I have togled edit together, and tried building the widget placing all content in and then unchecking 'edit together' to deal with the captions seperately at the end, but to no success.
    Is there a solution or has anyone encountered the same issue!!?

  • Hit counter not showing up..

    I have the latest safari and snow leopard and iworks. Until recently a hit counter (on a webpage generated in iWeb) showed up fine. It continues to show up when I use Firefox (or on my iphone). Doesn't show up on my computer (either my main user or on a clean test account I have). I have tried the following: empty caches, empty history, remove cookies, log out of main account and log in to test account, and reinstall Safari. Don't know what else to try. Webpage in question is: web.mac.com/gemarcus/
    Nothing has solved the problem.. So, suggestions?

    Hi George,
    Best way is to run a Hit Counter in the background of the website.
    NO, sorry I don't know the answer to your problem.
    Sorry, I'm no help to you ...
    Considering running the Hit Counter in the background, if you only like to know how many visitors you website has.
    When it is for other purpose "just to looks good" than you can set the counter to a amount of HITS in front like "11.372 hits" or any other amount of hits, this looks better than starting with 1 hit.
    Dimaxum

  • Simple Button Hit Zone not working

    I am somewhat new to Flash CS4 andt am having a problem making simple buttons in Flash CS4 on a Macintosh: I have made a few buttons with a graphic and can go into them and successfully create the Up, Over and Down stages of the graphic. Then when I create a new box for the hit state (which is larger than the graphic and I have deleted the graphic itself from the hit state) it doesn't want to appear correctly when I test the movie. When I test the movie, the hit state is correct everywhere around the graphic (to the bounds of my hit state box), but is not active where the graphic is. When I go under the Control menu, down to Enable Simple Buttons, the hit zone looks great right in my Flash file, but when I preview it or publish it and look it on different browsers (PC and Mac), I don't get my pointer right over the actual graphic, but get it everywhere around the graphic to the boundaries of my hit box. Why can't I get the actual graphic to be a hot spot in this situation? I have tried leaving the graphic in the hit timeline, and tried putting both the larger box and the graphic in the hit timeline, and still can't get them to respond correctly with the pointer in the browser window. Thank you....

    Well, since the graphic itself doesn't activate my pointer in a web browser, I thought maybe I needed to add both the box and the graphic itself to the hit state. That's what has me puzzled - the box that I use for the hit zone is "active" everywhere but where the actual graphic is...

  • Skin counter not working

    Hello
    I am trying to modify one of the Adobe provided flv skins, but when I do the counter is disabled.  Even if I just copy the fla and export the swf skin, without making any modifications, the counter is disabled.  Do I need to add code to make it work?
    Thanks
    Dave

    We need some more information in order to help you.
    What version number of Aperture and of your operation system?
    How are you "doing" skin smoothing?  What do you expect to happen?  How is this different from what does happen?  How are verifying that it is isn't working correctly?
    Has it ever worked in the past?
    Can you post a screen-shot illustration any of the above?
    Do you have any other trouble with Aperture?  With any other programs?
    Do other Aperture Quick Brushes work?
    Have you tried any troouble-shooting?  Have you re-started Aperture?  Have your re-started your system?
    Post back with this information and I'm sure some of the many helpful people here will provide some direction and tips.

  • Button hit state not working

    Hi, I made a few buttons for my .fla and all the states are working but the hit state.
    So just to see what the problem was I made a new button, which is only text at each stage, so for up i wrote up, down down etc,
    all the states work but hit, what gives???
    hit is after someone clicks it it should be at the hit state correct?

    Nope. Hit is the shape that will trigger a rollover/click area.
    Normally the hit state is determined by the artwork in the up state and then the over state once you've rolled over, but sometimes you need to override that with an area different area. That is the hit state. But you don't need to put anything there.
    Test it out. Make a circle on the other states and then put a larger square in the hit. Then check out how it works.

  • Web Counter Not Working

    Tried the 150 px footer but still didn't work - any ideas why the counter won't show on my home page?

    Hi
    Please find the link given below might help you.
    Fixing Webcam Problems in Windows 7
    Webcam Troubleshooting (Windows 8)
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

Maybe you are looking for