IP Profile changing randomly

One of the problems I face after ringing bt for help about 2 weeks about being a new customer (3 weeks) and having latency probems any gamer would be unhappy with.
Download speedachieved during the test was - 10740 Kbps
 For your connection, the acceptable range of speedsis 100-500 Kbps.
 Additional Information:
 Your DSL Connection Rate :21595 Kbps(DOWN-STREAM), 1163 Kbps(UP-STREAM)
 IP Profile for your line is - 548 Kbps
The throughput of Best Efforts (BE) classes achieved during the test is - 11.69:17.75:70.57 (SBE:NBEBE)
These figures represent the ratio while sententiously passing Sub BE, Normal BE and Priority BE marked traffic.
The results of this test will vary depending on the way your ISP has decided to use these traffic classes.
Quad Core 3.42ghz @ idle/load 29/37C (water cooler)
Northbridge 2.2ghz / HyperLink 2ghz
4gb ram gt 1.600mhz
4870x1 2gb vram vapper
wireless (free)

I only checked this after seeing my connection consistenly drop down to 1mb.
This was never like this in my trial time and so I did not have to wait all the time for web pages to load.
Im being riped off. and at what point did you think id pay for this? lol 6 years isnt it?
Quad Core 3.42ghz @ idle/load 29/37C (water cooler)
Northbridge 2.2ghz / HyperLink 2ghz
4gb ram gt 1.600mhz
4870x1 2gb vram vapper
wireless (free)

