KDE 4.1 login fails for new user

David Jarvie djarvie at kde.org
Tue Jul 15 22:32:11 BST 2008


On Tue 15 July 2008 16:09:58 you wrote:
> On Saturday 12 July 2008, David Jarvie wrote:
> > I removed the ~/.kde directory and tried to log in using KDE 4.1 (SVN
> > yesterday). It showed the error message "Could not start kstartupconfig4.
> > Check your installation." before aborting the login. The error code being
> > returned by kstartupconfig4 was 3. Repeating the login attempt resulted
> > in the same error.
> >
> > By my reading of the code, kdostartupconfig.cpp calls
> >
> >     KStandardDirs::locateLocal( "config", "startupconfigkeys" );
> >
> > and then tries to open the resultant file name in read-only mode - hence
> > the error. When you start with an empty ~/.kde, that file won't exist, so
> > AFAICS kstartupconfig4 will inevitably return the error code 3. (The
> > directory ~/.kde/share/config was created with correct user permissions,
> > presumably by that call, so there's no problem with write access.)
>
> So basically this patch should help?
>
> --- kdostartupconfig.cpp        (revision 829274)
> +++ kdostartupconfig.cpp        (working copy)
> @@ -80,6 +80,8 @@ int main( int argc, char **argv )
>      kDebug() << "Running kdostartupconfig.";
>      KCmdLineArgs::init( argc, argv, &about ); // for KLocale not to
> complain about encoding QString keysname = KStandardDirs::locateLocal(
> "config", "startupconfigkeys" ); +    if (!QFile::exists(keysname))
> +        return 0; // nothing to do
>      QFile keys( keysname );
>      if( !keys.open( QIODevice::ReadOnly ))
>          return 3;

Yes, the patch fixes the problem. I didn't know whether the startupconfigkeys 
file should be created empty, or whether the fault should just be ignored, as 
in your patch.

-- 
David Jarvie.
KAlarm author and maintainer.
http://www.astrojar.org.uk/kalarm
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 189 bytes
Desc: This is a digitally signed message part.
URL: <http://mail.kde.org/pipermail/kde-core-devel/attachments/20080715/62c94ae1/attachment.sig>


More information about the kde-core-devel mailing list