My iphone has some very strange behaviour

I am running a stock iPhone 5, not jailbroken, iOS 7.0.6.  The other day, one of my appliation folders kept opening when I wasn't touching the screen.  Every time I would close the folder, it would re-open by itself.
Today I unlocked the phone and before I had opened any apps, Safari opened by itself and the words "buu's fury" got typed into the address bar and came up with a Google search.
I keep hearing that iPhone's don't get viruses, any ideas what could be causing this?
Thanks

You hear correct there's no virus & malware that can run on iPhone.
Double tab Home button and delete Safari from multitask-list.
Clear Safari history cookies & data.
Settings > Safari > here
Do not track: ON
Fraudulent Website Warning: ON
Do a
Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

Similar Messages

  • Music on my iPhone has become very difficult to edit since upgrading to 5.0.1.  If I simply want to delete some songs, it insists on a complete sync cycle after EACH one I delete.  This is so annoying- (I have over 400 Christmas songs I won't need until n

    Music on my iPhone has become very difficult to edit since upgrading to 5.0.1.  If I simply want to delete some songs, it insists on a complete sync cycle after EACH one I delete.  This is so annoying… (I have over 400 Christmas songs I won't need until next year) I have also noticed it randomly keeps updating album artwork…adding more time to each sync.  Is there some way I can turn off the syncing until I have picked and deleted all the songs I want?

    The cause was probably a USB glitch during a sync or when copying. The music resides on the phone in separate files. A master file contains a database with an index to the music, an entry for each track and a "pointer" to the file containing the track. Somehow the index got corrupted with duplicate entries. It's likely that the music itself wasn't duplicated, but some tracks had more than one entry in the database. I've seen this happen when syncing (rather than manually managing) also. In my case deleting the track from the Music tab in iTunes, syncing, then adding it back fixed it.
    A related problem I've seen is an album may be split, with some tracks in each of 2 or more album entries in the listing. Fixed the same way.

  • Very strange behaviour master-detail-detail please help

    Very strange behaviour master-detail-detail please help
    Hello,
    I have a parent-child-grandchild report which show's some really strange behaviour.
    The data template has 3 queries Q1, Q2 and Q3.
    Q2 is bound to Q1 using a bind variable
    Q3 is bound to Q2 using another bind variable
    For a certain record in Q1 the output should be
    2 records in Q2
    and 1 record in Q3 for each record in Q2
    Q1 record
    Q2 record A
    Q3 record AA
    Q2 record B
    Q3 record BC
    The results conforms to the expected output.
    For another record in Q1 the output should be
    2 records in Q2
    and 2 records in Q3 for each record in Q2
    Q1 record
    Q2 record A
    Q3 record AA
    Q3 record AB
    Q2 record B
    Q3 record BC
    Q3 record BD
    In stead of the expected output, the result shows
    Q1 record
    Q2 record A
    Q3 record AA
    Q3 record AB
    Q2 record B
    Q3 record AB
    For another record in Q1 the output should be
    5 records in Q2
    and 2 records in Q3 for each record in Q2
    Q1 record
    Q2 record A
    Q3 record AA
    Q3 record AB
    Q2 record B
    Q3 record BC
    Q3 record BD
    Q2 record C
    Q3 record CE
    Q3 record CF
    Q2 record D
    Q3 record DG
    Q3 record DH
    Q2 record E
    Q3 record EI
    Q3 record EJ
    In stead of the expected output, the result shows
    Q1 record
    Q2 record A
    Q3 record AA
    Q3 record AB
    Q2 record B
    Q3 record BC
    Q3 record BD
    Q2 record C
    Q3 record CE
    Q3 record CF
    Q2 record D
    Q3 record DG
    Q3 record DH
    Q2 record E
    Q3 record DH
    So for the last record of Q2 I don't get the appropriate records from Q3 when there are multiple records to be shown, but only the last record which belongs to the previous Q2
    What is going on?
    Please help me out...
    Kind regards,
    Jan-Marcel

    Hi Tim,
    Thanks for your reply. Below you will find the datatemplate on the scott/tiger schema.
    Please help me out.
    Kind regards,
    Jan-Marcel
    <dataTemplate name="scott" description="Template scott" dataSourceRef="otcy001" version="1.1">
      <parameters>
        <parameter name="p_deptno" dataType="number"/>
      </parameters>
      <dataQuery>
        <sqlStatement name="Q1">
          <![CDATA[
            select empno            mgr_empno
                 , ename            mgr_name
                 , job              mgr_job
                 , hiredate         mgr_hiredate
                 , sal              mgr_sal
                 , comm             mgr_comm
              from emp
             where deptno = nvl(:p_deptno, deptno)
               and mgr is null
          ]]>
        </sqlStatement>
        <sqlStatement name="Q2">
          <![CDATA[
            select empno            mgr2_empno
                 , ename            mgr2_name
                 , job              mgr2_job
                 , hiredate         mgr2_hiredate
                 , sal              mgr2_sal
                 , comm             mgr2_comm
                 , mgr              mgr2_mgr
              from emp
             where mgr = :mgr_empno
          ]]>
        </sqlStatement>
        <sqlStatement name="Q3">
          <![CDATA[
            select empno            emp_no
                 , ename            emp_name
                 , job              emp_job
                 , hiredate         emp_hiredate
                 , sal              emp_sal
                 , comm             emp_comm
                 , mgr              emp_mgr
              from emp
             where mgr = :mgr2_empno
          ]]>
        </sqlStatement>
      </dataQuery>
      <dataStructure>
        <group name="G_mgr1" source="Q1">
          <element name="q1_mgr_empno"    value="mgr_empno"/>
          <element name="q1_mgr_name"     value="mgr_name"/>
          <element name="q1_mgr_job"      value="mgr_job"/>
          <element name="q1_mgr_hiredate" value="mgr_hiredate"/>
          <element name="q1_mgr_sal"      value="mgr_sal"/>
          <element name="q1_mgr_comm"     value="mgr_comm"/>
          <group name="G_mgr2" source="Q2">
            <element name="q2_mgr_empno"    value="mgr2_empno"/>
            <element name="q2_mgr_name"     value="mgr2_name"/>
            <element name="q2_mgr_job"      value="mgr2_job"/>
            <element name="q2_mgr_hiredate" value="mgr2_hiredate"/>
            <element name="q2_mgr_sal"      value="mgr2_sal"/>
            <element name="q2_mgr_comm"     value="mgr2_comm"/>
            <element name="q2_mgr2_mgr"     value="mgr2_mgr"/>
            <group name="G_emp" source="Q3">
              <element name="q3_emp_empno"    value="emp_empno"/>
              <element name="q3_emp_name"     value="emp_name"/>
              <element name="q3_emp_job"      value="emp_job"/>
              <element name="q3_emp_hiredate" value="emp_hiredate"/>
              <element name="q3_emp_sal"      value="emp_sal"/>
              <element name="q3_emp_comm"     value="emp_comm"/>
              <element name="q3_emp_mgr"      value="emp_mgr"/>
            </group>
          </group>
        </group>
      </dataStructure>
    </dataTemplate>

  • Populate List from Database (Very Strange Behaviour)

    Dear Fellows,
    I have developed a from which has two lists One for Major (say) and Other for Minor (say), thesr minors are based on the value of Major.
    Now I have developed this system on Windows XP Professional, Developer/2000 6i and Oracle 8i (release 8.1.7).
    Major list is populated from database and it shows all major values now using 'when_list_change' trigger the minor list is populated from the database based on the value of major list. Interestingly enough it is working fine without any problem.
    Now I have deployed the software to Windows 2000 Professional/Server (tried on both), Developer/2000 6i and Oracle 8.0.5, but strangly the lists are not working now. First list (major) is still working but the other dependent lists are not working.
    Another strange thing is that it populate the second list for one particular value (only at times).
    The logic is that I have used a program unit to which i am passing 'list element' and 'query' and call it for each list in the when-list-change trigge.
    Now its a very strange behaviour, I don't know what to do?
    Your cooperation will be highly appreciated.
    regards.

    rolrollerx wrote:
    Hi,
    I have Nokia N8 (a great phone, btw) with Symbian Anna. I wanted to download the maps. But the PC Ovi Suite is just busy forever, without downloading anything (I used Performance Monitor to find out it was doing nothing for hours).
    As I have unlimited data plan from my phone, I decided to try updating directly from the phone instead. It successfully downloaded the list of maps, but when I selected one of them
    "No Wi-Fi network available. Please configure a WiFi access point in the phone Internet destination settings."
    Why should I do that? I have a working connection on that phone (as evidenced by the successful download of the list of maps). So now, I am stuck. How can I download the maps?
    Well, the suggestion is there. Use a router.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • Very strange behaviour of RGBImageFilter class

    Hi!
    I found very strange behaviour of RGBImageFilter class and problem is
    that I need to solve that problem :/ So, situation is next:
    I decided to use filtering process for collecting information about
    image. So, I extended my own class from RGBImageFilter and overwrite
    filterRGB( ... ) method ( everything is absolutely the same as in
    documentation ) and also added my own code for 'no matter what'.
    This code changes some class variable and my idea was to read those
    variables after filtering process end, but... Suddenly I realized that
    those variables, many times changed while filtering were performed
    ( I checked it ) after filtering gave the same value as in constructor!
    The only one clue and idea about what happened is that class instance
    were cloned and then executed, but thats not a functionality I was
    searching. :/ I made some example of that 'effect'.
    Image file name goes in command line.
    Please pay attention on -3 value on exit: Filtering works, count growing
    ( just uncomment setPixels() method to see it ) but, but...
    import java.awt.*;
    import java.awt.image.*;
    import javax.swing.*;
    class ToForum
         public static void main( String[] args )
              try
                   JFrame frame = new JFrame( "now i beleave in x-files!" );
                   frame.setDefaultCloseOperation( frame.DISPOSE_ON_CLOSE );
                   Toolkit kit = Toolkit.getDefaultToolkit();
                   Image origin = kit.getImage( args[0] );
                   RedBlueSwapFilter filter = new RedBlueSwapFilter();
                   Image filtered = frame.createImage( new FilteredImageSource( origin.getSource(), filter ) );
                   MediaTracker tracker = new MediaTracker( frame );
                   tracker.addImage( filtered, 1 );
                   tracker.waitForAll();
                   System.out.println( "AND WE GOT: "+filter.getCount()+" !!!" );
                   Container content = frame.getContentPane();
                   content.setLayout( new FlowLayout() );
                   JLabel label = new JLabel( new ImageIcon( filtered ) );
                   content.add( label );
                   frame.pack();
                   frame.setVisible( true );
              catch( Exception ex )
                   System.out.println( "Exception in main():\n"+ex );
    class RedBlueSwapFilter extends RGBImageFilter
         private int count=-5;
         public RedBlueSwapFilter()
              count = -3;
              canFilterIndexColorModel = true;
         // uncommenting this function will show that filterRGB method IS calling !!!
         // so, why then AFTER filtering count is still ( or again ??? ) equals to 0 ?
         public void setPixels( int x, int y, int w, int h, ColorModel model, int pixels[], int off, int scansize )
              System.out.println( "on entering in setPixels count="+count );
              super.setPixels( x, y, w, h, model, pixels, off, scansize );
              System.out.println( "on exiting from setPixels count="+count );
         public int filterRGB( int x, int y, int rgb )
              count++;
              return ( (rgb&0xff00ff00) | ((rgb&0xff0000) >> 16) | ((rgb&0xff) << 16) );
         public int getCount()
              return count;

    Cliff, Hi. I'm curious because this can't work. I have no problem synching with the exchange - as long as i accept the message that the certificate of the exchange (which is not the certificate of the exchange but the certificate of dig @reighthandsideofmailadress) is not valid (expired, wrong common name etc).

  • Ok so i broke my old computer and my iphone has some of my library on it so now how do i get my stuff from my library thata not on my iphone to my new computer?PLeas help!!!!

    i broke my old computer and it had my music library and stuff on it and my iphone has some of the music on it but not all of it and i know how to transfer my purchasses from my phone but how do i get all the old stuff from my computer onto my new itunes library????

    - Transfer iTunes purchases by:
    iTunes Store: Transferring purchases from your iPhone, iPad, or iPod to a computer
    - Transfer other music by using a third-party program like one of those discussed here;
    Copy music from Ipod to new computer...: Apple Support Communities
    - After you get everything on the computer, make a backup of he iPod by connecting the iPod to the computer and right clicking on the iPod under Devices in iTunes and selecting Back Up
    - Restore the iPod from that backup.
    If in the USA and other places where iCloud is released, you can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • FOR i IN (statement) LOOP - very strange behaviour

    Hello, I'm experiencing very strange behaviour in my 9i Development Environment:
    If I run this select from SQL Plus a I get six month with number of days:
    select to_char(add_months(trunc(sysdate,'month'),rownum-1),'Month-YYYY') tmp_date, add_months(trunc(sysdate,'month'),rownum)-add_months(trunc(sysdate,'month'),rownum-1) colspan from dual a connect by level <=6
    But if I try to cycle through it in PL/SQL I only get the first row.
    FOR i in (
    select to_char(add_months(trunc(sysdate,'month'),rownum-1),'Month-YYYY') tmp_date, add_months(trunc(sysdate,'month'),rownum)-add_months(trunc(sysdate,'month'),rownum-1) colspan
    from dual a
    connect by level <=6 )
    loop
    -- print something out
    end loop;
    Any ideas why does this happen this way? If I use a query that does not contain CONNECT BY it works ok.

    Hi
    Just change as given below:
    FOR i in (
    select * from (select to_char(add_months(trunc(sysdate,'month'),rownum-1),'Month-YYYY') tmp_date, add_months(trunc(sysdate,'month'),rownum)-add_months(trunc(sysdate,'month'),rownum-1) colspan
    from dual a
    connect by level <=6 ))
    loop
    -- print something out
    end loop;
    Regards
    RK

  • My iphone has become very slow after I downloaded ios7. It has enough space, what can I do to fix it?

    My iphone has become very slow after I downloaded ios7. It has enough space, what can I do to fix it?

    Try this
    Go to Settings>iCloud>Documents and data    and turn it OFF

  • MY IPHONE HAS A VERY THIN GREY "DEAD" LINE ON THE TOP, AND ON THE SIDES.

    My iphone has a very thin grey dead line on top of the screen, and on the sides, so in sunlight, it looks as if the screen is smaller than it should be, but these grey lines dont affect my touchscreen or visability, so a simple yes or no, do all of u guys have it??

    Thanks dude, thats such a relief, i always thought that was a fault in my iPhone, thanks for reducing my sleepisness
    Anyway, just to confirm things, i did look closely at an iphone picture on Apple.com, and i did find that thin "apparently black" part i was talking about!
    Peace out guys, and thanks again!

  • IPhone 3GS error - very strange

    Something really awkward happened with my iPhone 3GS today.
    As I wanted to transfer a song to my iPhone, I connected it to the iTunes and have been through the classic procedure of synchronization. However, certain errors occured already during that time. The loading bar, situated on the top of the iTunes window, showed that the synchronization was complete to about 95% - and it stopped there. I shut iTunes completely 20 minutes later, but the mobile screen showed that the iPhone was still being synchronized. Then I ended the synchronization manually on the iPhone by swiping my finger on the cancel toolbar, and then I shut it down, just to be safe.
    The problem is that the iPhone has been shutting itself down for three hours now. I see nothing but a blank screen with the round loading symbol. The iPhone hasn't freezed - it just won't turn off. I tried everything - I connected it to the iTunes, but iTunes says that it cannot connect with the iPhone due to an "unknown problem". I pressed all the buttons on the phone, but it just doesn't bring me anywhere. The phone keeps shutting itself down, but it doesn't switch off completely.
    What am I to do?

    Hold HOME and SLEEP at the same time for 10-15 seconds, until an Apple logo appears. If the phone does not restart see: http://support.apple.com/kb/HT1808
    Before doing this, however, disable your firewall/antivirus and connect the phone only to a USB port directly on the computer, not to a hub.

  • Ever since i did the IOS 7 my Iphone has been doing strange things it didn't do before, why is that?

    I work for a business where were using multiple iphones and since we all did our software update to the IOS 7 our phones have all been playing up - freezing when clicking on apps, when you answer a call the new keypads very touchy and hangs up all the time, dials number on its own, the sound randomly stops working, and sound in general is very sketchy. Sounds like were in a car when were talking to someone. and a few other little things.
    Is this happening to anyone else? Will another update be coming out to fix these little bugs or could it be all our phones themselves?

    Hi tfishe,
    There are various issues that Apple is continue to work on. You are running the 7.02 release, so you have been updated twice since the intiital release. 7.03 was just released earlier today, and several fixes have been added to that release.
    Hang in there. It appears that Apple is diligently working on addressing the various issues that have been reported. Remember, this is a major iOS change. It is the first major change to the iOS platform since it was originally released with the iPhone 1, so it's going to go through some growing pains....
    Best of luck!
    GB

  • I have just uploaded my iWeb site to a FTP host and most of the site is ok however a lot of the text has gone very strange!  How can i get it to publish the same as I designed it?  Thanks in advance....

    Please help!  I have just uploaded my iweb site to a FTP Host and most of the site is ok however a lot of the text has gone wrong!  Many thanks...

    Maybe you could let me know which hosting service you are using so that I can add them to my list of those NOT recommended for iWeb users!
    I just dealt with one today who claimed the iWeb sites were incompatible and that the first line of code should be deleted from every HTML file before upload to their server.
    They didn't even offer the information that it would be a lot easier to modify the .htaccess file never mind offer to do it for a customer.
    Nobody should expect to pay for service like this and the answer is to dump them and go to a company that gives you some value and support for your money. If the ones on this page don't meet your requirements for cost and service...
    http://www.iwebformusicians.com/iWeb/Publish-Website.html
    ... search this forum for those recommended by other users. There's a long list of them.
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • Oracle BAM - Very strange behaviour

    I have just installed SOA Suite 11.1.1.7 together with BAM. I have followed the instructions in order, created the repositiory etc.
    BAM server is up and running but all application deployments are unavailable. hostname:port/oracle-bam is unavailable
    please help

    Ok thanks, I have managed to make some progress now. There was an issue with "JRFWSAsyncJmsModule" not deploying, but I created a new domain, and added JRF, which seemed to solve it.
    However, things have gotten much stranger now.
    If I go to https://localhost:9002/OracleBAM with Firefox I get:
    The Browser you are using is not supported. Internet Explorer 7 or 8 is required.
    If I go to https://localhost:9002/OracleBAM with Internet Explorer 8, or to http://localhost:9001/OracleBAM, I get 404 not found. I am sure the URLs are correct, which is clear from the fact that I get the "browser not supported" message from BAM if I use Firefox. Strangely, only the SSL version returns anything (https & port 9002) if I go to the non-SSL (port 9001, plain http) I just get 404, and if use IE like I'm supposed to with the same URL as above I get 404. There are no errors in the logs anymore.
    I have found a troubleshooting document:
    http://www.oracle.com/technetwork/middleware/bam/documentation/bam-trouble-133227.pdf
    It says:
    2.2 404 Error
    The following 404 error occurs on attempt to start Oracle BAM Web applications:
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    Verify that the port number is correct and the URL is exactly in the following format
    (which is case-sensitive):
    http://host_name:port_number/OracleBAM
    Which is an impressively long way of saying "make sure you have the right URL", which I did several times...
    Any other ideas or tips would be much appreciated. Thanks.

  • VERY strange behaviour......

    Hi all,
    I'm experiencing a very annoying problem......no not the wife.
    During playback if I copy a region - any region - the minute I drop it the sound drops out completely, and only comes back when I hit 'stop', followed by clicking the solo button on and off.
    I have no solo buttons on anywhere, and none of my regions have a yellow box around them like someone else was experiencing when they realised they were soloing individual regions!
    I've tried it on numerous projects and the result is the same.
    I've tried searching the forum but no joy.
    Anyone help me?
    Thanks,
    Andy

    If I were in your shoes, I'd find a source that wants to get rid of Tiger at a reduced price, now that Leopard is out. You may want to wait for Leopard to get to 10.5.1 or 10.5.2 before installing it - let others complete Apples testing. Some people have installed it fine, but a number are having teething pains. You can view the Leopard discussions at http://discussions.apple.com/category.jspa?categoryID=235

  • Very strange behaviour of checking valid SSL certificates

    While sniffing our network to solve a problem of using the Exchange Account on Iphone OS 3.1 I saw something strange:
    To use the Exchange Account on the Iphone, you first have to type your E-mail address, then optional domain, then the username/password.
    When you are finished the Iphone starts to check the validity of the SSL-Certificate in the following way:
    It takes the Domain from the right side of the "@"-sign and does something like "dig @domain.tld" and checks there if an valid certificate can be found. In my opinion this does not make sense, because Iphone does not check the certificate of the Exchange/Reverse Proxy. It checks whereever the dig leads it.
    I tried this with 4 different domains.
    Did anybody have the same problem?

    Cliff, Hi. I'm curious because this can't work. I have no problem synching with the exchange - as long as i accept the message that the certificate of the exchange (which is not the certificate of the exchange but the certificate of dig @reighthandsideofmailadress) is not valid (expired, wrong common name etc).

Maybe you are looking for