Internet wont work on iphone 6 at certain times of the day

I have just recently bought a new iPhone 6 and during certain times of the day (usually (but not always) between 11AM-5PM) I have no internet connection from my home WiFi or from my carrier. Also sometimes this happens every other day or everyday. Whenever i open an app that uses the internet it either says no internet connection, crashes, or simply just doesn't do anything. I've tried disconnecting from my WiFi completely and using my carrier (the internet from that doesn't work either) and I've tried switching the WiFi in my settings on and off. if someone could please help me i would greatly appreciate it.

try settings - general - reset - reset network settings, you will need to enter known wifi password again.

Similar Messages

  • Internet LED turns Red at a certain time of the day

    I have a customer who last year would lose there internet connection like after 4:30pm each day. I was over there a couple days ago and saw it in action. I noticed that on the Actiontec GT704WG modem all the lights would start blinking and then the Internet LED would turn red with all other still green and then it would connect again for a minute and keep going through that cycle. Already did the reset of modem etc. Even happens when the Cat 5 cable is not plugged in. Could this be a power issue with the modem? Also, the ipconfig settings are fine when this is happening... Anyone have any ideas what the issue is? Thank You

    All of the lights blinking? Would this include the power lights or only the Ethernet and Wireless lights? If it's the lather, it sounds like the computer searching for a way to the Internet using broadcast packets. The DSL light if it's blinking would indicate a loss of sync, and this can turn the Internet light red. Anyhow, if you can clear up what exactly was blinking, we can continue.
    ========
    The first to bring me 1Gbps Fiber for $30/m wins!

  • My Internet wont work on iPhone 5 nor email or App Store. How can I fix

    My Internet wont work on iPhone 5 nor email or App Store. How can I fix

    Try the steps in this artile: http://support.apple.com/kb/TS1398

  • Siri wont work on iphone 4 :( so apple updated the new IOS 6 only for iphone 4s n 5 users..... Officially Im Sad

    Siri wont work on iphone 4, so apple updated the new IOS 6 only for iphone 4s n 5 users..... Officially Im Sad

    theres nuffin espacial about iphone 4 and 3gs in IOS 6
    COPY PASTE FROM http://www.apple.com/ios/whats-new/
    Flyover and turn-by-turn navigation are available only on iPhone 4S, iPhone 5, iPad 2 or later, and iPod touch (5th generation). Cellular data charges may apply.
    Siri is available on iPhone 4S, iPhone 5, iPad (3rd generation), and iPod touch (5th generation) and requires Internet access. Cellular data charges may apply.
    FaceTime video calling requires a FaceTime-enabled device for the caller and recipient and a Wi-Fi connection. FaceTime over a cellular network requires iPhone 4S, iPhone 5, or iPad (3rd generation) with cellular data capability. Availability over a cellular network depends on carrier policies; data charges may apply.
    Offline Reading List is available on iPhone 4 or later and iPad 2 or later.
    Made for iPhone hearing aids require iPhone 4S or iPhone 5.
    Panorama is available on iPhone 4S, iPhone 5, and iPod touch (5th generation).
    Find My iPhone and Find My Friends enable you to locate iOS devices only when they are on and connected to a registered Wi-Fi network or have an active data plan.
    iCloud requires iOS 5 or later on iPhone 3GS or later, iPod touch (3rd generation or later), or iPad; a Mac computer with OS X Lion or later; or a PC with Windows Vista or Windows 7 (Outlook 2007 or 2010 or an up-to-date browser is required for accessing email, contacts, and calendars). Some features require iOS 6 and OS X Mountain Lion. Some features require a Wi-Fi connection. Some features are not available in all countries. Access to some services is limited to 10 devices.
    Major League Baseball trademarks and copyrights are used with the permission of MLB Advanced Media, L.P. All rights reserved.
    Starbucks pass is coming soon.
    Some features may not be available for all countries or all areas. Click here to see complete list.
    Siri is available in Beta only on iPhone 4S, iPhone 5, iPad (3rd generation), and iPod touch (5th generation) and requires Internet access. Siri may not be available in all languages or in all areas, and features may vary by area. Cellular data charges may apply.

  • How can I set a passcode that is only required at certain times of the day. Ie: my child needs access for school use, but don't want her playing iPad in the middle of the night. I cannot identify a way to have the iPad turn off or require a password

    I cannot find a way to enable my child's iPad to require a passcode only at certain times of the day.
    Yes I have used the clock/timer/ countdown - great to restrict how many minutes of iPad usage they get a day.
    But as my child requires the iPad in school for class lessons the usage at school varies maybe 30 mins 1 day and a few hrs on other days
    I want the ability to say set the iPad to not work between say 7pm and 7am, ( unless a passcode is entered) so my child isn't playing games on it in the middle of the night...
    Apple I cannot see anything in the settings that performs this function
    Help

    You can Remote Lock his iPad with Find My iPad using a computer at whatever time you like.
    http://support.apple.com/kb/PH2700
    Note: The iPad may be disabled if he tries the passcode too many times.

  • Mechanism that runs my application only at certain times of the day

    Hi,
    As my title suggests, i'm looking for some code that will allow me to run parts of my application only at a certain time in the day. More specifically, I want the code to run these parts of the application at 5pm only on weekdays.
    I've tried various different types of loops to do this, but can't find anyway to do it.
    Could somebody suggest a better way of doing it?
    Thanks in advance.
    Here is some example code of what I tried:
    public static void main(String[] args)
         // TIMER
         Calendar cal = new GregorianCalendar();
         // Get the components of the time
         int hour24 = cal.get(Calendar.HOUR_OF_DAY); // 0..23
         int min = cal.get(Calendar.MINUTE); // 0..59
         int today = cal.get(Calendar.DAY_OF_WEEK);
         final int RUNH = 17;
         final int RUNM = 0;
         app start = new app(); //starts the application
         while (!((hour24 == RUNH) && (min == RUNM)) || (today ==1 ) || (today == 6))
              // do nothing
         if((hour24 == RUNH) && (min == RUNM) && ((today != 1) && (today != 7))) // 5:00 on a weekday
              System.out.println ("Update Running " + hour24 + " " + min + " " + today); //runs some sort of update on the application
    }

    Something like this will work:
    long now = System.currentTimeMillis();
    GregorianCalendar cal = new GregorianCalendar();
    cal.set(Calendar.HOUR,17);
    cal.set(Calendar.MINUTE,0);
    cal.set(Calendar.SECOND,0);
    int day = cal.get(Calendar.DAYOFWEEK);
    int yearday = cal.get(Calendar.DAYOFYEAR);
    cal.set(Calendar.DAYOFYEAR,yearday + (day == Calendar.FRIDAY)? 3 : 1))
    long next = cal.getTime() //don't know... maybe needs another getTime()?
    Thread.currentThread.sleep(next-now);

  • Running test at certain times in the day

    I am using LabVIEW 7.1 with Windows 2000.
    I have a program that needs to run for a set amount of days. Each day this program has certain duties to perform at certain times in the day. I have it able to run for a number of days but I am still working on the time intervals between cycles. I am looking for either a certain vi or a certain method on how to do this. I appreciate your help.
    Ron Deavers, CLD

    My inclination would be to use absolute timing instead of relative (elapsed) timing. The reason is twofold:
    1. Absolute timing is dead easy to code and seems easier to manage as you introduce new and arbitrary events that might fall between preexisting events that you've created. Assuming you're not looking for ms accuracy, polling overhead won't be a big deal.
    2. With elapsed time, you run the risk of progressively falling behind schedule if events take longer to execute than you have anticipated or coded for.
    This is one of those "I'm sure it's been coded many times before" applications, but it seemed like fun, so I coded it up using a standard state machine. Mine uses a schedule-info array to define events and assumes that the elements of the array are ordered chronologically.
    Hope it helps,
    John
    Attachments:
    Scheduler.zip ‏33 KB

  • HT4113 Can you set a passcode to activate at certain times of the day, say at 930pm, and  turn off again the next morning?

    Can you set a passcode to activate at certain times of the day, say at 930pm, and  turn off again the next morning?

    No, sorry, you can't. The screen lock passcode is either on at all times or it's off.
    Regards.

  • Two problems, disconnecting and extremely slow internet at a certain time of the day.

    My first problem started to occur since the beginning of this year, after I've upgraded from 1MB/s to 3MB/s. EVERYDAY at 2:39 PM EST or sometime around there, my internet would disconnect (most common at 2:39). It would take some 5-20 minutes to reconnect by itself. I go to 192.168.1.1 and go to broadband connection and press disconnect, then reconnect to get myself back on asap. It would take me a few tries disconnecting and connecting to get the internet back up. I probably do disconnect during other times of the day, such as night time but I don't notice it as much because I am not using the computer at the time.
    My second problem is slow download speed at night. As I said, I have a 3000/667 kb/s connection. My internet connection speed is normal during the day time .. but when I ran a speed test during night time, I get around 333 kb/s download and 600 kb/s upload. So, my download speed drops significantly at night and my upload speed is normal.
    I am using a D90-327W15-06 modem and I am not using a wireless connection.
    Margin (dB) 14.5 11.0
    Line Attenuation (dB) 40.0 23.0
    Transmit Power (dBm) 18.4 11.9
    Don't know if that information helps ..
    P.S Sorry if this is a lot to read, I wanted it to be as much detailed as possible.

    #1 Is wireless in the router enabled?
    #2 If so, to question number one above: What level of wireless security is it set to ( WEP / WPA )?
    #3 Did you try connecting your modem to the NID?
    If not, please do that - and recheck those stats.
    If you do not what a NID is, see http://www.dslreports.com/faq/1317
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it. If anyone has been helpful to you, please show your appreciation by clicking the "Kudos" button.

  • Automatically launch an application at a certain time of the day

    Is there any way to do that?
    Schedule a program to start at a certain time and quit at another?
    Thanks!

    Helo,
    Set up an iCal event, repeating everyday and telling him to Run Script as an alarm., and another to quit it.
    Also, this may help...
    http://www.macupdate.com/app/mac/32388/task3l

  • Is there anyway to manage my contacts or an app so that I can temporarily block text messages at certain times of the day?

    Hi,
    I am wanting to block text messaging that I sometimes receive from clients after hours, and I want to know is there an app like there is for android phones that has lists that you can create so certain people can be sent an auto reply when they send you a message?
    I don't want to block the numbers completely just at weekends and/or after hours and I still want to be able to receive phone calls from those numbers as an option.
    I am on the Vodafone NZ network
    Thanks

    You can Remote Lock his iPad with Find My iPad using a computer at whatever time you like.
    http://support.apple.com/kb/PH2700
    Note: The iPad may be disabled if he tries the passcode too many times.

  • Prevent Data Manager Package to be startet at certain times of the day

    Hi
    We currently have an issue as described below.
    During month end closing SAP BW data is updated to BPC 3 times each day. This is done using a Data Package linke performing 8 steps in total. This DP Link works as expected. The problem is that while this is running users start other data manager packages that are based on the data from the data package link. This is an issue because the data is not correctly allocated before all 8 steps of the DP link has completed. This leads to very funny / Incomplete data and we would like to prevent this issue.
    The question is therefor! Can we implement some kind of logic that prevents users from starting other data manager packages when the DP link is running?
    /Chris

    Hi Chris,
    If you want to do the check for a DM which is running eg. a script via the default formular PC you can create copy of the PC and build in an extra step just after the start to run a custom program.
    You can set up the custom program eg. to check the table RSPCLOGCHAIN for dependent running PC or validate if the DM package can run dependent on some parameters set in a custom table. Eg. set the time range for when you are running the pakage link.
    You don't need much logic in the custom program to do the check.
    I don't see another or even standard way to do the check in BPC.
    Br
    Rasmus Larsen

  • DVR menu stalls out during certain times of the day

    Lately when I am trying to play or record a show from my DVR, I find that the menu stalls out and I am hitting the "OK" button to the point where my wrist hurts.  I have turned the box off for a while, but it doesn't help.  I find this only happens in the early morning or in the middle of the night.  I watch my shows at those times as I am feeding a newborn baby.  Anyone else have this problem?  Thanks. 

    the motorolla boxes are notorious for this... I have seen it with Verizon and Time Warner
    Have you tried simply unpluging the power from the box for a minute or so?
    If not, try that
    If need be, unplug the power to the box, unscrew the COAX from the box to the wall, and check the pin in the middle to make sure it is not bent or broken... Do the same at the wall jack, if applicable... If all is well, plug it all back up, turn it on and test it out
    IF it continues, call Technical Support at 1 888 553 1555
    Bob Robertson - Lighter Klepto - I steal lighters, not bandwith

  • I bought a new ipad3 packed but after opening its box there are no headsets in it and iphone headsets wont work with iphone so is it normal I mean why there are no heas sets with ipad3 ?

    I bought a new ipad3 packed but after opening its box there are no headsets in it and iphone headsets wont work with iphone so is it normal I mean why there are no heas sets with ipad3 ?

    Headsets don't come with the iPad. All you get is the iPad, USB cable and wall charger.
    Since you're new to iPad ...
    You can download a complete iPad User Guide here: http://manuals.info.apple.com/en/ipad_user_guide.pdf
    Also, Good Instructions http://www.tcgeeks.com/how-to-use-ipad-2/
    Apple - iPad - Guided Tours
    http://www.apple.com/ipad/videos/
    Watch the videos see all the amazing iPad apps in action. Learn how to use FaceTime, Mail, Safari, Videos, Maps, iBooks, App Store, and more.
    How to - Articles & User Guides & Tutorials
    http://www.iphone-mac.com/index.php/Index/howto/id/4/type/select
    iPad How-Tos  http://ipod.about.com/lr/ipad_how-tos/903396/1/
    You can download this guide to your iPad.
    iPad User Guide for iOS 5
    http://itunes.apple.com/us/book/ipad-user-guide-for-ios-5/id470308101?mt=11
     Cheers, Tom

  • I have downloaded updates for microsoft office and now the internet wont work - any ideas?

    I have downloaded updates for microsoft office and now the internet wont work - any ideas?

    If you want to simply do a 'fresh' install (versus wiping out all of your data and doing a 'clean' install) simply boot to your Recovery partition (hold down the Command and R keys whilst booting) and when the Recovery screen appears, elect to freshly install OS X.
    Don't know that will solve your problem, though... did you do the 'automatic' update or download the update as a disk image (.dmg)? I wouldn't think that would be causing your problems...
    Clinton

Maybe you are looking for