Add to config.php file before include:
@error_reporting(E_ALL | E_STRICT); @ini_set('display_errors', '1'); $CFG->debug = (E_ALL | E_STRICT); $CFG->debugdisplay = 1;
Add to config.php file before include:
@error_reporting(E_ALL | E_STRICT); @ini_set('display_errors', '1'); $CFG->debug = (E_ALL | E_STRICT); $CFG->debugdisplay = 1;
After Updating files from MOODLE 3.1.5 to MOODLE 3.1.7 got this error:
Error code: codingerror !! !! Stack trace: * line 513
Continue reading Error code: codingerror !! !! Stack trace: * line 513
Disable php 7.0 in Apache
a2dismod php7.0
Continue reading How to change php 7.0 to php 5.6 Ubuntu 16.04
Download the installer:
sudo curl -s https://getcomposer.org/installer | php
Move the composer.phar
file:
sudo mv composer.phar /usr/local/bin/composer
Ubuntu PHP.INI 7.0 location:
/etc/php/7.0/apache2/php.ini
find and change
post_max_size=20M
upload_max_filesize=20M
Moodle core function:
is_siteadmin();
Invalid signature in authentication with LTI connection.
How to set up Apache with domain and sub domain:
As an example: your-domain.com, project1.your-domain.com
Continue reading How To Set Up Apache Virtual Hosts on Ubuntu 16.04
This tutorial will show how to configure new server on digital ocean from the start. You can create and customize new virtual server for your needs for different php projects.
Continue reading How to install and configure server on digital ocean step by step