Page Utilization or Page Hit Counting/Counter

Greetings all,
With multiple updates needed on multiple versions of xMii, we are looking to gather some statistics on which pages are being used (and more importantly, which pages aren't)
Looking for suggestions on ways to get some statistics on what pages are being utilized on xMii version 9, 10, and 11.
Thanks
Dennis

Hi Dennis,
There are lots of page hit counters available for HTML web pages.  I am pretty sure that you would not need to involve MII except possibly to return the data to a central reporting location.
Regards,
Mike

Similar Messages

  • How to skip a page (in a page flow) when hitting 'Back' in a browser

    This may have been posted somewhere else. But I don't seem to find it.
    Here is what I'd like to do in a page flow control:
    a.jsp submits to action 'a' in MyController.java
    action 'a' fowards to b.jsp
    b.jsp directs to action 'b' in MyController.java
    action 'b' forwards to c.jsp
    Now, hitting 'Back' in a browser when in c.jsp would normally return to b.jsp. What I'd like to do is to make it return to a.jsp, instead of b.jsp, i.e. skip the b,jsp.
    Thanks in advance for any help!
    Jason

    Here is the deal with this nonesense. It is again a Pages fault to over design. In order to delete a complete page within a series of pages in your document. You must leave the view thumbnail, goto Sections and delete the page out of sections. Why? Likely because you can add page break, additional pages in sections but not in thumbnail. EASIER PAGES/MAC SOLUTION: Click on the page in the thumbnail veiw and hit delete, but that would be to simple for the mac/pages software developers. Still a great tool to use though.

  • Aviod page reload when user hits back button

    Hi
    I got 2 coldfusion pages A and B. When i click a link from
    page A it goes to page B. When i click the back button of the
    browser from page B the page A refreshes and shows. I dont want the
    page A to reload when the user hits the back button of the browser
    (so that all data remains as it was) from page B.
    is there any method to cache the page and show? Or are there
    any other methods? Pls help. I am running this project in Model
    Glue architecture (i dont know whether that makes any difference)

    Normal behaviour is that going back does not cause a page to
    reload. You might be doing something to make that happen. If you
    can figure out what it is, then you can stop doing it.

  • Frustration with Pages to ePub page breaks

    Hi. I am losing my mind and hoping someone can help...
    I am creating a non-traditional book (a catalog) in Pages, for use in both PDF and ePub formats (for iBooks on iPad). I CANNOT get the page breaks in Pages retained when exported to ePub and viewing on the iPad. I used the "ePub best practices" document as my starting template, then changed it by modifying the layout (margins, etc.), and modifying the styles to the font, color and style I want for look of the PDF version. At one point I had 80% or so of the page breaks in ePub, then after making some edits in the document and exporting again, many of the page breaks disappeared. I've also had headlines and such literally disappear in the ePub version.
    The best thing would be to have a method of manually entering a page break in Pages that I KNOW would represent a page break in ePub. Is this possible?
    Please help!

    After an insane amount of testing, here are the unwritten rules that I have uncovered (so far) regarding how Pages exports to ePub.
    - The items checked to be used in your TOC (whether you actually have one in your document or not) are what dictate the page/section breaks. This is hugely important because it effects EVERYTHING else, including formatting.
    - Using the option to "Use first page as book cover image" will do so, but will effectively suck it out of the actual book when it displays so that your book will "open" to whatever page is next. This sort of stinks if you would like your book to open to the actual Title Page. One solution to this is to turn this option OFF when exporting, and BE SURE to set the title of your book to one of the Paragraph Styles that you included in your TOC list (see above). This will put your title in the auto-generated TOC *created by your reader* (we'll call this the "Reader TOC"), but it will allow your first page to remain your Title Page and should prevent problems with your formatting.
    - It would seem that ANY time you start a new section in an ePub (Title, Preface, Chapter, etc… and not to be confused with a Section Break in the Pages document itself) it MUST start with a TOC marked style. If you don't you will start to find your formatting will change semi-randomly (I noticed it in left justified headlines becoming centered). You CAN manually modify the format of the text once you have set the correct style (if you want to change the justification or something).
    - Use of the Insert Page/Section Break menu options will have little or no effect in the ePub itself. You can keep them in your Pages document if you like, but *it is the TOC marked styles that completely dictate the section/page breaks in the ePub export.*
    - The auto-generated Table of Contents that Pages can create will be dropped in your ePub. The Reader TOC (the actual one used by the readers) will be recreated by the TOC marked sections as mentioned above. So, you might as well leave it out of a Pages document if you are only exporting to ePub. However, most Reader TOC's are not actually present in the text of the book, which is a little weird. To include a TOC in the book itself, you will need to manually create one (without page numbers since ePub's are reflowable), and then manually link it to "bookmarks" within your book. Be sure to use a TOC marked style for the header ("Table of Contents") so it starts on it's own page. Then go through your book, bookmarking sections that you want as TOC entries. The Link Inspector in the inspector pane is where you will find the bookmarking options. If, like me, you want to add, say, chapter titles as entries in your TOC, then find that title in your text, select it, then hit the "+" to add it as a bookmark. Once you have bookmarked all your sections, then go back to the text in your TOC, select an entry, and hyperlink it to one of your bookmarks. Repeat. The manual TOC will be visible in your book, and clickable to your chapters/sections.
    - Some formatting works, some doesn't. You might have to experiment here. I would stay away from anything too "non-standard", such as rules and borders. Margin padding seems to be okay, as does BOLD and ITALIC. Text size will also apply, but some readers reset this, so don't count on it.
    - If you can set a font beyond sans-serif or serif, I haven't found a way to do it. Readers are probably going to reset this anyway. Think "web-fonts" available in standard HTML at best.
    - You CAN include graphics, but they MUST be "inline" and NOT "floating". This is nice if you want to include some simple graphic ligatures to mark the end of a chapter or something.
    Hope it helps… Good luck!

  • To convert report  output from A4 page to A3 page

    Hi to all
    I am modifying the comparative statement report (For different vendors and items) which is in A4 page.
    now i want to convert it in A3 page size.
    Plz tell me what's the line-size, line count and different changes i have to do .
    Thanks & Regards
    Anubhav

    Hi ,
      You can set a element variable . While using ' write ' , you can multiply it after 'at' . For Example :
    data : i type i ,
             page(2) .
    if page = 'A3'
      i = 10 .
    else .
      i = 15 .
    endif .
    perform mywrite using 10 'abc'  .
    form mywrite using i_pos s_value  .
      data j type i .
      j = i * i_pos .
      write : at j s_value .
    endform.

  • How can I view double page spreads in pages? (iCloud pages).

    The defalt for iCloud pages Is just page after page when you scroll down. Is there a way to view two pages side by side?  It is really hard to alline things when they are not side by side. -- and no. making a new landscape document does not count.

    Anne,
    There are many, four I believe, ways to go about this. You could:
    1. Open Pages and File > Open > browse to your document > Click Open.
    2. With Pages running, Drag the document file to the Pages icon on the Dock
    3. Control-Click the document file and select Open With > choose Pages.
    4. Control-Click the document file and select Get Info. Choose Open With, choose Pages, Click Change All. Now any double-click on this document type will cause it to open in Pages. (I think this is the solution you are looking for, but I couldn't resist teasing you with the others.)
    Jerry

  • How do I "Print Booklet" with just odd pages and even pages for duplexing . . options disabled

    I have InDesign CS5.5 on a Windows 7 64-bit machine hooked to a Xerox 7750 printer.  I have created a 8.5x11 portrait document and trying to create a booklet on 12x18 sheets.
    I need to print duplex manually and so I need to print just the odd spreads and then the even spreads.
    I have printed to Adobe PDF and printed from my created PDF file and have it working, but I want to know why InDesign won't let me do it.  When I click "File > Print Booklet > Print Settings" then it shows the Print Dialog box with the Pages section, which includes the Sequence that normally would allow me to do Odd Pages or Even Pages, but it is disabled.  Why?  I can define Print Presets and I can choose Odd Pages, but when I choose that in the Preset box it does not show anything, everything is still disabled.
    Anybody have any idea of why it is disabled?  Is it my printer driver?

    I too was very frustrated after upgrading to indesign cs5.5 and the latest LION OS on my new MAC.  I missed the odd/even page selection in the print dialog box within Indesign.  I tried about everything and found little of value in various forums.  But I did find a workable solution that makes since in terms of Apple's OS.
    My objective is to "impose" my document and also end up with a file that I can just print again and again without "ripping" in the InDesign Print Booklet Dialog.
    Here is the quick version of what to do.  I am not including every little step with pictures. =)  (I can if there is interest.)
    1. create your document
    2. Print Booklet
    3. At the first dialog box, just ignore the printer in print preset (you will come back to this) and go to the 2-up perfect bound option and select 16 page signatures.  This will impose 2-up on 4 physical pieces of paper printed both sides.  So 16 of your document pages printed duplex on 4 physical sheets of paper.  It would be nice to then just select the printer and scaling, etc. and the option to print even pages, flip over and then print odd pages but that ain't an option.  If you have different needs, do the math and input the correct numbers before proceeding
    4. Click on Print Settings  to pull up a second dialog box.
    5. Select for Printer PostScript File (not your printer)  Also select for PPD your printer or Adobe PDF 9 if you have that installed.  Don't obsess on this just pick your Printer for the PPD.
    6. Select 1 copy and All Pages while in the General Tab
    7. Select the Setup Tab Here is where you put in the actual physical paper size that you are going to print your document on. Don't scale to fit.  You must do this.  If you feel the need, check out all the tabs and options but for now, you are just trying to get an output file.  You probably do want to select CENTER for page position in this same setup tab.
    8. Hit OK whcih will return you to the original dialog.  Check when you return to be sure that at the top Printer is populated with PostScript File.  Click on Print and give the thing a name and a location to save at the resulting dialog.
    Breathe as you are almost home.  You have sucessfully created a file that can be called up again and again without opening InDesign. (albeit, a postscript file but not a problem)
    Now,
    1. Double click on this new file (it will have a .ps extention) or just open it in your PREVIEW (apple supplied utility)   Preview is where you accomplish the even and odd page objective.
    2. Preview will show you a short progress dialog while it rips this postscript file into a PDF.
    3. Click on PRINT
    4. Select your printer,page range, select the Paper Size (again not document size  but  the size sheet that you are printing the 2-up , imposed (booklet) document on. If not in the selection dialog, then use the custom option to create it (custom paper size) and give it a name.
    5. Click on SCALE and insert 100% in place of the weird number that it will insert for you.  You will then see your document correctly displayed in the sidebar preview window.
    6.  OK, now what you have been waiting for. Click on the box that says Preview (the active window) and select Paper Handling from the drop-down and select from Pages to Print the coveted odd or even page selection.  You can also do other things that should have been back at the InDesign print dialog but are now gone.  Explore. Enjoy.
    7.  You will have to work out your own work flow about reverse or no reverse order and how to flip, etc. But you will be working with something predictable at this point.
    8.  Since this has been ripped into a PDF , you might as well Click on the PDF button and click on save as a PDF at this point to save that postscript to PDF rip.   Also print using PREVIEW for the newly created PDF file next time as you will not have to learn a bunch of new dialogs and be frustrated all over again.
    I am now back in business printing the book blocks for my handbound journals.

  • Suggestion: page up and page down

    Am I the only one who'd like it if the default behavior for the Page Up and Page Down keys while editing in Keynote was to change slides? Right now, I usually hit them after editing in a text box or clicking on a slide in the Slides pane. In either case, they don't advance or back up the slide. In the former case, they don't do anything. In the latter case, they page up in the Slides pane, but this isn't useful 99% of the time.
    Just my $0.02.
    MkIV

    Go to >Tools>Options>Advanced and uncheck the "Use Autoscrolling" and "Always use the cursor keys to navigate..."
    That worked for me.

  • How do I fix my FF when it doesn't fully load pages and won't scroll up or down when I press Page Up and Page Down?

    FF won't load pages, nearly at all. Some websites will partially load, but then will suddenly stop. In order to get the pages to fully load, I'll click Tools and open the Options menu, then I'll close the menu, resulting in the webpage loading up slightly more. I'll need to do that several times before FF will fully load a page. I can't even scroll at all through any of the webpages either when this happens. I'll hit Page Up or Page Down on my keyboard and nothing will happen. Also, I'll click other tabs on the browser and they won't move forward unless I do Tools > Options, and then close Options again.
    == This happened ==
    Every time Firefox opened
    == Several days ago.

    Seems like you have the accessibility VoiceOver feature turned on.
    Triple click the home button and try going to Settings>General>Accessibility and turn VoiceOver off. You may have to use three fingers to scroll the screen to get there. If problems see the following for how to turn off via iTunes:
    iPhone: Configuring accessibility features (including VoiceOver and Zoom)                                      

  • Saving 1 page changes another page settings

    I know that there is an easy solution to my issue.  I have a copy of a website that I wanted to duplicate its features.
    I have a copy of another website (A) locally that I want to copy.  In CS4, I defined a new site, opened a document which I named index.  Then I opened a page from site A, copied all the “Style and Layout” settings as well as the code from site A page to my index page.  I displayed correctly and I went about changing stuff and once done, I saved the index page with success.  Looks good with my changes and I’m happy. 
    I then created page 2 for my site, and opened a 2nd page from site A that I wanted to create my second page equal too, copied all the above files from 2nd page of site A to my second page for my site.  I made all the changes to my page and saved page 2 for my sight. 
    However, when I opened my index page, my 1st page, the settings that I saved from the 2nd page that I created, changed the settings to my 1st page. 
    Now, I know that is directly associated with the style and layout css, but, how do I go about saving a page settings without affecting another page settings successfully?  I figure it’s a easy step, but, I’m not in the mood after many hours of work.
    Thanks for your help if you know the solution to my issue. 

    All work is local.
    OK.
    Unfortunately you'll have to make do with the hit-and-miss guesswork already evident in this thread.

  • Moving from one page to another page - need to flush changed data

    Hello guys,
    I am in this situation:
    -- User opens edit page -A and edits something.....
    -- clicks another page B on menu -- gets unsaved data warning -- clicks OK
    -- Moves to page B (search page).....
    -- Searches for the same record and opens same page A (for the same record)
    -- Now again i see the same edits I made in the first step
    I want to load the data from database here.... i don't want to keep the edits (changes) after i move from that page.....
    because what happens is that after i go to another page and hit the Commit button..... that saves the data which i have modified in previous page but didn't save it.... which is a big problem for me....
    Any suggestion or idea willl be a greatly appreciated .. thank you...
    I am using 11.1.1.4
    Thank you
    -Raj

    The refresh operation is part of the row interface. Check the refrech(int mode) and the different modes
    >
    static final int REFRESH_WITH_DB_FORGET_CHANGES
    REFRESH_... constants are used as refresh mode flags to be passed into refresh(int).
    REFRESH_WITH_DB_FORGET_CHANGES forgets edits that the current user made to the row. The row data is refreshed from database. The latest data from database replaces data in the row regardless of whether the row was modified or not.
    If the current user had called Transaction.postChanges() REFRESH_WITH_DB_FORGET_CHANGES will pick up the data that he himself wrote through his call to postChanges().
    If REFRESH_REMOVE_NEW_ROWS is not specified, REFRESH_WITH_DB_FORGET_CHANGES puts a new row back to blank. If REFRESH_REMOVE_NEW_ROWS is specified, the new row is removed.
    >
    You can combine the modes if necessary.
    If you chose to go the rollback way, you should not generally rollback, but think in units of work. If you navigate to a different unit of work you should do a rollback. I'm doing this whenever the user navigates via a menu entry as they are used as boundries for units of work in my apps. This can be done as part of the taskflow, so that it's visible for all developers.
    Timo

  • On myspace home page and inbox page it will not show full page it is in the center,hard to read

    MY MYSPACE HOME PAGE AND INBOX PAGE IS NOT SHOWING FULL PAGE...ALL GONE TO THE CENTER
    == URL of affected sites ==
    http:// www.myspace.com/orangebyrd

    I did control and 0 and it worked,,thanks,thanks,thanks... (first time I did it wrong I hit ctr 1 and 0...)...Oh I am so glad I have it fixed ,cannot thank you enough..........Jean
    WOW, I am so thrilled to get it back to normal...whoever helped me God Bless You...

  • ADF Page Flow Action - Page Refresh

    Hello,
    BACKGROUND
    I'm working on a POC development environment using Oracle technologies. I'm using a Windows XP SP3 machine with JDeveloper 11.1.1.5 and WebLogic 10.3. What I have currently setup is:
    - Work in Jdeveloper 11.1.1.5 to edit code sources etc
    - Build project and EAR using Ant
    - Deploy EAR to WebLogic 10.3 using WLST
    The JDeveloper project was created as a WebCenter Portal Application however I don't use any of the portal features nor are there any included in the project (we might use this in the future). It's a basic vanilla ADF application at the moment with a few JSPs, a placeholder data control and 1 bounded and unbounded task flows.
    PROBLEM
    The package builds and deploys fine and I can view a landing page ok. The problem is when I try and click a button or link that goes to another page in the Page Flow the page just seems to refresh. I can see that a request is hitting the server but it would seem the framework isn't invoking the action.
    EXTRA INFO / DEBUG
    The weird thing is, if I right click a page in JDeveloper and run it in the integrated weblogic the application works fine. I thought it might be my build process so I tried right clicking and exporting an EAR file from JDeveloper and deploying that into my WebLogic but that one fails with the same refresh problem as my Ant generated one.
    I have done a file and directory comparison of the EAR and it all is the same. This lead me to believe it might be my WebLogic server/domain, so I deployed my Ant generated EAR manually into the integrated JDeveloper weblogic in which the auto deploy application is working. This however still fails with the refresh problem. It must be something to do with my EAR but I can't for the life of me figure it out as it all looks the same!
    I do get a few warnings when deploying, hopefully these can help:
    ####<11/10/2011 11:00:19 AM EST> <Warning> <J2EE> <OVLD630422KV1S> <AdminServer> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <3fe29258d1efb468:5549c41:132efedbfd7:-8000-0000000000000100> <1318291219078> <BEA-160140> <Unresolved optional package references (in META-INF/MANIFEST.MF): [Extension-Name: oracle.apps.common.resource, referenced from: C:\Oracle\Middleware\user_projects\domains\base_domain\servers\AdminServer\tmp\_WL_user\oracle.webcenter.framework\l81aqz]. Make sure the referenced optional package has been deployed as a library.>
    ####<11/10/2011 11:00:21 AM EST> <Warning> <J2EE> <OVLD630422KV1S> <AdminServer> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <3fe29258d1efb468:5549c41:132efedbfd7:-8000-0000000000000100> <1318291221031> <BEA-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored because the application MyApp-0.1 is not versioned.>
    ####<11/10/2011 11:00:36 AM EST> <Warning> <Default> <OVLD630422KV1S> <AdminServer> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <3fe29258d1efb468:5549c41:132efedbfd7:-8000-0000000000000104> <1318291236562> <J2EE JMX-46238> <Cannot map nonserializable type "interface oracle.adf.mbean.share.config.runtime.resourcebundle.BundleListType" to Open MBean Type for mbean interface oracle.adf.mbean.share.config.runtime.resourcebundle.AdfResourceBundleConfigMXBean, attribute BundleList.>
    Cheers,
    Ross

    Oh! I see now yes that seems to have fixed it. It seems that if you create a page as .jsp and .jspx they are slightly different too.
    .jspx has this around the content of the page
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    </jsp:root>
    The .jsp does not. So when you hit the .jsp page (e.g. test.jsp) in the browser without the extension (e.g. url:port/myapp/faces/test) you get a 404 not found.
    Hitting one that was created as a .jspx page with the extra XML stuff in the file works ok when you drop the extension.
    So just for clarification, should you use .jspx for 'pages' and .jsp for fragments of a page?

  • "Safari Can't Open Page" but the page opens in other browsers??

    Hope someone can help with this strange issue. I get the message:
    "Safari can't open the page https://secure-en-%0aadmc.premiumtv.co.uk/internalLogin/loginProcess/0,,13061,00 .html  because the page address is invalid"
    However the same page opens in Chrome.
    The page prior to this step is a log in page where I enter my username and password for that site, as soon as I hit enter the error message appears. It's as if it doesn't even try to open the page, the message appears that quickly.
    I have enabled cookies, emptied the cache, re-started and searched the forums for similar issues. The fact that it opens on other browers is what's getting to me. I've only just moved over to Safari after being a long time Chrome user and ideally only want to use one browsers and not have to switch between the two.
    I'm running the Safari 6.0 on Mountain Lion.
    Appreciate any help!

    http://www.en.bpl.admcsport.com/page/Home
    This is the login page. When I enter my username and password I get the error message:
    "Safari can't open the page https://secure-en-%0aadmc.premiumtv.co.uk/internalLogin/loginProcess/0,,13061,00 .html  because the page address is invalid"
    When I do the same in Chrome, it lets me in with no error message. Once I'm successfully logged in (in Chrome) the web page address is: http://www.en.bpl.admcsport.com/page/Home/
    The page the Safari is showing as an error message must be some intermediary page used to validate the login which Safari doesnt like for some reason.

  • RE: [Adobe Reader] when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? i

    HelloThank's for your helpsI hope this document is helpfulBest Regards,
    Date: Sun, 22 Jun 2014 17:10:17 -0700
    From: [email protected]
    To: [email protected]
    Subject:  when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help me th
        when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help m
        created by Anoop9178 in Adobe Reader - View the full discussion
    Hi,
    Would it be possible for you to share the document?
    Regards,
    Anoop
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6485431#6485431
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
         To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

    thank's for reply and your help
    i did the step's that you told me but  i still have the same problem
                                     i have the latest v.11.0.7
    i
    i disable the protected mode

Maybe you are looking for

  • Maximum open cursors exceeded - special case scenario

    Im sorry if I am asking the same old question but I assure you I have done a lot of research and tried everything I can think of. I have done a search on this and found hundreds of sites with solutions to this problem I still cant seem to get it to w

  • Keynote conversion to Powerpoint

    How do I convert a Keynote presentation to Powerpoint including the music files used from ITunes?

  • G/L Account for document

    Hi all. I have a question. Is there any posibility of change the G/L Account just for one document (A/P Invoice) in the creation time via SDK? Thanks

  • Question-Star Rating in Elements 11

    Please Help--Question about Star ratings...There are no stars under any of my photos.  It has always been that way.  Can't figure out how to activate stars under my downloaded photos.  Is something turned off or did I get a broken version of photosho

  • Install of Personal 8i or 9i on XP Home

    Is it possible to install 8i Personal edition on a machine running Windows XP edition? If not, is it possible to install 9i personal edition on the same machine? In the documentation for 9i seems to refer to XP Pro.... Thanks - John Anderson