Hi guys,
I've been reading a lot about this problem but I get nothing that suggests a way out.
I am working with version 1.3.2.4 and after creating a bundle product, Magento displays it as price as zero, but gives the "current composition" as the correct value.
I already tried to refresh the cache, rebuild the catalog index, and noth...
Using PHP 5.3.0.
I know you can get errors pointing to line 0 when executing code from the shell (with php -a or php -r). I also know you can get line 0 errors when an exception is thrown during the process of executing a custom exception handler. These are logical reasons why PHP might not be able to provide me with a line number for a...
I am using pikachoose plugin for slider. But I changed a few code in the plugin to add links to thumbnails, it works perfectly on firefox, chrome. But when i open the page in ie7 or ie6 the reloads indefinitely. here is the code i added in the plugin
jQuery("#pikame li").each(function(){
var link = jQuery(this).find('a').attr('h...
Hi,
I'm using a3rd party component in my project and I recently upgraded to their latest version which fixed bug 'A'
unfortunately, while it solved bug 'A', another part has gotten completely unstable, so it introduced a bug 'B'.
Since 'A' and 'B' are in completely different contexts, I want to have both versions of the control instal...
I am noticing an error with the 'bog standard' Objective-C folder detection code. I am scanning files and folders with a given path and keeping count of how many files exist and how many folders exist.
Oddly enough, I am returning a count of one more folder than actually exists!
Stepping through the routine with debug and watching eac...
I have been studying and reading about Scrum in the last few days and reading about Spring Planning and tasks, one problem that popped into my mind is how to deal with bugs in Scrum. Henrik Kniberg in his very nice book Scrum and XP from the Trenches lists some ways of dealing with this issue:
Product owner prints out the most
high pri...
Here is something I observed across various compilers. It seems there are compiler bugs.
template <int I>
struct X
{ };
int main(void)
{
X<(16 > 1)> a; // Works on vc9, works on g++ 4.1.2, works on Comeau 4.3.10.1
X<(int(16) > 1)> b; // Works on vc9, works on g++ 4.1.2, works on Comeau 4.3.10.1
X<(16 >> 1)> c; // Work...
I have a very interesting problem with compiling a short little program on a Mac (GCC 4.2). The function below would only stream chars or strings into the stringstream, but not anything else (int, double, float, etc.) In fact, the fail flag is set if I attempt to convert for example an int into a string.
However, removing the preprocess...
I can't delete the last character in a given line in the MySQL CLI, if I press "END", it will jump on the character and if I press "DEL", it will delete the char before that (like backspace).
Does anybody know a fix for that issue?
I use MySQL 5.1.31-1ubuntu2-log with normal shell access.
Thank you for assistance!
...
I am trying to identify this bug. Is this a known issue already or is it totaly new? Is there a workaround (like a zoom:1 or position:relative that I can add to fix it?), idealy without modifying the html here but just adding to it.
If you display the below html in IE8 you will see the text from the select (combo box), is displayed tw...
After pressing a button, I'm sending the whole HTML content from a webpage (the part within the <html> tags) to a CGI script which manipulates the content and sends it back.
Now I'm trying to replace the existing content with the new one. Unfortunately after assignment, every single <head> or <body> tag (as well as the closing ones) wi...
Hi folks!
I'm trying to show an AJAX loader gif while an asynchronous POST request is performed. Unfortunatelly this works not in Interet Explorer! The Gif is shown, but the request process seems to stop respectivly the changed webcontent will not be shown. On FF, Opera, Safari everything is fine! Any ideas?
http_request.onreadystatech...
The essence of the ie6 bug (dropdown entries must be truncated via overflow hidden to prevent ie from incorrectly expanding instead of acting as overflow:visible) can be seen in it's current (hacky) form in the screenshot below, and at the site http://zd-cms.com
Wrong (ie6):
Right (FF, IE8, Chrome):
The menu entry should show:
C...
I've looked into this problem, found that it is Bug 201307 in firefox.
I also know that the "fix" is to apply overflow:auto; to the fixed box.
My issue is that I can't use that fix! I have a child element absolutly positioned outside of the fixed element. Is there another solution to this problem?
I can't show the example, but the co...
The following piece of source does run nicely with Windows up until vista.
With Windows 7 (and the new .net 3.5) it always produces an out of memory exception, when I try to load a raw image file from my Nikon D90.
Some might say "loading nef's is not supported", but it did run nicely up until vista, only Windows 7 broke it, so I'd disag...
Visual Studio 2008 has a bug in that you cannot use the dataset designer to set an int type field to be nullable. (There are error reports going back to Visual Studio 2005 but it seems this has never been addressed.)
The only selectable behaviour is to emit code that raises an exception if an null value is passed back from the database...
What is the approximate ratio of time you typically spend debugging high-level versus low-level bugs?
For the purposes of this discussion, high-level bugs are things like incorrect algorithms, bad assumptions about input data and/or operating environment, cases that were overlooked in the initial implementation of something, forgetting ...
I programmatically created a login view and a table view.
Under certain circumstances which i cannot reproduce there occur some strange visual bugs:
Text with some letters having a different font size than others
A button where the border is not initially shown but only if you click on it. In the same case, the border of the button ca...
Hi,
I just encountered a IE6 bug that I don't seem to identify over the net.
Basically this is when the behavior is triggered: a block element has border, on all sides except bottom, and top/bottom padding. and inside it there's another block element.
My entire code is to big to fit in here, but I narrowed it down to this simple examp...
using System;
using System.Linq.Expressions;
class Program
{
static void Main()
{
Expression<Func<float, uint>> expr = x => (uint) x;
Func<float,uint> converter1 = expr.Compile();
Func<float,uint> converter2 = x => (uint) x;
var aa = converter1(float.MaxValue); // == 2147483648
var bb = converter2(float.MaxValu...