To avoid this memory issue, increase the memory site on the config.php
Add this line
$CFG->extramemorylimit = '4096M';
Log out from the moodle and close the browser. Then open the page again and log in.
If you still run into the issue, increase the memory limit to bigger value. Once you are done, be sure to remove the line.
This is my cheat sheet if I have to look back for an answer for problems. You're welcome to add or comment the answer.
Wednesday, November 30, 2011
Saturday, October 15, 2011
Import csv into mysql direct
load data local infile 'uniq.csv' into table tblUniq
fields terminated by ','
enclosed by '"'
lines terminated by '\n'
(uniqName, uniqCity, uniqComments)
fields terminated by ','
enclosed by '"'
lines terminated by '\n'
(uniqName, uniqCity, uniqComments)
Wednesday, September 21, 2011
How to use screen in cli
To start a new screen session, simply type the word "screen" and hit enter. It is preferred that you name your screen session, by instead using "screen -t name".
To "detach" from a screen session, type "Control+A", then "D".
To terminate a screen session, type "exit" and hit enter.
To list currently running screen sessions, type "screen -ls" and hit enter.
To "reattach" a screen session, type "screen -r [name of socket]" and hit enter.
"[name of socket]" is one of the sockets listed from the "screen -ls" command.
To scroll back through console output within a screen session: ctrl-a (release) then type [ Use the up and down arrows. To escape this mode (copy mode) hit esc
To "detach" from a screen session, type "Control+A", then "D".
To terminate a screen session, type "exit" and hit enter.
To list currently running screen sessions, type "screen -ls" and hit enter.
To "reattach" a screen session, type "screen -r [name of socket]" and hit enter.
"[name of socket]" is one of the sockets listed from the "screen -ls" command.
To scroll back through console output within a screen session: ctrl-a (release) then type [ Use the up and down arrows. To escape this mode (copy mode) hit esc
Monday, September 12, 2011
Showing tables only in mysql
To show only tables and dump to a txt, use the command
# mysqlshow database_name > export.txt
# mysqlshow database_name > export.txt
Monday, August 15, 2011
Quick shortcut for moodle in config.php
$CFG->enablestats = false; //to disable statistics
$CFG->themedir = $CFG->dataroot.'/theme'; //for adding theme dir
$CFG->themedir = $CFG->dataroot.'/theme'; //for adding theme dir
Tuesday, August 9, 2011
Installing Office2007 with protected windows files error
If you run into error while installing Office2007 with description protected windows files problem, then here is the fix.
Copy fpault.dll file on the original xp cd,
hiding in I386\FP40EXT.CAB
to c:\program files\common files\microsoft shared\web server extensions\40\bin
Copy fpault.dll file on the original xp cd,
hiding in I386\FP40EXT.CAB
to c:\program files\common files\microsoft shared\web server extensions\40\bin
Subscribe to:
Posts (Atom)