Multiple pages refreshing to common page

I've been noticing an issue regarding Safari web browser on the iPhone.
I have my main page set to appleopolis.com, From there, I click on a link and it opens a new browser page to say, Google search (or any page for that matter). If I click refresh on the second browser page, all the pages (pages 1 and 2) refresh to whatever URL I refreshed. This happens to all pages, regardless of whether I have 2, 3, or more pages open nor does it matter which page I refresh.
Also, I don't have to have the second page opened as a "popup" for this to occur. For Example...
Page 1 is set to Google.com
Page 2 is set to NYTimes.com
Page 3 is set to CNN.com
...all three pages were opened individually by clicking the icon on the bottom right corner of the screen. If I were to refresh Page 2, then Page 1, 2 and 3 refresh to NYTimes.com If I refresh Page 3, then Page 1, 2, 3 refresh to Page 3.
Anyone else have this issue? Any idea why?

Turning off pop-up blocking half-resolves my issue. If I open multiple pages individually and refresh a page, all the pages no longer refresh to a common page.
However, in the example where I open a new page through a link from appleopolis, I still have all pages refreshing to a common page. Appleopolis seems to open web-links through a pop-up or new window script. When I click on the link, the address bar for the appleopolis page changes url's but doesn't load unless I hit reload on any of the other pages.

