Setting you a web development environment in Windows is a big heahache. Here is a list of all on one WAMP packages.
Category Archives: Web Development
EasyPHP – Import DB error
If you meet the following error when importing DB thru the EasyPHP phpMyAdmin.
- #1100 – Table ‘pma_column_info’ was not locked with LOCK TABLES
Open the phpMyAdmin configuration file config.inc.php and the uncomment the following 2 lines.
$cfg['Servers'][$i]['controluser'] = 'root'; $cfg['Servers'][$i]['controlpass'] = 'password';
Done =)
Reference: error while importing DB in mysql
Mongoose – Simple web server
Thanks my friend Mart who introduces reveal.js to me. It’s a great presentation framework and we used it for our Front End Web Development course in General Assembly.
Without the web development framework like Python Django or Ruby on Rails which bundle with pserver and WEBrick, i would like to find a light weight web server such that i could edit and preview my markdown which runs on reveal.js. Finally i find Mongoose.
Continue reading Mongoose – Simple web server