Algis Rudys writes: > Package: konqueror Version: 4:3.2.1-1 Severity: grave Justification: > renders package unusable
> Greetings -- > After upgrading unstable (upgrading konqueror from 4:3.1.5-2 to > current): > In an already running konqueror, I get the following error: > When I try to load a URL (either by typing a URL in the location bar > or by using Location -> Open location, Konqueror fails to load the > web page. > Suppose the URL is "http://www.google.com/". Konqueror gives the > error page: > " An error occured while loading http://www.google.com/: > The process for the http://www.google.com protocol died > unexpectedly. " > Note in particular the ":" after http://www.google.com/ in the > message; this is not in the URL I typed but it is in the error > message (I'm guessing there's a connection). I don't think so, looking at this code: QString errText = QString::fromLatin1( "<HTML><HEAD><TITLE>" ); errText += i18n( "Error while loading %1" ).arg( reqUrl.htmlURL() ); errText += QString::fromLatin1( "</TITLE></HEAD><BODY><P>" ); errText += i18n( "An error occured while loading <B>%1</B>:" ).arg( reqUrl.htmlURL() ); errText += QString::fromLatin1( "</P><P>" ); This tells me that the ':' is part of the text added by khtml for producing the error message. Did you get this error, after you upgraded kde, and did not restart your kde session yet ? thanks domi