installation for moodle?

  • Hello ;


    Download a software package and learn by example.

    badge.php?id=1239063037&bid=2518&key=1747635596&format=png&z=547451206

  • Thanks, not entirely sure how to approach it though, as looking through a few install packages they vary slightly from one another, do I need to cross reference variables with moodle's install scripts in the perl install script and the sql file? Completely new to i-mscp so not entirely sure how to go about it, appreciate any advice.


    Thanks

  • I've managed to create the software package and uploaded it to imscp. The only problem I am having is it's getting stuck on 'Installing'
    .


    I've left it for over half an hour and still the same. Can find anything in the logs, but it does create the directory /var/www/imscp/gui/data/persistent/softwares/sw_depot/moodleim although all the files are missing from the web directory.


    May this be related to the size of the package? It's a 132MB tar.gz.


    Edit:
    I fixed this by doing the following to package it:


    Code
    1. find . -type f -exec chmod 0644 {} \;
    2. find . -type d -exec chmod 0755 {} \;
    3. tar cf - . | gzip -9c > ../cheese.tar.gz