How to access Moodle files outside the Moodle?

| By Webner

We can access Moodle outside the Moodle (without login) by passing token in the URL. For example : http://localhost/Moodle_new/webservice/pluginfile.php/26/qtype_match/subquestion/17/5/6/PineApple.jpg?token=6yhg9331af9d9284abb36cyjh0c67114a If token is not be passed into the URL, then it redirects to Moodle’s login screen.

CakePHP bake: SQLSTATE[42S02]: Base table or view not found

| By Webner

While running cake bake command for cakephp 3.0 we got the following error: SQLSTATE[42S02]: Base table or view not found: 1146 Table ‘tablename .columnname’ doesn’t exist The culprit was a column with name test_id in one of the tables. As