bugs

IMAP Php bug - Workaround for this?

Any work around for this problem? http://bugs.php.net/bug.php?id=28419 ...

Is this a covariance bug in C# 4 ?

In the following piece of code I expected to be able to implicitly cast from elements to baseElements because TBase is implicitly convertible to IBase. public interface IBase { } public interface IDerived : IBase { } public class VarianceBug { public void Foo<TBase>() where TBase : IBase { IEnumerable<TBase> elements = n...

string.replace seriously broken with \

"C://test/test/test.png" -> blub blub = blub.Replace(@"/", @"\"); result = "C:\\\\test\\test\\test.png" how does that make sense? It replaces a single / with two \ ? ...

Ruby Enterprise fails to compile with GCC 4.5

Ruby Enterprise Edition fails to compile from sources with GCC 4.5, but sucessfully compiles with 4.3.3. Actually, not sure if it's about GCC, but, in fact, i686 Arch linux system with laest updates won't compile RE. Compilation fails with the message: mkdir -p .ext/common make PRELIBS='-Wl,-rpath,/opt/ruby-enterprise-1.8.7-2010.01/lib...

IE8 rendering of local-files is wrong

It appears that IE8 is not rendering properly a local file: Consider this simple webpage: http://sayang.free.fr/ie8render.html (html code below) extracted from a w3c tutorial on opacity. Save it locally and display it again: the local file has no opacity! That's very annoying, especially when one wants to design complex pages on proto...

Can Internet Explorer bind events to absolute positioned elements ?

Can Internet Explorer bind events to absolute positioned elements ? I can't bind a "click" to an element that is overlapping another. Have tried loads of different ways, here a few tests that don't work in IE: //version 1: $(".classHolder").click(function(){ alert( $(this).html() ); }); //version 2: $(".classHolder").each(function()...

Can't manage to find any answers to the last bug my app has ... [challenge inside ;)]

Hi everyone, I finally get no leaks in my app but I still manage to get my app to crash from time to time ... it is really rare but it pisses me off ;) Here is what I get : 2010-05-11 19:36:29.487 Infonul[2457:20b] *** -[NSCFString _setParserError:]: unrecognized selector sent to instance 0x3cddb80 [Session started at 2010-05-11 19:...

Slowly expanding Quick Find window bug in Visual Studio 2010

In Visual Studio 2010 Professional Edition (Version 10.0.30319.1), I noticed tonight that for some reason I kept getting a wider window for quick find. I verified by exiting, restarting and retesting the bug conditions. Steps to Reproduce Open existing project (I don't think it matters which one) Press ctrlf and give it something to s...

Is needing to refresh the Project Explorer Pane in Eclipse when the file structure changes a bug or a feature?

I'm kinda torn on this one... It could be a feature, because then if the file structure of your project changes on disk, then you'll be able to refer back to project explorer to see what you had before the change, before you refresh. On the other hand it's a little annoying, but not too bad when you get used to it... So which is it? ...

Li with float in IE6/7. It disappears?

Hi guys. Try test this code in IE 6/7: <html> <head> <title>Title</title> </head> <body> <ul> <li style="float:left">huisashaiuhs iuhuiahsiuhsaiu</li> </ul> </body> </html> Where is the circle of LI? I already do ALL types of workaround, in UL and LI. Nothing, NOTHING works. Do you have any idea? (BTW already tried hasL...

VS2008 asp.net spits out gibberish, possibly wrong encoding issue.

Hello, I have inherited a project, it was originally written in VS2005. I have made a few changes, but all are design. Now when I run the project using the visual studio's web server, in IE8, the page shows up just fine, however in FireFox 3.6.3, I get gibberish (a full page of this): �I�%&/m�{J�J��t��$ؐ@�����iG#)�*��eVe]f@�흼 ��{��...

Duplicate entries on mysql on insert using doctrine

Hi all! I am facing a very weird problem with mysql and doctrine [with help of codeIgniter]. I am trying to make a simple migration script taking all records from one table and after a little process, saving them to another. However, on my laptop [running windows and wamp] I get double numbers of the original table records to have bee...

APC not working as expected?

I've the following function: function Cache($key, $value = null, $ttl = 60) { if (isset($value) === true) { apc_store($key, $value, intval($ttl)); } return apc_fetch($key); } And I'm testing it using the following code: Cache('ktime', time(), 3); // Store sleep(1); var_dump(Cache('ktime') . '-' . time()); ec...

.net List<string>.Remove bug Should I submit a MS Connect bug report on this?

So I was beating my head against a wall for a while before it dawned on me. I have some code that saves a list of names into a text file ala ... System.IO.File.WriteAllLines(dlg.FileName, this.characterNameMasterList.Distinct().ToArray()); The character names can contain special characters. These names come from the wow armory at www...

IE Cannot open the internet site (no JS on the page)

I know that there are many posts about this on Stackoverflow, but this one is different. All of the other fixes to this have to do with javascript, but I don't even have javascript on my page. None. And I am still getting this error. Was there any other reasons why this error was being caused? Also, it only happens when I visit my t...

Why can't I set attribute "TYPE" of LI element in IE?

Hello, I've just come to an unusual beghavior of Internet Explorer IE (v8.0.6001.18904). When I try to set "type" attribute of any <LI> element, it will result into error. I used jQuery (v1.32): $('<li>').attr("type", "test"); or $('<li type="test">'); The same thing works for DIV. LI element does not seem to have "type" attribute r...

Objective-C-Runtime Bug When Naming a Superclass "Message"

I have the following class hierachy: @interface Message : NSObject {} @end @implementation Message - (void) dealloc { // I won't be called [super dealloc]; } @end @interface FooMessage : Message {} @end @implementation FooMessage - (void) dealloc { // should call Message - dealloc [super dealloc]; } @end And the fol...

Does Eclipse Ganymede have a mouse-click bug in the Navigator view?

I've had to downgrade from Galileo to Ganymede in order to use the version of the FlexBuilder plugin that we are licensed for. Since the downgrade, I have several times accidentally dragged files or entire folders from one part of my project into another (or even into another project). I blamed this on fatfingers the first couple times...

TFS email originator when bug is resolved

Will TFS automatically alert the originator of a bug when resolved or do you have to configure Alerts Editor (see TFS Power Tools) to do this? Certaintly would be nice if this was default behavior. ...

jQuery doesn't return proper body height on document load - Their bug or mine?

When I use $(document).ready(function() { var bodyHeight = $("body").height(); console.log(bodyHeight); }); I get a really wack number for body height. I then run $("body").height(); in the console and get the right height. Something seems fishy about the $(document).load doing this... Yes my CSS works fine and all, so is this ...