bugs

bundle product shows price as 0

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...

Error pointing to "line 0" in PHP.

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...

Jquery/Pikachoose problem page continusly reloading ie7/ie6

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...

use 2 different versions of same control (dll) at the same time on same machine?

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...

Folders (directories) not being detected properly

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...

Best ways to fit bug fixing into a Scrum process?

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...

Why is non-type template parameter expression handling inconsistent across compilers?

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...

std::stringstream GCC Abnormal Behavior

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...

MySQL 5.1 command line problem: delete last char doesn't work

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! ...

IE8 CSS/combobox bug (weird appearing text)

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...

Replacing whole HTML content kills HEAD and BODY tags after HTTP Request!

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...

AJAX loader GIF while asynchronous POST request doesn't work in IE.

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...

CSS problems: with custom ul,li dropdown navigation in ie, especially with the ie6 overflow:visible bug

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...

Fixed element "jitters" when the page scrolls

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...

Win7: Out of Memory exception on Image.FromFile

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 Dataset Designer Null

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...

Debugging: High-level versus low-level bugs

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 ...

Graphical Bugs while programmatically creating UILabel, UITextField, etc...

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...

IE6 border-bottom: 0 & padding CSS issue.

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...

Is this is an ExpressionTrees bug?

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...