Quantcast
Channel: Moodle for mobile
Viewing all 8391 articles
Browse latest View live

Re: download youtube video on mobile


Difficulties in Custom Moodle Mobile App 3.3.0

$
0
0

by Asad Ali.  

Hi, I am currently working on Custom Moodle Mobile 3.3.0 App (Cloned from github "https://github.com/moodlehq/moodlemobile-phonegapbuild/tree/master") and facing the following difficulties. 


1. I am unable to use fixed URL of my site in app. I have tried configuring it in "config.json" by this line of code 

 "siteurl": "my site URL here", 

2. Is there any way to configure app and directly get user's username and password in app, rather than going into browser for authentication purpose. 

3. How to remove menu items from side menu in the app. 

4. How to configure app's color scheme (orange to another color).

Lesson module not working when offline

$
0
0

by Ernesto Tolocka.  

Hi, I´m trying to put to work a lesson in MM and it works nice when I online, but If I have no connection, the lesson module does  not work.

Is it a limitation of MM or a server configuration issue?


(my version of MM is 3.3.0 and Moodle version is Moodle 3.3 (Build: 20170515) . MM plugin is version 3.3.330

Regards,

Ernesto.



Is it possible to install Moodle on smart phone?

$
0
0

by Mulugeta Assefa.  

I was thinking that we can access Moodle site by mobile. But sit possible to have the installation on smart phone?

Re: Lesson module not working when offline

$
0
0

by Juan Leyva.  

Hi Ernesto,

have you configured the lesson to be available offline? There is a configuration option in the lesson settings.

If even with that setting on is not working, could you send us a backup of the lesson or a test user account on your site to mobile@moodle.com (please, reference in the email body this issue)?

Thanks, Juan


Re: Activity isn't supported in Moodle mobile App

$
0
0

by Tim Williams.  

Marcus, has your talk from the 2017 UK/IE MoodleMoot on this topic gone up anywhere? It's not on the official conference playlist and I recall it being a pretty good summary of the "minimum" work necessary to get an existing activity module working with MoodleMobile. While the docs on the above link are useful in a general sense, the tutorial doesn't cover this specific case, which strikes me as the most likely case developers are going to encounter. The example covers developing a MoodleMobile specific plugin using an existing web service.

Re: Internal script failure - On logging in

$
0
0

by Plamen Stanev.  

So how was you able to disable authentication methods if you were not able to login? Please explain. I have the same problem.

Re: download youtube video on mobile

$
0
0

by dnyaneshwar somwanshi.  

I have one doubt . Khan Academy uploads videos on Youtube but that videos are downloadable from its app(khan Academy Mobile App) . Can similar feature be implemented  in moodle Mobile App.? as videos take lot of space so hosting takes lot of money and thats why youtube is the only option   to upload videos.

this will be nice feature.

I have Created an issue in the tracker... MOBILE-2183 start watching and Vote if you feel same.


Re: Moodle Mobile Custom App Site URL

$
0
0

by Augusto Santos.  

The same problem is happening with my customisation. "siteurl" dont efect

Re: Internal script failure - On logging in

$
0
0

by Swapnil Shinde.  

Site administration ->Plugins->Authentication->Manage authentication

I had to disable all and keep manual login.


Re: Moodle Mobile Custom App Site URL (Solved)

$
0
0

by Augusto Santos.  

Enter the link of your site in the file

build/mm.bundle.js

Is at the end of the file, are the same lines as the file config.json

offline bookmarks facility should available through app

$
0
0

by dnyaneshwar somwanshi.  

I requested Offline bookmarks feature through moodle mobile app . while reading some important pages student should able to bookmark important activity so that he can revise easily offline later. I created issue on tracker here MOBILE-2033. any idea how can it be implemented? I think this is one of the best feature moodle mobile can have.

Re: Is it possible to install Moodle on smart phone?

$
0
0

by Ralf Krause.  

Moodle is running on a server.

No, you can't install it on a smartphone. When Moodle is installed on a server you can build courses with your smartphone. For editing courses you need to use the web browser. With the mobile app you can get the student view of the course. 

I found a very nice idea to get a really mobile Moodle. It's the MoodleBox running on a Raspberry Pi 3. The complete server is in a very small box. It provides its own wifi. You can use the MoodleBox with 15 or 20 clients. Take a powerbank and get the electric power for the MoodleBox.  https://moodlebox.net/en/

Ralf

Sectionwise completion status in moodle mobile

$
0
0

by dnyaneshwar somwanshi.  

Hello  Moodlers, Course overview block is very good. But when we enters in course it don't display chapter Completion status. This https://moodle.org/plugins/theme_moove

Theme supports topic wise Completion status. How can it be implemented in moodle mobile

moodle web support sectionwise completion status but not graphically. my interest is to support this feature graphically (which will be best) or numerically on moodle mobile app.

I have also created an issue in the tracker . MOBILE-2149 follow and do watch . 





Re: Moodle mobile not accepting custom url

$
0
0

by Dani Palou.  

Hi,

if you check the console, the first error it's showing is:

TypeError: Cannot read property 'errorcode' of null

This is because the app expects to receive errors as JSON objects (that's how the login/token.php script works). But it is receiving a string instead: "<br /><b>Error</b>: <font color="FF0000"><b>Internal script failure</b><br />".

Since the app is receiving a value that doesn't expect, it fails and then it tries to connect again modifying the URL. When you enter a site URL, the app will always do this:

  • Try to connect using https.
  • If it fails, try to connect using https and adding or removing www.
  • If it fails, try to connect using http.
  • If it fails, try to connect using http and adding or removing www.

Please fix that error (Internal script failure) and try again.

Kind regards,

Dani


Re: Moodle mobile not accepting custom url

$
0
0

by Olalekan Adeniyi.  

Ok, Thanks Dani,

I would fix that and see how it goes, I really appreciate you time.

Re: Changing order of items in side menu

$
0
0

by John Valko.  

Hi Dani,


Thank you for taking the time t0 respond back to me.  

Yes I do have a customized app,  in the side menu code (www->core->components->sidemenu->templates->menu.html)  there's this function (li div) the builds the top potion of the side menu...                    

<li ng-repeat="handler in handlers | orderBy:'-priority'" ng-controller="handler.controller" class="mm-sidemenu-handler {{class}}">

                        <a menu-close class="item item-icon-left" ui-sref="{{state}}" title="{{title | translate}}" ng-class="{'item-icon-right': loading}">

                            <i class="icon {{icon}}"></i> {{title | translate}}

                            <span ng-show="!loading && badge" class="badge badge-positive">{{badge}}</span>

                            <ion-spinner ng-if="loading" class="icon"></ion-spinner>

                        </a>

  </li>


where in the "<li ng-repeat="handler in handlers |orderBy-'priority'" being the priority value determines the order of the items in the side menu. The only problem is "where" is the priority set?

 

As you had mentioned "The default page when opening the app is configured with the setting "defaulthomepage" (like in Moodle web). If you want to open Site Home then you should set it to "Site"." Where is set on the moodle website under "Site administration"?    Or in the config.php page.


Thanks again for your time (and patience with me!)


Best regards,



John Valko 


Re: Dropdown items not displaying on tablet

$
0
0

by Jaco-Louis Kruger.  

Good day Dani

I tried the w3schools example and the select works perfectly in the browser.

Do you have any further advice in this regard?

Kind regards

Jaco-Louis

Re: Dropdown items not displaying on tablet

$
0
0

by Jaco-Louis Kruger.  

Good day Dani

I tried the w3schools example and the select works perfectly in the browser.

Do you have any further advice in this regard?

Kind regards

Jaco-Louis

Re: site policy problem in Moodle mobile

$
0
0

by Yezi Yang.  

Hi Dani,

I provide the Moodle url and a test student account in your private message. Thank you very much for your support!

Viewing all 8391 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>