Similar Messages

  • Display profiles changing randomly

    I have noticed in Snow Leopard, after creating a calibrated display profile, that I have to keep re-applying the profile several times throughout the day, usually after the screen saver activates. Has anyone else had this issue? Does anyone know a fix so that I don't have to go to system preferences every 30 minutes or so to apply the profile?
    Thanks!!

    K T,
    I tried what you suggested, re-applied my desktop settings and I still get the same problem. After coming back to my system with the screen saver on, one of the monitors has changed, is very bright, and washed out and requires me to re-apply the calibrated settings.
    If it helps, my system has dual monitors, with 2 Nvidia 120 video cards and is using the DVI connections with Sceptre X24 monitors.
    Thank you

  • When downloading photos in a series of tabs, the download site on my computer changes randomly.

    I go to a site and click on photos opening each in a new tab. When I go to download each photo independently, many times the download file changes randomly and spontaneously. Sometimes it just reverts to my "My Download" file folder. I usually download the photos to my F: drive, an attached 2Tb disk. I create a folder and download the photo to that folder but sometimes it just goes to some other folder on my F: drive and sometimes to my "My Download" folder. I just want it to stay at the last folder created and not attempt to figure out where I want to save the photos.

    The last used directory for the website (host) serving the file for download will be preselected in the file picker.
    If no download directory for the current website (host) has been stored, <b>browser.download.lastDir</b> will be used.
    You can disable this feature to remember a host based download directory by creating a new Boolean pref on the <b>about:config</b> page with the name <b>browser.download.lastDir.savePerSite</b> pref and set its value to false.
    * https://developer.mozilla.org/Mozilla/Preferences/Preference_reference/browser.download.lastDir.savePerSite
    You can open the <b>about:config</b> page via the location/address bar.
    You can accept the warning and click "I'll be careful" to continue.
    *http://kb.mozillazine.org/about:config
    You can delete the content-prefs.sqlite file in the Profile Folder to only remove settings stored in this file.
    That way you keep exceptions stored in permissions.sqlite that would get lost if you clear the "Site Preferences" via Clear Recent History.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox

  • HR PA and Planning (PD profile) changes not updating auth profiles of users

    PROBLEM:
    We are on ERP version 6 since 2008.  We started experiencing this problem December last year and now it is all over our system.  As soon as employees are transferred or new appointments are made in HR on PA or if the PD profile is changed in planning the changes cannot be seen by the user in their auth profile.  The user can literally not see the newly appointed employee on the org structure or even newly created org units and positions are not visible.  When RE_RHAUTH00 is run on the user name the update indicates that the changes (new employee and new org unit) is linked. 
    The following updates run every night:   RHPROFL0_DAILY_UPDATE and RHUATUPD_NEW.  I have also run PFUD during the day to make sure all updates go through.  We have also "played" with some profiles with PD profile changes but it is as if the profile remains completely static.  We have looked for personnel lists and deleted them to no avail.  Our Basis administrator has cleared the buffer for us and has run report RSUSR405 that did not do anything.  We have searched through notes on Support packages and have just loaded and tested support pack 46 to 53.  The only work around seems to be to delete the user and create a new user and then it seems to easily accept new changes.

    Hi,
    Yes, please make it scheduled background job. This is normal procedure.
    Define periodicity on your business needs: some run it every night, some every hour.
    Cheers

  • How to create a  procedure to  change randomly passwords

    Hello,
    I am trying to create a procedure to change randomly passwords for all users in a database. I need this after the database cloning. I have too many users to alter in a manual way...
    Is there any option to create a procedure which will fetch all users in a database and alter them by a random password?
    I was not able to find any clue.
    Could you help me?
    Thanks

    Welcome to the forum.
    change randomly passwords for all users in a database.All users? Including SYS/SYSTEM? I hope not...
    But you could use DBMS_RANDOM.STRING and ALL_USERS and dynamic SQL.
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_random.htm#sthref4675
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/statviews_2114.htm#REFRN20302
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14261/dynamic.htm#LNPLS01101
    (easy to find when you do a quick search from http://www.oracle.com/pls/db102/homepage or http://www.oracle.com/pls/db112/homepage)
    DBMS_RANDOM.STRING can give you a random password easily:
    select dbms_random.string('x', 10)
    from   dual
    connect by level <= 10;Zo you could do something like:
    begin
      for rec in ( select t.username
                   ,      dbms_random.string('x', 10) new_pass
                   from   all_users t
                  -- where  t.username not in (...)
                  -- or
                  -- where  t.username in (...)
      loop
        --execute immediate ' alter user '||rec.username||' identified by '||rec.new_pass;
        dbms_output.put_line ('New password for user '||rec.username||' = '||rec.new_pass);
      end loop;
    end;
    /You'll have to fill in the where-clause yourself/
    I also commented out the dynamic alter user statement, since I'm not sure if you really want to reset the pwd's for all users.
    Also, instead of using dbms_output.put_line to check the new passwords, you could insert them in a table or spool the output to a file.

  • Cropping aspect ratio changes randomly

    Each time I crop a new image, the aspect ratio seems to change randomly. Sometimes it will pop up as "Do Not Constrain." Sometimes it will appear as 4x5. Or 2x3. Etc. You get the idea. I have no idea why it's changing. It's very disruptive to the workflow. Any thoughts on what might be causing this?
    I encounter the issue on both my MacBook Pro and my iMac.

    Thanks, Stan.
    I just posted a draft video on Youtube for a client last night.  Not sure if viewing a clip of what I see will help you but I suspect it will.
    http://www.youtube.com/watch?v=v_hzhCeCGR0
    If you go to about 4:34 in the clip you'll see it change over to a different aspect ratio.
    This sequence was exported directly from PPro CS4 to FLV.  The FLV file was uploaded to Youtube.
    I'm editing this morning and just came across this same issue again.
    I'm amazed that none of my clients have mentioned it yet.  Of course, I'm not making Hollywood movies - these are just short videos people send out to college coaches.
    Thanks,
    Dan

  • Device for sound output changing randomly

    After the latest OS update, I've been having issues with my sound output settings. My sound will play most the time through the "line out" setting, but then randomly the "sound effects" will play thru the internal speakers. I keep changing the setting in the "sound" panel of system prefs but it keeps changing randomly on me. I've saved the setting and rebooted and thought it would be fine, but it keeps doing it. Once my Sound Output setting were changed too, and my music just started playing thru the internal speaker.
    Anyone know what's up with this, and what could correct the problem?

    It may sound silly, but from my own experience (having had exactly the same problem while working on a soundtrack) after snooping around I found that the plug/cable I was using (a cheapo cable) was somehow the guilty party.
    It fit snugly, no wobble, no crackling, changed the cable and all problems went away.
    Same cable works 100% now used to hook up the iPhone to the mixer.
    Seems to make no sense, and yet... voodoo (or a badly soldered plug).

  • Airplay audio streaming from Iphone to ATV crashes when changing randomly title?

    Why does airplay audio streaming from Iphone 4S iOS 7.04 crashes when changing randomly title? The ATV is not connected to a TV, only to an AV Receiver. Anywhere the same problem?
    Thx a lot
    Nolame

    Oops - I messed up the title-
    This is with iOS 7.0.2 and Apple TV 6.0.

  • How to track mrp profile change

    Hi,
        Is there any possibilities to track who has done the MRP profile change.In mm02 its not in editable mode.when i check in MM04 for the particular material its showing lot many changes.so i couldnt figure out who has done. i want who has done the changes in the particular field mrp type ?

    Hi ,
    Goto MM02 -Enter Material -Environment - Display Changes - Here ,You will get list of changes in transaction with time , user id .
    Now if you select the check box and hit magnifying glass symbol , it will take you to the changes done by certain user .
    For MRP profile :
    In the Material Master menu, choose Profile  ®  MRP profile  ®  Usage.
    The selection screen appears.
    Enter the name of the profile. You can also enter a plant and MRP controller to restrict the selection. Then choose Execute.
    A list is displayed of the material master records in which the MRP profile is used. You now have the following options:
    You can display or change the MRP profile by choosing Display profile or Change profile respectively.
    You can display or change a particular material master record in which the MRP profile is used by choosing Display material or Change material respectively. In the material master for industry, the MRP view on the material master record appears, from which you can access the other views. In the article master for retail, the Display or Change Article: Initial Screen appears.
    Try and revert
    Regards
    JH

  • Simulating DNG Profile changes in PSD file

    Hello  everyone,
    I have a RAW file and applied Adobe's default DNG Profile (via the Camera Calibration panel in Lightroom 2.6) and converted it to a PSD file so I can retouch the photo via Photoshop CS3.
    After hours of retouching, I now want to apply a custom DNG Profile that I made from a Color Checker. However, I'm not able to apply the profile to "already-rendered images" (http://labs.adobe.com/wiki/index.php/DNG_Profiles:FAQ#WhyOnlyEmbedded)
    So my question is: Is there any way to simulate the effects of a profile change via Photoshop adjustments (i.e. HUE/SAT adjustments)?
    Please feel free to let me know if more clarification is  needed.
    Thanks,
    David

    I thought I'd posted a reply but I failed to make it stick, somehow. Anyway, thanks Jim for that. Makes perfect sense.
    Except I've just had a further thought. Why would Adobe change a file name to distinguish between color spaces if DNGs/RAWs are color-space agnostic? Where it would make sense is with jpegs, but name-changing doesn't happen there, of course, as there's no conversion taking place.

  • Character Encoding is changing random

    Hello,
    For a short while I'm having the next problem:
    When I am using FireFox, after a while characters on pages are showed as 'boxes'. With setting backView -> Character Encoding to ISO-8859-1 the characters are shown correctly again.
    I do not understand why the character encoding is changing random to UTF-8, while I have selected the ISO-8859-1 and set automatically recognize to false.
    In the options menu I have also set default 'ISO-8859-1' as default character encoding.
    Hoping someone can tell me why it random changes and why the same page can be show correctly for 10 times, but the 11th time the character set has changed? And of course how can I solve this problem.

    I do know a website can determine the character encoding, but the strange part of the problem I occur is that the same page can be shown 10 times correctly, but an 11th time the characters like é and ë, are shown as 'blocks'/'questionmarks'.
    Is there an explanation for that behaviour?

  • Colour Profile change after Exporting a version

    Hi
    Has any one had this problem - and found a solution?
    My Aperture Preferences are set to - Adobe RGB 1998.
    Now,
    1     -     if I select an image in Aperture then select EDIT WITH ADOBE PHOTOSHOP
                     the image is opened in p/s
                        when I view the image in Bridge
                             the  colour profile is correct - Adobe RGB 1998            
    Problem:
    2     -     if I select an image, then EXPORT A VERSION (to my desk top)
                        the colour profile changes to sRGB   ?
                        Don't understand why this is happening - anybody know why?
                             Thanks
                                  Tony (from London)

    The color profile is part of the export preset as Keith pointed out
    Make sure the preset you are using has the color profile you want.
    regards

  • Need help for profile change in pdf

    Hello every one,
    I have so many files need to change color profile, maintain 240% ink coverage for this client can supplied me only pdf files. How can I change color profile in acrobat professional? I know only method of Photoshop Profile change UCR, GCR..240%, please help me some one.
    More information:
    I have windows 7 operation system, acrobat 7 with pitsop7.
    Thanks in advance,
    Regards,
    Siva

    i have a separate DTD for my own XML i want to extract my PDF files to that
    XML is it possible may i know how the acrobat export as xml feature works

  • IP Profile change methods

    Seen a lot of posts asking about IP profile change methods and so here is how i believe they work. Hopefully this messgage will remain formatted as it is typed
    You will be on one and only one of the 3 methods although there are some rare exceptions such as fixed rate lines and banded rates. For banded rates due to line issues I have been informed that it can take 3 days to sort itself out if the line remains ok. Additionally for new or reset lines the bedding in period varies between 3-10 days and than can effect the profile used.
    1 88.2% method.
    This is the newest method and basically removes the concept of a profile as such as matches similar other schemes in place by other providers. Your 'profile' is set to 88.2% of your downstream sync rate (which allows for the overheads needed that are contained wiithin the traffic). Setting is I believe reasonably concurrent with a change in sync speed but that remains to be be confirmed and it could be that it may take up to 75 minutes as per currently decreases would take. IMJOLLY has confirmed that change is immediate.
    It is believed that all exchanges will be upgraded to this method eventually but that has not been confirmed. If you run a BT speedcheck it will tell you your IP profile, if it is not a nice round value ending on 0 or 5 then you are on this method already, otherwise your profile should fit one of the values in the table further down (unless your speed is greater than I cater for) It is now suspected that only CN21 enabled exchanged may be getting updated leaving the others at a even greater disadvantage.
    2 Oldest method
    Decreases in profile take up to 75 minutes to apply, increases can take up to 3 days from the time of a higher sync.
    3 Adaptive Max
    Adaptive max is available on some exhanges and is an attempt to speed up the resets for those affected without resetting it too quickly and causing more issues if there is a line issue.
    Change depends on the lowest rate that caused a decrease and the new profile that your current sync would fall within. (decreases are within 75 minutes, the table is for increases only)
    The table for the ADSL2+ rates are as follows
    0
    135
    250
    350
    500
    750
    1000
    1250
    1500
    1750
    2000
    2500
    3000
    3500
    4000
    4500
    5000
    5500
    6000
    6500
    7000
    7150
    135
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    250
    24
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    350
    24
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    500
    24
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    750
    24
    24
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    1000
    48
    24
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    1250
    48
    24
    24
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    1500
    72
    24
    24
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    1750
    72
    24
    12
    12
    12
    12
    12
    12
    12
    12
    12
    12
    2000
    48
    24
    12
    12
    12
    12
    12
    12
    12
    12
    12
    2500
    48
    24
    24
    12
    12
    12
    12
    12
    12
    12
    3000
    72
    24
    24
    24
    12
    12
    12
    12
    12
    3500
    72
    24
    24
    24
    12
    12
    12
    12
    4000
    72
    48
    24
    24
    24
    12
    12
    4500
    96
    48
    24
    24
    24
    24
    5000
    96
    48
    24
    24
    24
    5500
    96
    48
    24
    24
    6000
    120
    72
    48
    6500
    120
    96
    7000
    120
    7150
    Old rate is down the side and new rate along the top, the resultant value is the number of hours for a change to take place. This is the minimum time and it seems that it may take a few hours longer than expected, probably because I suspect that the process to check/reset the values only runs periodically and so you should probably allow up to 2 hours or so extra.
    If my post was helpful then please click on the Ratings star on the left-hand side If the the reply answers your question fully then please select ’Mark as Accepted Solution’

    Still not been able to get a confirmation of the upgrades (or at least mine) neither the mods here nor BT technical helpdesk have replied yet to my query on it.
    When it comes it it will I expect remove the need for a lot of people to be raising issues and calling the helpdesk.
    I am pretty sure re how adapative max is working on my line, the last few occassions have all fitted that pattern as near as I can tell exactly. Different exchanges may run the updates at different times perhaps but I suspect it is a common setting so perhaps not but for me the time starts to count from the next xx:30 time after a higher sync, lasts 12 or 24 hours and then the next xx:30 time therefater the profile gets reset.
    If my post was helpful then please click on the Ratings star on the left-hand side If the the reply answers your question fully then please select ’Mark as Accepted Solution’

  • Macbook pro retina color profile changes when switching from integrated to discrete

    Late 2013 macbook pro retina color profile changes when auto switching from integrated to discrete graphics card. Problem started after updating to 10.9.3

    Same here. Really annoying because I have my screen calibrated for photo editing, which makes it much warmer than the default color profile. A lot of websites cause the graphics cards to switch for a couple of seconds, which causes the profiles to switched back and forth a few times, everytime. Really annoying, and dissapointing to see, considering Apple released like a hundred .3 betas.
    You can use gfxCardStatus to make it stay on one graphics card over the other... Just remember to change it back when you're using a program that actually needs the descrete card.

Maybe you are looking for