Similar Messages

  • Common http link on multiple pages

    I would like to have a single image used on multiple pages of
    a website for ease of updating, but I also need to have a common
    hypertext link associated with tha image. Is there a way of
    embedding a HTTP link with an image that is used in this way?
    MAny thanks

    If you will later want an image and it's link to be exactly
    the same in all
    instances, and future edits to the image or link will be
    copied to all
    instances, there's two ways-
    a few pages, use a dw Library item.
    How to-
    Select the image. On the quick tag bar at bottom of image,
    click the
    rightmost <a href> tag (may want to select any style
    tags to the immediate
    left also)
    then dw menu-->modify-->library items-->Add object
    to library
    In the Assets panel, give this new library item a name now.
    to use it in a page, drag it from the assets panel to where
    you want it in a
    page.
    if there will be many pages, use a ssi server side include.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • I need to supply a multiple page pdf download on my site...

    How do I upload a multiple page pdf on my site and have clients able to link to it/find it and download it?  I also want to have the pdf able to be accessed from a separate blog.  Is this possible?!  I have GoLive CS2.

    TangledRibbon,
    You can just:
    1) Save it to the folder where it belongs (where you have your site on your computer);
    2) Open the Site File and click any page/image/whatever;
    3) Press the Refresh;
    Now the PDF should appear in your site;
    4) Create a link to it from one or more HTML pages, in whichever way you create links (you may just type something and turn it into a link, browsing to select the PDF);
    5) Upload as usual (incremental or otherwise) to get it accessible for others.
    You may link to it from anywhere else by its URL once it is there.

  • Multiple Pages in a page

    Hi all,
    I am trying to add multiple pages to a page as links and not as full page.
    The scenerio is that i have about 7 intranet sites of my company and to every site i have to get SSO done and that i achived through appintegrator iview , now my problem is that i have to show all the intranet sites on the welcome page as link to the user so that when user click on to the link than he directly enters the site,
    but if i assign all the intranet sites as pages and assign it to a single page than it comes as page in page and not as link,
    is their any method that i can make my iViews or pages as link in another iview or page
    can somebody help me on this.
    Regards,
    Naveen Gupta

    Hi ,
      The scenario is that i have made many pages of the intranet sites of lntinfotech using appintegrator iview and url iview and now i want to assign all these pages in an iview as a link so that if the user click on the link than page of that intranet site should open.
    What i have done is
    1.Created pages for intranet sites
    As u told
    2.Created a JspDynPage and in the jsp, create  links something like this.
    <hbj:link
        id="link1"
        text="Link to google"
        reference="http://www.google.com"
        target="_TOP"
        tooltip="this takes you to: http://www.google.com"
        onClick="GoogleLink"
        />
    In the above code, in the reference attribute, you can mention the url of the one of the pages you have created. Similarly create 7 links. The url of the page can be obtained if you see the preview of that page.
    3.After creating the JspDynPage, create an iView from the par file.
    4.Add this iView to the main page you want. So now, your main page will contain links to all the pages you want.
    You can click on the required page and go to that link.
    But the problem is that the url in the refrence is to be provided is dynamic and changes everytime u refresh the page as  theses are now portal pages and not html pages and the error which i face is:
    iView not found: pcd:com.sap.portal.system/temporaryobjects3/9204ee5769c18e9b7928130a3f972615.
    Exception id: 11:00_05/04/06_0005_6132650
    AS u suggested:
    Instead of hard coding the reference, you can give it dynamically. In the final iView in which you have created links, you would have created a bean class when creating JspDynPage. In this bean class, create getURL and setURL() methods. Store the appropriate URL wherever you want in the bean and use the bean in the JSP page. Then you can specify the reference something like this: reference="<%=myBean.getURL()%>".
    But i dont know in which object would be the url path come from.
    Help me in this case.
    Message was edited by: Naveen Gupta
    Message was edited by: Naveen Gupta

  • Multiple pages in Smart forms

    Hi all,
    Actually I want to print multiple pages in Smartforms . I have a option to take New Page and set that Page as Next page . but In my case Pages are dynamic. if any person has solution please send me.... thanks

    Hi Srinu
    just loop the internal table . please see below my code
    i_output_email --- My internal table
    LOOP AT i_output_email.
          CLEAR i_output_email1.
          i_output_email1 = i_output_email.
          APPEND i_output_email1.
          AT END OF xblnr.
      calling the selfinvoice smartform using functional module
            CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
              EXPORTING
                formname               = gv_form
          VARIANT                = ' '
          DIRECT_CALL            = ' '
             IMPORTING
               fm_name                 = fm_name
             EXCEPTIONS
              no_form                  = 1
              no_function_module       = 2
              OTHERS                   = 3
            IF sy-subrc <> 0.
          error handling
              MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ENDIF.
    Call the smartform
            CALL FUNCTION fm_name
              EXPORTING
                archive_index      = toa_dara
                archive_parameters = arc_params
                control_parameters = gs_control_parameters
                output_options     = gs_output_options
           mail_recipient    = ls_recipient
           mail_sender       = ls_sender
                user_settings      = space
                is_nast            = nast
                is_repeat          = repeat
              IMPORTING
           it_output        = t_output
                job_output_info    = t_otfdata
              TABLES
                w_output           = i_output_email1
              EXCEPTIONS
                formatting_error   = 1
                internal_error     = 2
                send_error         = 3
                user_canceled      = 4
                OTHERS             = 5.
       t_otf[] = t_otfdata-otfdata[].
            CLEAR ls_otf1.
            LOOP AT t_otfdata-otfdata INTO ls_otf1.
              APPEND ls_otf1 TO t_otf.
              CLEAR ls_otf1.
            ENDLOOP.
            REFRESH i_output_email1.
          ENDAT.
        ENDLOOP.

  • Spreading a single form across multiple pages

    I'd like to implement a single record form that spreads it's items across multiple pages for the purpose of grouping related information on each page such as "Contact Details"," Education Profile" etc. There are way too many columns for a single page.
    In Oracle forms you can create a form across multiple canvases or on different tabs of a tabbed canvas. Each item has a property to position it on which canvas.
    Is this possible in ApEx? I can see that transaction processing could be complex.
    How do I avoid, for example, inserting the record a second time if I commit from a different page?
    Any comments appreciated.
    Paul P

    Another way to do this without javascript and ajax that works pretty well is to setup a list that represents the logical "sections" and display it as a sidebar list.
    Create a hidden item on the page called PX_ACTIVE_SECTION and set the visibility of each region on the page based on the value of this item. For example: :PX_ACTIVE_SECTION = 'Contact Details'. You can also have multiple regions associated with a single tab. Set the default value to whatever section you wish to display first.
    Next, set each list item to be "current" when :PX_ACTIVE_SECTION is equal to that item ('Contact Details', 'Education Profile', etc.). Also set the URL destination of each item to: javascript:doSubmit('section name');
    Finally, add a branch back to the current page that sets PX_ACTIVE_SECTION to &REQUEST.. This traps the doSubmit call so you can set the hidden item. (Add a condition, if needed, to prevent this branch from executing due to other buttons and requests).
    The result is that the user can switch freely between sections and save after all data is entered. The page does refresh (since it doesn't use AJAX), but if your regions aren't too big, it should be reasonable.

  • Cross-Tab in multiple columns on same page rather than on multiple pages

    I have a report that shows temperature readings and the date/time of the reading in a cross tab as a part of a report.  The amount of readings causes the cross-tab to take up multiple pages.  What I would like to do is set the cross tab to appear three or four times on the same page before going to the next page to reduce the number of pages in my report.  Any ideas on how I can do this?
    This is what I have:
    Page 1:
    Date/Time1  |  Temp1
    Date/Time2  |  Temp2
    Date/Time3  |  Temp3
    Date/Time4  |  Temp4
    Page 2:
    Date/Time5  |  Temp5
    Date/Time6  |  Temp6
    Date/Time7  |  Temp7
    Date/Time8  |  Temp8
    What I want is:
    Page 1
    Date/Time1  |  Temp1..............Date/Time5  |  Temp5..............Date/Time9   |  Temp9
    Date/Time2  |  Temp2..............Date/Time6  |  Temp6..............Date/Time10  |  Temp10
    Date/Time3  |  Temp3..............Date/Time7  |  Temp7..............Date/Time11  |  Temp11
    Date/Time4  |  Temp4..............Date/Time8  |  Temp8..............Date/Time12  |  Temp12    
    Page 2
    Date/Time13  |  Temp17............Date/Time21  |  Temp21............Date/Time25  |  Temp25
    Date/Time14  |  Temp18............Date/Time22  |  Temp22............Date/Time26  |  Temp26
    Date/Time15  |  Temp19............Date/Time23  |  Temp23............Date/Time27  |  Temp27
    Date/Time16  |  Temp20............Date/Time24  |  Temp24............Date/Time28  |  Temp28        

    hello,
    Don's suggestion of creating a "mock cross tab" is a good one.
    you can also try this Multiple Columns formatting idea if you wish:
    1) create a new report
    2) create a group on your date field
    3) put a summary on your Temp field and move it into the group header of the group
    4) suppress the details section and the group footer
    5) right click on the details section header in the design mode and choose Section Expert
    6) in the Common tab, choose Format With Multiple Columns
    7) in the Layout tab, choose a Width of about 2.66"
    8) choose Down Then Across for Printing Directions
    9) choose Format Groups With Multiple Columns
    10) bring this new report into your existing report as a subreport
    jamie

  • Firefox will NOT load multiple pages at once, Help!

    I cannot get Firefox to load multiple pages at once. If I try this, they will continue to show the "load"/"refresh" symbol forever and ever (at least half an hour by the time I got fed up). I can load one page at a time but even then it takes quite a long time for the page to fully load - god forbid the page has images on it because then it might take up to 10 minutes to fully load.
    Sometimes if I try to load multiple pages and then "x" out of them and try to do it one by one, it simply refuses to load ANY of the pages.
    I can load multiple pages at one time in IE on my computer, I can load single pages in IE without delay. I can do the same thing in Safari on a desktop mac in the house. So NO, it is NOT my internet connection, thanks.
    For God's sake, I'm sending this complaint/question in IE because I KNOW it won't send in firefox. How messed up is that?

    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.com/kb/Server+not+found
    *https://support.mozilla.com/kb/Firewalls

  • Is it wise to chage site design from multiple page to single page scrollable design for SEO?

    I have a current site with multiple pages created in Muse.  From watching some tutorials I am beginning to believe that converting the site to a one page scrollable format would be more applicable for table and mobile applications.  My questions are these:
    By adding anchor points and links to the stacked pages will this act the same as independent pages for SEO, or will I lose all of the current web traction I have earned and be starting over?
    Is it commonly accepted that by converting to a one page format that it will be easier for search crawlers to rank my site?

    Hi,
    Single page websites can be great for new sites or for some special projects, but I won't recommend them as long-term solutions and, if you already have a multi-page website, I do not recommend switching to a single-page site.
    If your single page site has great content and good structure, google might provide same treatment as it does for various sub pages website.
    A useful Video by Matt Cutt, head of the webspam team at Google
    Search engines will index all the pages of your website, providing multiple opportunities for your site to come up in searches. When your site consists of only one page, a single page is exactly what you’ll have indexed.
    That means if you have many services, many products, single page design will really compromise your rank and result in search engine.
    Do let me know if you have some more questions.

  • Power Query website with multiple pages

    Hi There,
    Is there a way to use Power Query to extract data from a website that has multiple pages when the URL does not seem to have a page number parameter?
    See the bottom table (Past events) in this site:
    http://www.sqlsaturday.com/events.aspx
    There are multiple pages, but the link to each page is just something like: javascript:__doPostBack('ctl00$ContentPlaceHolder1$GridView2','Page$2')
    Thanks in advance for your help
    Help Others! Don't forget to mark your thread as answered

    I have in the past delved down in to the AJAX URL syntax for refreshes done that way. It is often actually easier to consume such response formats in Power Query.

  • Connection lost while scanning multiple pages

    When scanning multiple pages I keep getting an Errror message saying connection lost
    EVEN THOUGH: 
    I am connected via cable and both ends are securely in place.
    I am scanning 24 pages. Is there a limit to the number of pages the automatic doccument feeder accepts ?
    Single page Scans work fine.
    where am I going wrong ?

    Hi @babbles1 ,
    I see that you are experiencing issues when scanning multiple pages. I would like to help you out today.
    Is this the Laserjet M177fw model?  How Do I Find My Model Number or Product Number?
    Most of the Laserjet ADF feeders can hold up to 35 pages at a time.
    Make sure the printer is connected directly to a wall outlet and the USB cable is connected directly to the computer. The USB cable shouldn't be longer then 6 feet. Try another USB port on the computer. Try another USB cable, just to rule that out.
    Download and run the Print and Scan Doctor. It will diagnose the issue and might automatically resolve it. Find and fix common printer problems using HP diagnostic tools for Windows?
    What were the results when you ran the Print and Scan Doctor? (did it print or scan, any error messages)
    If you need further assistance, just let me know.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • I am trying to scan multiple pages from my scanner using a Mac and don't know how to

    Hi there,
    I am trying to scan multiple pages using HP Deskjet 3070A (Print Scan Copy) and it is all wireless using a Mac OSX 10.6 Snow Leopard and it won't let me. And I am trying to send this document via email.
    Can you offer advice as to how I can do this.
    Much appreciated.
    This question was solved.
    View Solution.

    Hi,
    Please refer manual for the printer and page 26 from link below.
    Although I am an HP employee, I am speaking for myself and not for HP.
    --Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

  • In Pages '09, OSX 10.8 how do I print multiple pages on one sheet of paper.  (I used to be able to do this in earlier versions via the "page setup" menu.

    Forget it.  The answer is that the multiple page per page setup comes up in the printing menu.  (When you do command-P)

    Click on the Show Details button in the Print dialog.
    Whenever options seem to disappear, have a look around and explore what is available. Particular when they have what appears to be relevent labels.
    Peter

  • New preview function for iPad–error message "Multiple page sizes not supported"

    When I try to use the new preview function with my iPad I get the error message "Multiple page sizes within a layout are not supported". I have a page that is 768 x  1296. I would really like to preview this folio before publishing. Any suggestions?

    If you're trying to create an article that scrolls vertically, you can create a 768x1296 article in a 1024x768 folio, but you need to select a Smooth Scrolling option when you create or import the article, or in the Article Properties dialog box.

  • How do I scan multiple pages into one pdf document on a HP Envy 4501 Printer

    My HP Envy 4501 Printer won't let me scan multiple pages into one pdf document.
    I went to "Advanced Settings", clicked on "file" and made sure that the check box next to "Create a separate file for each scanner page" was unchecked.
    When I clicked the Save button it showed the page that I scanned and showed 1/1.  On the right side it had options for changing the brightness and Contrast, Rotate and Crop and "Back", "Save" and "Done" buttons, but nothing about scanning another page.
    Not to mention HP's Customer Support is useless!
    I'd appreciate any help I can get with this problem.
    Thanks,
    Mark

    Hi BH,
    I see your diagram.  I just scanned something.  The screen that I'm looking at right now shows the preview page and the scroll box to the left of that just like in your diagram.  The screen does not show the + button nor does it show the red x button under the scroll box as in your diagram.  I can't see the plus sign because it is not there.
    I tried re-installing the software and drivers as you suggested but that did not have any affect.
    Thank you for trying to help me with this problem but it hasn't worked, therefore I can't mark the reply "Accept as Solution".
    I've noticed that on HP's support forum web page there is only 1 solved request for assistance.  That doesn't give me much confidence in HP.
    Please reply back to this post to let me know if there is anything else that I can try or if you know someone else at HP that can help.
    If I don't here back from you, I'm returning this HP Envy 4501 Printer to get my money back to use it to buy a printer from one of HP's competitors.
    Thanks,
    Mark  

Maybe you are looking for

  • I lost my iPhone 4. as the Location services were off, is there any way to track my phone?

    i lost my iphone 4. i had not kept the location services on. can i track my iphone via IMEI or anything else? please let me know ASAP. i am very worried about it. please reply as soon as possible. thank you

  • Configure: error: Cannot find php-config

    After security update 2008-002 for Leopard, the PHP module builder stops, because the PHP version running on the machine doesn't match the header files from the PHP-developer part. More info see: http://www.naquah.net/blog/dennis/2008/03/20/how-to-ge

  • Parking & Releaseing a transaction by using T code F-38

    Dear Friends, I would like to know whether we should park and release a statistical entry of Bank Guarantee thru T Code F-38. The same user will create then superior will release it. Thanks & regards, Vinayak S Vaidya

  • Handling & loading of frames in a frameset

    Hi, We have a frameset page, consisting of a border, left-hand menu, and body frame. The application uses a global class, UBSRaiseMessage, which should load a message page into the body frame using the following code: public static void loadViewBeanI

  • I can't execute my forms from another machine

    After a lot tears, blood and sweat, eventually I achieve to install successfully an IAS (server). I probe it and realize that I can execute forms in the Navigator wich is in the IAS Server, but I can't execute it from another machine. I now that the