Navigation

    UBports Robot Logo

    UBports Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search

    Cant receive pictures through mms??

    Support
    9
    31
    813
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • T
      tricky last edited by tricky

      @AlainW94 Unfortunately i did those 2 tests (send and receive mms) one after another and because of that the output log from ofono was not really clear.
      I decided to perform second test. This time i just sent mms message to my OPO.
      Unfortunately there is neither entry in history.sqlite nor attachment in history-service/attachments folder.

      New object in attachments folder and new row in history.sqlite is created only when i try to send mms from my OPO to some other device.

      AlainW94 1 Reply Last reply Reply Quote 0
      • AlainW94
        AlainW94 @tricky last edited by

        @tricky Can you try to reach this link from morph browser : http://geo1:8002/cSvMacnsEHCA

        if this works you will be prompted to download a file (your mms content).

        1 Reply Last reply Reply Quote 0
        • T
          tricky last edited by tricky

          @AlainW94 When i try to open it i get ERR_NAME_NOT_RESOLVED error

          AlainW94 1 Reply Last reply Reply Quote 0
          • AlainW94
            AlainW94 @tricky last edited by

            @tricky Did you try with WiFi off ?, this is a server from your provider.

            AlainW94 1 Reply Last reply Reply Quote 0
            • AlainW94
              AlainW94 @AlainW94 last edited by

              @AlainW94 I thought that you have 2 SIM card installed right ?

              1 Reply Last reply Reply Quote 0
              • T
                tricky last edited by

                @AlainW94 Yes, Wifi is disabled. I do have only one SIM installed. It's not possible to install 2 SIM Cards to One Plus One. It might be that indeed my mms APN is not properly configured due to missing additional parameters. Maybe i could try to add all parameters manually to config file. I've seen some old topic related to Ubuntu Touch where it was described where apn settings are stored

                AlainW94 1 Reply Last reply Reply Quote 0
                • AlainW94
                  AlainW94 @tricky last edited by

                  @tricky Yes this is a thing you can try, and you should see if the configuration is fine if you success to ping the geo1 server or you could reach it through morph browser.

                  1 Reply Last reply Reply Quote 0
                  • T
                    tricky last edited by

                    @AlainW94 That was this thread below:
                    https://askubuntu.com/questions/413438/no-mobile-data-on-nexus-4-ubuntu-touch

                    In /usr/share/ofono/scripts i found script create-mms-context so i will try to create mms APN first and then add all parameters with set-context-property script.

                    AlainW94 1 Reply Last reply Reply Quote 0
                    • AlainW94
                      AlainW94 @tricky last edited by

                      @tricky Very nice, please let us know if that works, and this can maybe be useful for other user that had your provider if you can share the info settings of your working APN

                      1 Reply Last reply Reply Quote 0
                      • T
                        tricky last edited by tricky

                        I tried to edit mms settings with set-context-property script but either this script doesn't work properly or I'm doing something wrong.
                        I'm trying to change authentication method from chap to pap. According to my provider i should use pap method.

                        phablet@ubuntu-phablet:/usr/share/ofono/scripts$ ./list-contexts 
                        [ /ril_0 ]
                            [ /ril_0/context14 ]
                                MessageCenter = http://mms.orange.pl
                                Username = mms
                                MessageProxy = 192.168.6.104:8080
                                Name = MMS
                                Type = mms
                                AccessPointName = mms
                                AuthenticationMethod = chap
                                Active = 0
                                IPv6.Settings = { }
                                Password = mms
                                Protocol = ip
                                Settings = { }
                                Preferred = 1
                        

                        According to the documentation i should use it as it's shown below:
                        set-context-property [modem] [context_number] <name> <value>

                        phablet@ubuntu-phablet:/usr/share/ofono/scripts$ ./set-context-property /ril_0 14 AuthenticationMethod pap
                        Traceback (most recent call last):
                          File "./set-context-property", line 62, in <module>
                            path = contexts[context_idx][0]
                        IndexError: list index out of range
                        

                        Syntax seems to be correct because if i make typo in modem name or context number i get error message that context doesn't exist or modem name is wrong

                        AlainW94 1 Reply Last reply Reply Quote 0
                        • AlainW94
                          AlainW94 @tricky last edited by

                          @tricky I looked in the script file, the strange thing is that it seem that the context id passed through the command line is minored by one in the script :

                          context_idx = int(sys.argv[1]) - 1
                          

                          Can you try the same command you type before but with a context number of 15 please?

                          T 1 Reply Last reply Reply Quote 0
                          • T
                            tigerpro last edited by

                            I was able to get mobile data working with those scripts as well as get MMS to send but never received a, I even went the extra step of removing all the other APNs prior due to the data one not being correctly set when I try to activate the mobile data. I haven't tried changing the AuthenticationMethod yet however next time I play with it I will try that. I know it isn't messing up on my device cause there are only 2 APNs, one for data and one for MMS

                            1 Reply Last reply Reply Quote 0
                            • T
                              tricky @AlainW94 last edited by

                              @AlainW94 Unfortunately i get the same error

                              I decided to delete all APNs and create only one APN for internet.
                              Interesting that this new APN has been created with number 18. Shouldn't be 0 or 1 ? It might be that remove contexts scripts doesn't delete all related data.

                              phablet@ubuntu-phablet:/usr/share/ofono/scripts$ ./list-contexts
                              [ /ril_0 ]
                                  [ /ril_0/context18 ]
                                      IPv6.Settings = { }
                                      Password = internet
                                      Settings = { }
                                      AccessPointName = internet
                                      Preferred = 1
                                      AuthenticationMethod = chap
                                      Active = 0
                                      Username = internet
                                      Protocol = ip
                                      Name = Internet
                                      Type = internet
                              
                              
                              ./set-context-property /ril_0 18 AuthenticationMethod pap
                              Traceback (most recent call last):
                                File "./set-context-property", line 62, in <module>
                                  path = contexts[context_idx][0]
                              IndexError: list index out of range
                              
                              1 Reply Last reply Reply Quote 0
                              • arubislander
                                arubislander last edited by arubislander

                                @tricky said in Cant receive pictures through mms??:

                                ./set-context-property /ril_0 18 AuthenticationMethod pap
                                Traceback (most recent call last):
                                File "./set-context-property", line 62, in <module>
                                path = contexts[context_idx][0]
                                IndexError: list index out of range

                                Could it be that the context number is irrelevant and what you instead are passing is the index number? So that should be 1 in this case.

                                T 1 Reply Last reply Reply Quote 2
                                • T
                                  tricky @arubislander last edited by

                                  @arubislander That was it! many thanks for this hint 🙂
                                  Back to testing. I will keep you updated

                                  S 1 Reply Last reply Reply Quote 0
                                  • S
                                    sk8rdie last edited by

                                    here is a couple videos i made on the functionality of the nexus 5. first one showing that the phone does send pics, just doesnt receive them.

                                    https://vimeo.com/327479366

                                    and this video showing picture information is received from another contact, just not displayed.

                                    https://vimeo.com/327482143

                                    1 Reply Last reply Reply Quote 0
                                    • S
                                      sk8rdie @tricky last edited by

                                      @tricky what do you use to edit the script files. ive tried so many different ways. and still read only??

                                      T 1 Reply Last reply Reply Quote 0
                                      • T
                                        tricky @sk8rdie last edited by tricky

                                        @sk8rdie you have to remount your file system from read only to read-write

                                        sudo mount -o remount,rw /

                                        If you find solution to fix mms issue please let us know.
                                        I spent few hours changing settings in context files via ofono scripts but i didn't manage to get mms working.

                                        1 Reply Last reply Reply Quote 0
                                        • jezek
                                          jezek last edited by

                                          Hello, I'm writing my experience with MMS on Ubuntu Touch.

                                          I'm from Slovakia, my mobile carrier is Orange.

                                          On my previous phone bq E5 HD Ubuntu Edition with original Ubuntu Touch from Canonical, sending & recieving MMS worked out of box.

                                          On my current phone FP2, on stable & current rc (version 37) channel, it is not possible for me to send an MMS. It allwasys fails, message is red & a retry button appears beside the message. I don't know about receiving, but I never got an MMS, always got info about missing one and instructions, how to view it using web service & pasword.

                                          Note: Just for sure. Internet through mobile data works for me & during sending an MMS it is switched on.

                                          1 Reply Last reply Reply Quote 0
                                          • T
                                            tricky last edited by

                                            @jezek i use the same mobile carrier as you in Poland.
                                            I assume that we both cannot properly configure settings that are required by our carrier.
                                            I'm just wondering if there is any chance to check what has been changed in ofono code since Ubuntu Touch.

                                            1 Reply Last reply Reply Quote 1
                                            • First post
                                              Last post