Opening a new URL, a blank page appears with 2 messages on the top left and right corner of the window: "Advertise here" and "Skip this ad" and it will not go to the requested site until I push "Skip this ad"

It would be nice to have the possibility to attach a print screen or something to give you a better idea what is happening and how it looks like.
Anyway, what I described above is accurate:
- the address bar shows the link where I wish to go
- but the page loaded is blank with these 2 hyperlink messages ("Advertise here" in the top left corner, and "Skip this ad" in the top right corner).
I would like to emphasize that it does not have to do with the requested URL: it does the same thing with all sites, all the time.

For me is the same, it's yet 6 months.
the blank page apears for the first 20-30 of the day's navigation, then no more.
For example: If I open firefox at 9 a.m., it appears until 9.30 more or less. If i surf the web until mignight, at 00.01 a.m. this page starts bugging me.
I have yust to click on the link "skip this ad" to return to the desired web page.
Using Adblockplus and NoScript plug-ins had sadly no effect.
I've read somewere that the ploblem should be an f**** adware called "directCPV"., and that the solution is toremove an .exe file called Directcpv.exe or somewhat else, but in my pc I haven't found any of those linked to this adware.
I tried a full system scan with an antivirus (McAfee), with Malwarebytes, Ad-Aware, ATF cleaner, Spybot, Exterminate-it but NO RESULTS.
I tried to do this in safe mode too.
No way cleaning the cache, temp files, cookies etc.
finally I tried to uninstall Firefox (cleaning all registry entry too) and reinstall it, but the problem is still there.
The only cure seems to be formatting the HD, but it's very last chance.
If someone have an idea, please post it here.

