How to create WordPress plugin to Compile & FLASH LCP13xx through WEB IDE

On this page you will find some notes about how I created LPC13xx WEB IDE plugin. In case you would like to improve this plugin or create your own, you will find this page useful.

Before you start, you may want to have a look at:
Pictures: This is how the plugin looks

Content

Create the essentials of your new plugin

addgroup --system apache usermod -a -G apache daemon chown -R root:apache /usr/local/apache2/htdocs/wp-content/ chmod -R 764 /usr/local/apache2/htdocs/wp-content/ for directories: find /usr/local/apache2/htdocs/wp-content/ -type d -exec chmod 755 {} \; for files: find /usr/local/apache2/htdocs/wp-content/ -type f -exec chmod 644 {} \;