Appstore: too many HTTP redirection problem / túl sok HTTP-átirányítás probléma

HY / sziasztok,
When I open the appstore, and choose a program, and open the info page, after that the page didnt open,  just say "too many HTTP-redirect.".
Why??
szeretnék megoldást a következő problémára
mikor belépek az appstore-ba és kiválasztok egy programot , nem nyitja meg a tájékoztató lapot, hanem kiírja hogy "túl sok HTTP-átirányítás".
MIért van ez???

Best Fixes for ‘Cannot Connect to iTunes Store’ Errors
by Patrick Jordan on August 30, 2012 in iPad Tips & Tricks
I first posted about ‘Cannot connect to iTunes Store’ errors on the iPad back in May of this year. I was getting this error when trying to update or install new iPad apps.
Since then the issue has continued to trouble many iPad and iDevice users – and thanks to our excellent readers and commenters we’ve learned a number of effective fixes for this problem.
Here are the best ones I’ve seen – each of these has proven successful for many users:
DNS Settings Change
This fix has been recommended by Apple support and has proven successful for many commenters on my previous post. The way this works is to change DNS settings on your iPad or whichever iOS device is affected – by adding Google’s DNS server/s.  Here’s how to do this:
– Go to the Settings app and tap on the Wi-Fi section in the left sidebar
– Then look at the ‘Choose a Network’ section in the main right-hand side area of the page and look for the network name that has a check mark next to it and rendered in blue text – the WiFi network you are currently using
– Tap on the blue arrow at the right-hand side of the listing for that network.
– On the next screen you’ll see a section labeled ‘IP Address’ with three large buttons below it. Make sure the DHCP button is selected. Below that you’ll see fields for IP Address, Subnet Mask, and others. Tap on the DNS field (the fourth one down).
– This will bring up the iPad’s on-screen keyboard and place the cursor at the end of the IP address for the DNS server currently being used by the iPad. Backspace until all the numbers for that address are gone. Then type this in:
8.8.8.8
Please note the periods after the first three 8s. You can also use 8.8.4.4 – both are valid addresses for Google’s DNS servers.
Download an App Via the Purchased Tab in the App Store
– Open the App Store app on your iPad or whichever iOS device is having this issue.
– Tap on the Purchased button in the bottom navigation bar.
– This will show you all the apps you’ve purchased on the iPad. Those that are already installed with a greyed out label. Others will display a small download icon, showing a cloud with a downward facing arrow in it.
– Tap on one of the download icons and download a purchased app.
For many users this has cleared some sort of App Store queue and allowed them to resume with normal updates. Some have had to repeat the download with a few apps in the Purchased section.
Set the Date Forward and Revert Back
– Open the Settings app and go to General > Date & Time
– On the Date & Time screen, tap to turn off ‘Set Automatically’
– Tap on ‘Set Date & Time’ and enter a date a couple of years or more in the future.
– Go out of Settings and then straight back in and turn  ‘Set Automatically’ to restore the current date and time.
(update me if work's)

Similar Messages

  • While surfing web too many website redirect occurs on safari as well as Google search. I am using wifi. This problem not there on my pic which is connected through wired modem

    While surfing web too many website redirect occurs. I am using wifi.  some times it redirects to sexual sites some times to App Store. I tried after deleting history and cookies also. I am using safari and Google browser. I changed router configuration and password but problem still exists.

    Hi! Thanks for your quick reply.
    A few things happened since I've posted this.
    1)I've deleted all the history and cookies from my macbook safari and when I opened the website with the issue, the problem did not happen this time.
    2)Seeing this, I've deleted my history on iPhone's safari and opened the same website but the problem was there again.
    3)The problem does not happen on iPad.
    So, I do not have the problem at all on Google Chrome but on Safari (now just on iPhone)
    Is this still about my router settings? If so would changing my phone DNS settings would suffice? Or do you think the problem might still remain on my computer as well?
    This is so frustrating for a person who does not know anything about technology at all
    Thank you!

  • Can't Solve the "Too Many Clients Tasks" Problem

    Hello All ,
    I am creating a java desktop application , and i keep getting this error message:
    [Microsoft][ODBC Microsoft Access Driver] Too many client tasks.
    Any way ,i googled for this error and i found that because i creates many connections with database "more than 10 i think " , and that why i get this error message ..
    The problem is that i do not know how to solve it , i tried to close the connections and i still getting the same error
    I searched this forum , and someone suggest to close the connections and the statements and the resultset , but still not working
    this is the code
    public class Database_Mangement {
        private String User_ID;
        private String  user_name;
        private String password;
        private Admin_Connection c;
        private Connection conn;
        private Connection uni_conn;
        private ArrayList<Admin_TableEntry> data;
        public Database_Mangement() throws SQLException
          conn = null;
          uni_conn = null;
          conn = DriverManager.getConnection("jdbc:odbc:smart_database");// Connect with database no 1 through ODBC
          uni_conn = DriverManager.getConnection("jdbc:odbc:uni_database");//Connect with database no 2 through ODBC
          data = new ArrayList<Admin_TableEntry>();
         ArrayList<Admin_TableEntry> getInformation(int type)throws SQLException
             Statement stm = null;
             ResultSet getInfo = null;
           try{
             //get User Information
                if(type==1)
                     stm = conn.createStatement();
                    String temp;
                    temp = "select * from Students";
                    getInfo = stm.executeQuery(temp);
                else if(type==2)
                     stm = uni_conn.createStatement();
                    String temp;
                    temp = "select * from Students";
                    getInfo = stm.executeQuery(temp);
                 while(getInfo.next())
                      Admin_TableEntry tempclass = new Admin_TableEntry();
                      if(type==1)
                      {tempclass.ID = getInfo.getString("Student_ID");
                       tempclass.Name =getInfo.getString("Student_Name");
                       tempclass.balance=getInfo.getString("Student_Balance");}
                      else if(type==2)
                          tempclass.ID =getInfo.getString("Student_ID");
                          tempclass.Name = getInfo.getString("First_Name");
                          tempclass.Last_Name =getInfo.getString("Last_Name");
                          tempclass.haveaccount=getInfo.getBoolean("Have_SmartCard");
                       data.add(tempclass);
    catch(Exception e)
    {System.out.println(e.getMessage();}
    finally
         conn.close();
         uni_conn.close();
        stm.close();
    //    getInfo.close();  Please note that i get an error message when i try to close the ResultSet
    //and this is the error message
    // Exception in thread "main" java.sql.SQLException: ResultSet is closed
                   return data;
    }and thank you for your time..

    Thanks , but it only solved the ResultSet.close() problem ,
    i am still getting the Too Many Clients error
    and i am closing every connection i created after the end of every function .
    i think i will switch to SQl server 2008 ... Hope it will be better

  • SQLException :Too many client tasks problem

    Hi,
    In my Standalone Java Swing application, iam using connections to the MS-Access Database using Connection pooling..Iam initializing around 10 connections. After executing, performing some operations on application, after sometime...i get the SQL Exception Too many client tasks exception..
    I have checked my programs..iam closing all my result set and prepared statements..
    Where am i going wrong?
    Can anybody pls advice me to solve this problem?
    Regards,
    SRhodes.

    remember access has a max number of connection to handle which you are not closing. you close only resultset and statements
    ivo

  • "Too Many Cards Open" Problem

    since I updated the last update on my pre whenever I try to use a email link I get a too many cards open message even if there is only one card open. Then when I close everything and try to open a new email card or web card I get the same message until I restart the phone. Has anyone heard if this?
    Post relates to: Pre p100eww (Sprint)

    Hello paktec,
    Are you using an HP Touchpad?
    If you are experiencing the issue on a TouchPad try closing the applications and relaunching whatever new applicatiion you was trying to use.
    If you are done with an application that you are not going to use again for while try completely closing the application before launching a new one.
    There are two ways to close applications on the device.
    1. Swipe the application up off the top of the screen
    2. Pull the application down and slingshot it off the top of the screen.
    By doing option 1 you are suspending the application in the background allowing it to open quicker subsequent times. By doing option 2 you are completely closing the application out. Opening the application later will take a little while longer, but if the application has a memory leak you will not run into any problems of it using memory while being in a suspended state.
    If I have helped you in any way click the Kudos button to say Thanks.
    The community works together, click Accept as Solution on the post that solves your issue for other members of the community to benefit from the solution.
    - Friendship is magical.

  • Verizon data connectivity problem the page contains too many server redirects

    I work at a bank and literally Everyone on the Verizon network with an Android OS phone is getting this error when they try going to our website through the phone browser but it only pops up the rror after trying to login.  we have done difinitive testing that this is not occuring to any AT&T phones or black berry.  and it also is not happening with the Verizon Iphone.  Its soley an android issue that we can tell.    It just in the last week or so started doing this.  it had been working fine the last  few months.  Rebooting the phoen does not work.  clearing the browser cookies and cache and history does not work.  any legitimate ideas on what is causing this would be appreciated.  All things indicate an issue within the Android OS and its browser..

    Verizon Wireless Customer Support        Aug 1, 2012 3:36 PM                                    (in response to bgleas)               
    Currently Being Moderated               
    Bgleas, thank you for sharing your issue as well. When other people send you text messages, do they receive any errors that it was not sent? Is this happening with numbers from a certain carrier? Try clearing your text threads and also clearing cache from messaging. Settings, Applications, Manage Applications, All, Messaging, Clear data/cache. Let me know your results.
    MarquiaF_VZW
    Follow us on Twitter @VZWSupport
    I JUST FOLLOWED THESE INSTRUCTIONS, ONLY INSTEAD OF CLEARING OUT THE MESSAGING, I CLEARED THE BROWSER!  IT WORKED.  THE ERROR MESSAGE IS GONE, AND NOW THE BROWSER IS WORKING AGAIN 

  • Proxy Server / http redirect problem

    I am trying to use a WLS instance as a proxy server for another WLS instance.
    I have configured the weblogic.properties file as follows:
    weblogic.httpd.register.proxy=weblogic.t3.srvr.HttpProxyServlet
    weblogic.httpd.initArgs.proxy=redirectURL=http://url:port
    weblogic.httpd.defaultServlet=proxy
    However, I try to serve the page, I get a 404 error.
    The odd thing is though, if I submit the URL without the page name, I am redirected to show the index listing of the remote server!
    Am I missing something?

    Hi Winnie Chow!
    I have an article that may contain some helpful troubleshooting steps for you regarding this issue:
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • Too many contacts = sms problems

    Hi, i bought and 16GB iPhone last week and i'm having some problems with SMS.
    When I click on the SMS, it takes about 40 seconds to open (when it opens, because normally just returns to the home screen), everything is really slow (opening conversations, writing/reading messages..). The problem only occur when my big list of contacts its in the phone (+- 4000 names).
    My sister bought and 16GB in the same day, everything is equal, but she only have 100 contacts and her iPhone work perfectly. I already tried restoring my iPhone and reseting, but after syncing my contacts, the SMSs just stop working right. When i sync MY contacts in HERs iPhone, the SMSs of hers phone also starts having problems.
    I feel like if it wasnt prepared for that ammount of data. What should i do? Does the iPhone has limitations regarding the number of contacts?
    Thanks in advance.

    My life would be a lot easier if the iPhone had a spotlight, but in the time been, my fingers are getting stronger from all the scrolling...
    I cant delete contacts because most of them are business relations/ hotels/ restaurants/ tennis partners... My contacts are my office on the road. But thanks for trying to help...
    Anyone have a solution for my SMS problem?

  • TOO MANY OPEN CURSORS PROBLEM ... PLEASE HELP

    Hi,
    my problem is the following :
    I got data from a system in flat file format. ( ascii, semicolon separated )
    I wrote mapping classes to different tables and insert via Oracle thin driver.
    The data I got isn't 100% consistent. It may happen that there are double
    records for tables whith unique indexes.
    I catched the Exception like in the segment below
    Statement insertStmnt = null;
    try{
    insertStmnt = connection.createStatement();
    insertStmnt.execute(insertString);
    connection.commit(); // autocommit is diabled
    } catch ( Exception sql ) {
    System.out.println(sql.toString());
    connection.rollback();
    insertStmnt.close();
    The Problem : when receiving the SQLException ( UNIQUE CONSTRAINT VIOLATED )
    the cursor remains open.
    After exeeding the open_cursors system property ( Oracle )
    no more data is loaded.
    ( the input files contains sometimes more than one million rows )
    Any suggestion to my Mail
    [email protected]
    Thanks

    Hi!
    Now you only close your statement when you catch an error. You will have to close it if things works out fine as well:
    Statement insertStmnt = null;
    try{
    insertStmnt = connection.createStatement();
    insertStmnt.execute(insertString);
    connection.commit(); // autocommit is diabled
    insertStmnt.close();
    } catch ( Exception sql ) {
    System.out.println(sql.toString());
    connection.rollback();
    insertStmnt.close();
    Good luck!
    /Tale

  • WAP4410n Http redirect problem

    I've set this up on my AP (latest firmware installed)
    However none of my (Windows xp/vista) will go to that page when they first attach to the Wireless network
    Windows Browser (IE7) settings are for auto-detect, and I can browse to other places so Iknow the basic connections are working.
    I can manually get to the URL so I know its not a permission issue
    Does anyone know how the cisco box knows if the client connection is considered an 'initial' connection'?
    Cheers
    AJ

    Hello, this is Julio Ordonez.
    Here is another post with some information about this issue https://supportforums.cisco.com/message/3739321#3739321

  • Will too many instances created problem in production?

    Hi,
      I have a approval workflow for customer creation. It is transported to production. Now a 500 customers are created at a stretch in production. will this affect the performance of the workflow?
    How do we check the performance of the workflow ? what are the ways that we can follow for effective performance of workflow?
    Thanks,
    Sivagami.R

    Hi,
    In production, the workflow was working fine. Suddenly the dialog workitem text is not getting replaced with variable values. it is shown as Customer &customer.number& instead of the values.
    At a small span of time nearly 1000 customers have been created and this workflow has been triggered for all instances. Can this be a reason for the probelm.
    Thanks,
    Sivagami

  • HT201328 My iphone has been locked as incorrect passcode has been keyed too many times

    My iphone has been locked as incorret passcode has been keyed too many times

    Take a look at this link, http://support.apple.com/kb/HT1212

  • Too many files open when parsing xml

    HI,
    I have an application which needs to parse about 13 XML files multiple times.After parsing the XML and creating a DOM I put in values to create an XML message which is then put onto a message queue.I am getting a 'Too many files open' problem.I have run the loop a maximum of 105 times after which i get the problem.However I will need to do this atleast more than 10000 times.Can someone suggest a solution to read the XML, create a DOM and populate the DOM without encountering the above mentioned problem.If I just parse the XML and store the 13 DOMs in a HashMap and use the same, the text values from the previous call get appended resulting in an invalid XML.To overcome this we parse the XML each time a message is to be sent.We also tried increasing the system memory as suggested at some sites but the solution was of no help.
    Thanks & Regards

    Don't know what this has to do with Web Start but you should make sure that, after parsing a file, the corresponding InputStream is properly closed.

  • HT1933 How are you supposed to do this when it DOESN'T EVEN WORK!!!! you press report problem and it comes up saying " too many http redirects". Total useless !

    How are you supposed to REPORT THE PROBLEM when it DOESN'T EVEN WORK!!
    I clicked it as I got a receipt for something that HAS NOT EVEN BEEN BOUGHT ! (It's funny how apple try to charge me twice for something when I work nightshift and my phones switched off!)
    and all that happened was it came up saying "too many HTTP redirects" .
    And it won't let me report it ! X

    Go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report your issue to the iTunes Store.
    Regards.

  • HT1933 When I try to report a problem, it says "too many http redirects". The page will not open, so I can't report the problem!

    How can I get to the report a problem page? The song I bought will not play! It just says "too many http redirects"

    Susiebwb wrote:
    Can any one please assist me.... I paid twice for an app by mistake.... ...
    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

Maybe you are looking for

  • B&W help

    Hello  I was wondering if anyone could tell me how to take a black and white photo and make a part of it in color? I have the trial thing for Lightroom because I am trying to figure out which one I want between Lightroom and Elements? Any help would

  • Group by selection

    I have a report which i am grouping by country. The country field appears once and the other fields appear based on country value. Is there a way to give users option in the crstal report to pick a group by field? Thanks

  • Password not to be a command line parameter within scripts

    Hi, We have a few batch programs wherein the database passwords are stored as a command line parameter in an environment variable script. But the customer wants to avoid this. What are the options of storing password externally but which should be ac

  • Problem in JSP Call ! Urgent

    Hi All, I am facing one issue while calling the jsp page from OAF page. When I am calling the JSP from html page it is getting called, but when I am calling through OAF Page, the page is not getting called. Instead of a blank page opens. The HTML whi

  • IPhoto '09 - Adding your own latitude and longitude

    It appears that iPhoto 09 does not allow you to add your own Geo location (e.g.: latitude and longitude data). Is this correct? Are we limited to the list Apple provides?