Ir al contenido principal

Entradas

Mostrando entradas de mayo, 2013

Moodle - Course

Course Plugins Display customized reports through sql queries install the plugin  Ad-hoc database queries Install the folder  customsql  in htdocs\moodle\local Restart moodle to times to show the pages to update the appliation Documentation http://docs.moodle.org/19/en/Custom_SQL_queries_report Add Reources In the section Home   /   ►  Courses   /   ►  Miscellaneous   /   ►  CourseXXX you can add many items like labels, Test Surveys, Quizzes, Assignments, etc   

Moodle - Users / Groups

Users To send mails to new user install the plugin welcome Install the folder welcome in htdocs\moodle\local Restart moodle to times to show the pages to update the appliation Groups The term is referent to indicate that one course is given in many Groups. The users must be enrolled before assign them to a group Paypal First, enable the plugin Home   /   ►   Site administration   /   ►   Plugins   /   ►   Enrolments   /   ►   Manage enrol plugins 2. Configured your Home   /   ►   Site administration   /   ►   Plugins   /   ►   Enrolments   /   ►   PayPal

Moodle with SQL Server

Execute the following commands 1) CREATE LOGIN root WITH PASSWORD = 'Adm1n1234' ,DEFAULT_DATABASE = [moodle] GO -- Now add user to database 2) USE moodle; CREATE USER root FOR LOGIN root; GO 3) ALTER DATABASE moodle SET ANSI_NULLS ON ALTER DATABASE moodle SET QUOTED_IDENTIFIER ON ALTER DATABASE moodle SET READ_COMMITTED_SNAPSHOT ON 4)  Set the following settings in your php.ini file mssql.textlimit = 20971520 mssql.textsize = 20971520

Moodle instalation - Fix Problems

Fix problems http://moodle-platform.cba.pl/admin/index.php?lang=en&agreelicense=1 SSL problem admin/environment/php extension/openssl Main page  ►  Managing a Moodle site  ►  Server settings  ►  Environment  ►  admin/environment/php extension/openssl Server settings System paths Session handling HTTP Maintenance mode Cleanup Environment Site registration To install the openssl library on Windows Open the  php.ini  file found in the  moodle/apache/bin  (if not there then, in folder server/php/) Find the line:  ;extension=php_openssl.dll Remove the  ;  at the beginning of the line Restart apache if necessary Note: if Moodle fails to create a public key in Admin > Networking > Settings, you'll need to configurate your OPENSSL_CONF path. With Windows File Explorer find openssl.cnf file (usually in your php/extras directory). Rename it as openssl.conf. Then set OPENSSL_CONF in your Windows environment variab...

PHP connect to SQL Server 2012

1. Download the driver from msn http://www.microsoft.com/en-us/download/details.aspx?id=29065 2. Execute  SQLSRV30.EXE 3. Read  SQLSRV_Readme.htm 4. Go to  C:\xampp\php and find the file:      php5ts.dll  or    php.dll 5. Copy the files  to  C:\xampp\php\ext    php_sqlsrv_54_ts.dll    php_pdo_sqlsrv_54_ts.dll 6. Restart the apache