Similar Messages

  • CreateChildSymbol on the top left bottom right edges of the window/stage?

    I am creating a particle system and I am trying to generate the particles / CreateChildSymbol on the top left bottom right edges of the window/stage?
    Currently I am generating random X & Y points but thats not really doing what I need.
    // find the stage width & height
    sym.maxWidth = $('#Stage').width();
    sym.maxHeight = $('#Stage').height();
    // randomize the numbers 1-12
    var randomSymbol = Math.floor((Math.random()*12)+1);
    // Pull symbol from lib and add to stage
    sym.mainParticle = sym.createChildSymbol("symbol_ani_" + randomSymbol, "Stage");
    // create jQuery object / Edge Ani element var
    sym.mainParticleElement = sym.mainParticle.getSymbolElement();
    // randomize the stage X & Y coords
    var randomX = Math.floor(Math.random() * sym.maxWidth);
    var randomY = Math.floor(Math.random() * sym.maxHeight);
    // position  based on random stage X + Y position
    sym.mainParticleElement.css({'position':'absolute','top':randomY+'px','left':randomX+'px'} );
    But I am at a loss of how to randomize the top / right / bottom / left X & Y edges of the stage

    Got it working!
    Well to be honest another friend helped me work out the logic for randomizing the sides (top, left, bottom, right) to get it working.
    But I wanted to share since I had a hard time finding anything releated to this topic. Big Ups to Resdesign + Tim Jaramillo for helping me with some logic along the way as well!
    // these variables are global within compReady would need to change to sym. instead of var if needed outside of this
    var moveToX = $(window).width()/2,
         moveToY = $(window).height()/2;
    function spawnParticle() {
         // these variables are only availabe inside this function
         var side = Math.floor(Math.random() * 4),
             offScreen = 100,    // how many pixels off the side of the screen to start
             yRand = Math.floor(Math.random() * $(window).height()),
             xRand = Math.floor(Math.random() * $(window).width()),
             xPos = 0,
             yPos = 0;
         switch (side) {
             case 0:
                 xPos = xRand;
                 yPos = -offScreen;
                 console.log('spawn from top');
             break;
             case 1:
                 console.log('spawn from right');
                 xPos = $(window).width() + offScreen;
                 yPos = yRand;
             break;
             case 2:
                 console.log('spawn from bottom');
                 xPos = xRand;
                 yPos = $(window).height() + offScreen;
             break;
             case 3:
                 xPos = -offScreen;
                 yPos = yRand;
                 console.log('spawn from left');
             break;
         // add to the stage
         sym.mainParticle = sym.createChildSymbol("star", "Stage");
         sym.mainParticleElement = sym.mainParticle.getSymbolElement();
         sym.mainParticleElement.css({'position':'absolute','top':yPos+'px','left':xPos+'px'});
         // simple animation to reveal the particle
         sym.mainParticleElement.animate({ left: moveToX, top: moveToY }, 1000, function() {
             // for this test, I'm removing the particle after it has finished animating
             $(this).fadeOut(function() {
                 $(this).remove();
    // keep spanwing new particles
    setInterval(spawnParticle, 500);

  • TS1702 I lost the Icons from my 4s 6.1.2 IOS I can see them in Itunes but they will not restore to the Phone

    I lost the Icons from my 4s 6.1.2 IOS I can see them in Itunes but they will not restore to the Phone

    What icons are you talking about?
    Are you talking about apps that you've downloaded?  if so just sync them back to your phone using iTunes.

  • My daughter has entered the wrong passcode too many times, it is now disabled.  When I connect to iTunes, it will not let me go any further until I enter the correct passcode.  I no longer get the option to do this, all I get is iPOD disabled.  Help

    My daughter has entered the wrong passcode too many times on her iPOD Touch, it is now disabled.  When I connect to iTunes, it will not let me go any further until I enter the correct passcode.  I no longer get the option to do this, all I get is iPOD disabled.  Help Please

    Restore the iPod from the computer to which the iPod is synced. For information and instructions, see:
    http://support.apple.com/kb/ht1212
    If that will not work, you'll need to put the iPod into Recovery Mode and then try the Restore again:
    http://support.apple.com/kb/ht1808
    Regards.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

  • I creating firefox extension when add this into firefox all works right but when i open a new link show a dialog box with message "Error: document body is null"

    I am creating firefox extension (No error in extension because it work fine in chrome). But it show box with error "Error: document.body is null" why

    Thanks for reply cor-el &jscher2000
    i am not using "window.content.document.body".
    we send some screenshots for understanding problem
    i created this extension for firefox, chorme
    It Works fine in chrome but in firefox show error(Which have no effect on my extension or other browsing).

  • This ompiles fine but will not show me the window during execution.

    Any help will be appreciated.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class CompareWindow extends JFrame{
         private JLabel string1Label,string2Label;
         private JTextField string1Field,string2Field,displayField;
         private JButton exitButton;
            String value;
    public CompareWindow()
    super("String method compareTo");
    ActionEventHandler handler=new ActionEventHandler();
    Container container = getContentPane();
    container.setLayout(new FlowLayout() );
    string1Label=new JLabel("Enter first string");
    string1Field=new JTextField(20);
    string1Field.addActionListener(handler);
    container.add(string1Label);
    container.add(string1Field);
    string2Label=new JLabel("Enter second string");
    string2Field=new JTextField(20);
    string2Field.addActionListener(handler);
    container.add(string2Label);
    container.add(string2Field);
    displayField=new JTextField(30);
    displayField.setEditable(false);
    container.add(displayField);
    exitButton=new JButton("Exit");
    exitButton.addActionListener(handler);
    container.add(exitButton);
    public void displayCompare(String value)
    displayField.setText("The first string is "+ value +" the secone one!");
    public static void main(String args[])
    CompareWindow window = new CompareWindow();
    window.setSize(400,140);
    window.setVisible(true);
    private class ActionEventHandler implements ActionListener{
    String first=string1Field.getText();
    String second=string2Field.getText();
    int compare1=0;
    public void actionPerformed(ActionEvent event)
    String first=string1Field.getText();
    String second=string2Field.getText();
    int compare1=0;
    String value="";
    if (event.getSource()==exitButton)
    System.exit(0);
    else if (event.getSource()==string1Field) {
    compare1=first.compareTo(second);
    else if (event.getSource()==string2Field) {
    compare1=first.compareTo(second);
    if (compare1<0){
    value="less then";
    else if (compare1==0){
    value="equals";
    else if (compare1>0){
    value="greater then";
    displayCompare(value);

    forte is an ide, not a compiler.
    a few changes and here you go:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class CompareWindow extends JFrame {
        private JLabel string1Label, string2Label;
        private JTextField string1Field, string2Field, displayField;
        private JButton exitButton;
        String value;
        public CompareWindow() {
            super("String method compareTo");
            Container container = getContentPane();
            container.setLayout(new FlowLayout());
            string1Label = new JLabel("Enter first string");
            string1Field = new JTextField(20);
            string1Field.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent evt) {
                    myActionPerformed(evt);
            container.add(string1Label);
            container.add(string1Field);
            string2Label = new JLabel("Enter second string");
            string2Field = new JTextField(20);
            string2Field.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent evt) {
                    myActionPerformed(evt);
            container.add(string2Label);
            container.add(string2Field);
            displayField = new JTextField(30);
            displayField.setEditable(false);
            container.add(displayField);
            exitButton = new JButton("Exit");
            exitButton.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent evt) {
                    myActionPerformed(evt);
            container.add(exitButton);
        public void displayCompare(String value) {
            displayField.setText(
                "The first string is " + value + " the secone one!");
        public static void main(String args[]) {
            CompareWindow window = new CompareWindow();
            window.setSize(400, 140);
            window.setVisible(true);
        public void myActionPerformed(ActionEvent event) {
            String first = string1Field.getText();
            String second = string2Field.getText();
            int compare1 = 0;
            String value = "";
            if (event.getSource() == exitButton)
                System.exit(0);
            else if (event.getSource() == string1Field) {
                compare1 = first.compareTo(second);
            else if (event.getSource() == string2Field) {
                compare1 = first.compareTo(second);
            if (compare1 < 0) {
                value = "less then";
            else if (compare1 == 0) {
                value = "equals";
            else if (compare1 > 0) {
                value = "greater then";
            displayCompare(value);
    }

  • I've been working on our church website and suddenly, my computer will not connect to the site. I keep getting a message saying that the the connection to the server was reset while the page was loading. Does anyone have any ideas of how I can fix this?

    I've been working on our church website and all of a sudden this week, my computer will not connect to the site. I keep getting a message saying that the the connection to the server was reset while the page was loading. Does anyone have any ideas of how I can fix this?

    The "The connection was reset" error message can be caused by a bug fix for the BEAST (Browser Exploit Against SSL/TLS) attack that the server doesn't handle.
    *[[/questions/918127]]
    *[[/questions/918028]]

  • I upgraded to iOS 5 and lost all my apps on my iPad. They are in iTunes, but iTunes will not sync because "the pairing record is missing." HELP!

    I upgraded to iOS 5 and lost all my apps on my iPad. They are in iTunes, but will not sync "because the pairing record is missing." Please help!

    On your iPad and iPod touch tap Settings > Store
    Make sure Music is switched On under Automatic Downloads.
    Now restart your iPad and your iPod touch.
    Hold the On/Off Sleep/Wake button down until the red slider appears. Slide your finger across the slider to turn off iPhone. To turn iPhone back on, press and hold the On/Off Sleep/Wake button until the Apple logo appears.
    You can re download iTunes purchases for free if necessary >  Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • HT1212 I have smashed screen on phone and need to back it up but as i cant enter my passcode it will not let me connect to itunes. Is there any way round this ?

    I have smashed the screen on my phone and need to back it up but as i cannot enter my passcode itunes will not let me connect. Is there a way round this?

    no

  • Firefox give me a blank white screen when i open it and when i type in an address in the search bar it just say new tab on the top left hand corner and its cont. to be a blank white page. IDK?

    k when i double click on the fire fox short cut on my desk top or the tab under the start button, my firefox gives me a blank white screen with the phase " new tab" on the top left hand corner as if u clicked for another window. Even though its the 1st window that opens. when i type a website in the search bar it regristers but it just goes to the blank white screen w the new tab phase. i tried to open some of my bookmark sites and still the same thing.. a blank all white page. ive tried re-download the fire fox 6.0 then i deleted my current firefix then re-downloaded it again.. still nothing :(. im currently usaing my interner explore to write this and search the net.

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information. <br>
    '''Note''': ''This will cause you to lose any Extensions and some Preferences.''
    *Open websites will not be saved in Firefox versions lower than 25.
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • The sharepoint my company uses no longer works properly with firefox, only a blank page appears, is there a fix for this?

    Hello,
    We currently use Microsoft SharePoint Server 2010 and it doesn't seem to be compatible with the latest version of Firefox (33). When I try to open a sharepoint page, only a blank page appears. I do not get any error messages. The sharepoint works with other browsers, such as Chrome.
    Is there a work around available so that we may continue to use Firefox?
    Thank you!

    Do either of these typical troubleshooting steps make any difference?
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Command+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    "3-bar" menu button (or Firefox menu) > Preferences > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * (menu bar) Tools > Page Info > Security > "View Cookies"
    * click the globe or padlock to the left of the address in the address bar > More Information > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?
    In case one of your extensions is involved, could you test the page in Firefox's Safe Mode? That's a standard diagnostic tool to deactivate extensions and some advanced features of Firefox. More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using either:
    * "3-bar" menu button > "?" button > Restart with Add-ons Disabled
    * Help menu > Restart with Add-ons Disabled
    Not all add-ons are disabled: Flash and other plugins still run
    After Firefox shuts down, a small dialog should appear. Click "Start in Safe Mode" (''not'' Reset).
    Any difference?

  • When I first start up computer and click on Safari, a blank page appears. I am trying to make MY MSN as the opening page. How do I do this? Thanks for any help.

    When I first turn on my computer and click Safari, a blank page appears. I use to have MY MSN as the opening page on Safari. Don't know what happened, but how do I restore it back to the way it was? I've tried everything, I know it has to be something easy, but can't figure it out. Thanks for any help.

    In Safari goto Preferences > General... Homepage...

  • The App Store indicates that 5 items need to be updated. When I go to the Update page, only a blank page appears and no application logo appears for updating. Would appreciate receiving a solution for this.

    The App Store indicates that 5 items need to be updated. When I go to the Update page, only a blank page appears and no application logo appears for updating. Would appreciate receiving a solution for this.
    Sridhar

    Okay - let's cut to the chase...
    If the Menu Bar (File, Edit... Help) shown in my screenshot below is not visible, use CTRL+B to display it. Then click on Help/Check for Updates. If one is available, you will be able to select it at this time.
    Note the item at the bottom of the list; About iTunes. Selecting that will show you which version of iTunes you are using.
    An alternative method to display the Menu Bar is click on the box in the top left of your iTunes window...

  • Sometimes a web page appears with only text and no picures. It is not always the same site and does not always happen. If I switch to Explorer for the same web site it always works

    Sometimes a web page appears with only text and no picures. It is not always the same site and does not always happen. If I switch to Explorer for the same web site it always works

    Thank you, it worked with just F5. I don't know whether CTRL + F5 would work because the problem has not come back yet!

  • CRM 2013 Opening salesorder record results in blank page

    I am using CRM 2013 on-premise and I'm having an issue viewing Order records. I can see the list of Active Orders, but when I click an Order record to open it, I get a blank page.
    I have tried the following to fix this:
    Cleared my cookies and cache
    Navigated to another Org under the same URL
    IIS reset on the web site
    Full server reboot
    I have found several posts saying this is a known bug in CRM 2013 and the "fixes" were the items listed above. Has anyone else run into this issue and not been able to resolve using the aforementioned work-arounds?
    I also get an additional error when I try to navigate away from the blank page:
    Microsoft Dynamics CRM Error Report Contents
    <CrmScriptErrorReport>
      <ReportVersion>1.0</ReportVersion>
      <ScriptErrorDetails>
       <Message>Unable to get value of the property 'ClientVariables': object is null or undefined</Message>
       <Line>2</Line>
       <URL>/_common/JsProvider.ashx?ids=1959345455-451858892-1713948411-1401263868-1250882489-367493978-19173614-574022791-696891199-2007586035-1552783829&ver=1250620516</URL>
       <PageURL>/main.aspx?etc=1088&extraqs=%3f_gridType%3d1088%26etc%3d1088%26id%3d%257b8029E1FC-4FB8-E411-9406-00155D106900%257d%26rskey%3d706276367&pagemode=iframe&pagetype=entityrecord&rskey=706276367</PageURL>
       <Function>anonymous(){returnthis.get_$L_0().ClientVariables}</Function>
       <CallStack>
        <Function>anonymous(){returnthis.get_$L_0().ClientVariables}</Function>
       </CallStack>
      </ScriptErrorDetails>
      <ClientInformation>
       <BrowserUserAgent>Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; BRI/2; MS-RTC LM 8; InfoPath.3)</BrowserUserAgent>
       <BrowserLanguage>en-us</BrowserLanguage>
       <SystemLanguage>en-us</SystemLanguage>
       <UserLanguage>en-us</UserLanguage>
       <ScreenResolution>1920x1200</ScreenResolution>
       <ClientName>Web</ClientName>
       <ClientTime>2015-03-30T12:47:28</ClientTime>
      </ClientInformation>
      <ServerInformation>
        <OrgLanguage>1033</OrgLanguage>
        <OrgCulture>1033</OrgCulture>
        <UserLanguage>1033</UserLanguage>
        <UserCulture>1033</UserCulture>
        <OrgID>{0E1EFE15-0471-E411-93FE-00155D106900}</OrgID>
        <UserID>{15167AD7-C474-E411-93FE-00155D106900}</UserID>
        <CRMVersion>6.1.0.581</CRMVersion>
      </ServerInformation>
    </CrmScriptErrorReport>

    wilson5301 wrote:
     When he tries to open up a PDF, Internet explorer will open a new blank window.
    Open a PDF from where:
    saved locally on the computer?
    from an online link?
    If from an online link, I have seen the same before.  This usually occurs if the server where the document is located is very slow.  Retrying (F5) usually resolves the problem.
    P.S. the latest secure version of Reader 7x is 7.1.4!

Maybe you are looking for

  • Installing Oracle Database 11gR2 on Linux with Unbreakable Ente. Kernel

    Hello, I have Oracle Linux 5.5 with Oracle's Unbreakable Enterprise Kernel. what do I need to have/prepare to install Oracle database 11gR2 on it? the hardware part and the partitions are done! 1- Do I need to install/run Oracle Validated Configurati

  • XMLP Rounding issue vs Excel???

    Hey all, We're modifying the Sales Order Acknowledgement using XML Publisher for an australian business unit. The standard Sales Order Ack has just the line total, but we need to break out GST tax and show it separately. GST calculation is original p

  • Trying to restore and updater reads 'disk write error'

    I've been trying to restore my ipod and anytime i get the updater to recognize it a 'disk write error' message comes up and something about firmware. any ideas?   Windows XP  

  • Master data extraction into FTP

    Hi all, Please help me downloading material master data into ftp site.

  • HT1918 Unauthorized purchase

    I had an unauthorized puchase on my iTunes and I cannot seem to find a way to get this resolved.  I called the phone number, all I got was a message that said to go to the website, so I went to the website and I could get to the part to take of this