When I go into page view in my snapshots I only see, "Navigation to the webpage was canceled". Also weird pop-up when recording - performance-testing

As mentioned in the title when I go into my Snapshots and page view, all I see is "Navigation to the webpage was canceled", or a blank page. Not sure why this is happening but I would like some help, I am new to LoadRunner sorry if this is a stupid question.
Probably relevant to my issue but I also have a weird message when I am initially recording my script, it pops up sometimes and after I press continue it simply records my script seemingly normally. To clarify it does not always appear when I am trying to record in vugen only occasionally, it is seemingly dependent on which website I am trying to record.
Images for both will be attached.
Navigation image
Recording image

Related

Joomla. Text is hide and I don't know where it is

I have a website in Joomla and somebody has hacked me and has added some “advertisement-text” to my web next to the logo or around it.
My website has 7 items on the menu and all of them have the same article, I mean, it does not matter if you press on one or another, it will always come up the same information.
The point is that when I press on the first item, the log does not appears in his place because in that area(logo or around it), is the “advertisement-text” inserted. This “advertisement-text” is hide but it is there. If I click on the sixth item, everything is the same, except that the “advertisement-text” appears.
The remaining of the items, everything appears correctly although the “advertisement-text” is hide(display: none) on the website.
I have seen “article manager”, “Module manager”, I have changed and re-install the template and nothing happens, the “advertisement-text” is still there.
I think that the hacker has added the “advertisement-text” manually in a particular file and that file is loaded every time when somebody access to the website. I have seen the files and folders on the server but I could not find where the hacker inserted that piece of code. Besides, I think that the text is encrypted, so in the files it will appear something like “base64(“encripted text”).
Does somebody know where the hacker could have inserted that “advertisement-text”? If I could avoid re-installing Joomla, it would be lovely.
Many thanks

Chrome extension, popup does not display correctly for dynamic popup DOM modification

I am building a chrome extension, a simple feature I want it to have is that when some clicks on the extension icon, it finds some info on the current page that my extension is visiting, and send the message from my content script to my popup, and my popup will add those info to it. now I pretty much finished all the work, there is only one problem left which is the layout of my popup does not display correctly. I have some thought about why it happens, I think it is because since the popup opens when you click on the icon, and then it finds the info on the page, and then it sends the message back to my popup, but the size of popup is already defined and displayed, so it does not rend it correctly, am I right? How should I fix it.
I think your content script should retrieve the info from the current page immediately (on load) and send this information to the background script.
The background script can store this information either in a variable, or in localStorage/Chrome storage. When opening the popup you can retrieve this information and show it immediately. This way you would avoid the racing condition.

Excel 2007-VBA, Right Click Buttons

I am having a strange Excel 2007 issue, and I am not quite sure how to explain this. So bear with me please....
I have created a few right click buttons to call various backend VBA functions that I have written. They were working fine earlier today, and now for some reason, a button is appearing that is not from the code in my worksheet. When you click it, it is attempting to open another worksheet and execute code from it. The two files are not in the same directory nor are they named anything similar. I deleted the file that the button is trying to execute from and now it just simply gives me an error 400.
So, I couldn’t figure that out, and have since deleted every single scrap of code in the backend of this file, and the button still appears. Any ideas what could be causing this? It seems like maybe its mixing files up or saving a copy somewhere in a temp directory and trying to access that instead of the actual code that is written in the VBA. Is there a cache I need to clear out or something?
I know I didn’t exactly do a great job describing this, so I will be more than happy to provide any and all other details that you may need. Just let me know what is going on.
EDIT #1 -- New Information ==
I can even open a new, completely blank excel file and the right click button is still there.
EDIT #2 -- Tried Diagnostics ==
I just tried running the Excel diagnostics and it found no problems. It is strange, it is like this macro has somehow became global or stored in some type of cache or something.
I hope I'm understanding your issue correctly.
If you know what right-click (context) menus the button is appearing in you should be able to fix them with a Reset command. For example if it's appearing in the Cell context menu, you could try this in the VBE's Immediate window:
Application.Commandbars("Cell").Reset
This will reset the entire menu to its default state.
Also, you might be interested in a tool I wrote, MenuRighter, that allows you to tweak your right-click menus. It also has a setting to show you the Caption and ID of any context menu.

What's going on with this google search result..?

Once upon a time, i came across a weird entry in google search result.
The entry would sit there strangely, with artefacts of text standing tall & vertical.
At once I fired up my trusty firebug to analyse the problem. It appeared immediate that the origin was purely in the text content, nothing could explain why it stood so tall.
I thought it puzzling that the text would suddenly change direction. I found it even more interesting that the browser would not reflow its content to adjust for it. The text just sat there, ignoring the laws of internet. Was the world falling appart? It is 2012 after all.
If seeing it in a pictogram is what you wish then to gaze at the following screenshot:
(This be Chrome (16.0.912.75 mac). This thus happens on Firefox 9 too)
If seeing it in action is what you wish then to click on the following search result link: Search link
What form of sorcery is causing that?
Stackoverflow worthy questions:
Why is the text direction changing without any html markup to trigger it?
Why is the text not forcing the browser to reflow the content and accomodate for it?
I don't think it's related to google, its jankenpopp.com-related, looks like one of those languages where you need to read from top to botton instead of left to right.
I was a bit sketchy to click that link...

showing content on the blank screen after downloading a file

I've observed that under certain circumstances, a web browser will navigate to a blank page and then prompt the user to download a file. In my current situation, it's navigating to a URL that generates an Excel file. The download of the file works perfectly, but the user is now stranded on a blank page. There are two things I would like to figure out:
What causes the blank page to be displayed? It doesn't happen all the time. Is it the difference between using GET and POST (I can't recall seeing a hyperlink do it, but forms usually do)? Is it something to do with the Content-Disposition? In my current case, I've set the Content-Disposition to be "inline" because I want it to display in the browser in IE. Firefox (and presumably others) will of course prompt to download because they can't display it inline. It is the situation where the user chooses to save it that the blank screen results.
If it is possible, I'd like to display some content on this blank screen to provide the user with a message like "your file has been generated, click here to go back to the main screen" or somesuch. Is there a way I can do that?
I'm using an IIS extension written in C++, so solutions for ASP, PHP, etc will not be helpful unless they're generally applicable (though I wouldn't mind learning about solutions in those languages!). Thanks.
I think you practically answered your own question: setting content-disposition to inline does exactly that. One solution that comes to mind is browser detection: use inline disposition if the browser is IE, attachment otherwise.
BTW, as a user, I prefer sites which offer me a choice whether I want to download the file or view it inside the browser (when, for example, accessing a PDF file). In this case, I would consider having a link/button for downloading the file, and adding a second link/button for IE browsers to view it.

Resources