I have this error when doing:
right-clic -> open with -> enlightenment file manager

When simply double-clicking on the folder, file manager
opens and is empty (no file appears).

I modified e_mod_dbus.c like this (line 188):

   printf("FIRST URI: %s\n", param_file);

   char *pp = strstr(param_file,"file");
   printf("STRSTR URI: %s\n", pp);

   Efreet_Uri *uri = efreet_uri_decode(pp);

   printf("URI -> PROTOCOL: %s\n", uri->protocol);
   printf("URI -> PATH: %s\n", uri->path);

And the output (by switching tty) is:

   FIRST URI: /home/rusty/Bureau/file:///home/rusty/Bureau/folder
   STRSTR URI: file:///home/rusty/Bureau/folder
   URI -> PROTOCOL: file
   URI -> PATH: /home/rusty/Bureau/folder

As you can see, the 'FIRST URI' is malformed.
'STRSTR URI' seems to be the correct string.

Now, when I try, a window opens and tells me:

   Enlightenment was unable to run the application:
   /home/rusty/Bureau/folder
   The application failed to start.

How can I get gdb logs in file ?

Thanks,
Maxime


Le 20/07/2012 15:38, Jose Souza a écrit :
> Could you please attach gdb logs? You have tryed update your e17?
> Look below the actual line 202 of e/src/modules/fileman/e_mod_
> dbus.c
>
>  Efreet_Uri *uri = efreet_uri_decode(param_file);
>
>         real_file = NULL;
>         if (uri)
>           {
>              if ((uri->protocol) && (strcmp(uri->protocol, "file") == 0))
>                {
>                   real_file = ecore_file_realpath(uri->path);
>                   param_file = to_free = strdup(uri->path);
>                }
>              efreet_uri_free(uri);
>           }
>
>         if (!real_file)//line 202
>           {
>              errmsg = "unsupported protocol";
>              goto error;
>           }
>
> Thanks
>
> On Thu, Jul 19, 2012 at 6:21 PM, rustyBSD <rusty...@gmx.fr> wrote:
>
>> Hi,
>> I can't use enlightenment's file manager because of the
>> error :
>>
>> org.enlightenment.FileManager.Error unsupported protocol
>>
>> It seems to come from line 202 of e/src/modules/fileman/e_mod_dbus.c
>>
>> Does someone know how I can get it work ? (I'm using Fedora 17)
>>
>> Thanks,
>> Max
>>
>> ------------------------------------------------------------------------------
>> Live Security Virtual Conference
>> Exclusive live event will cover all the ways today's security and
>> threat landscape has changed and how IT managers can respond. Discussions
>> will include endpoint security, mobile security and the latest in malware
>> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>> _______________________________________________
>> enlightenment-users mailing list
>> enlightenment-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/enlightenment-users
>>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and 
> threat landscape has changed and how IT managers can respond. Discussions 
> will include endpoint security, mobile security and the latest in malware 
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> enlightenment-users mailing list
> enlightenment-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-users
>



------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users

Reply via email to