Author: Jovan Stosic
Moon River
“Moon River” is a song composed by Henry Mancini with lyrics by Johnny Mercer. It was originally performed by Audrey Hepburn in the 1961 movie Breakfast at Tiffany’s, winning an Academy Award for Best Original Song. The song also won the 1962 Grammy Awards for Record of the Year and Song of the Year.
Breakfast at Tiffany’s (1961)
The Front Runner (2018)
Gary Hart
Ilhan Ersahin
Girl
virtualbox.org • View topic – Unable to install Debian Guest on Ubuntu Host (Networking?)
Moodle – File upload size
Modifying the php.ini file
These instructions show you how to change the file upload size by editing your php.ini file.
For the most part these instructions amount to the following. In the file /etc/php5/apache2/php.ini you need to change “post_max_size”, “upload_max_filesize” and “max_execution_time” to values that suit your needs using whatever editor you are used to.
Below are some line by line instructions for various installations of Moodle
Source: File upload size – MoodleDocs
MySQL full unicode support – MoodleDocs
- Change configuration settings for MySQL [client] default-character-set = utf8mb4 [mysqld] innodb_file_format = Barracuda innodb_file_per_table = 1 innodb_large_prefix character-set-server = utf8mb4 collation-server = utf8mb4_unicode_ci skip-character-set-client-handshake [mysql] default-character-set = utf8mb4
– Adjust the $CFG->dboptions Array in your config.php to make sure that Moodle uses the right Collation when connecting to the MySQL Server:
$CFG->dboptions = array( … 'dbcollation' => 'utf8mb4_unicode_ci', … );