Distributing a plugin
From e107 Wiki
e107 Wiki: English | Русский | Deutsch | Français | Magyar | Português | Български | Česky | Nederlands | Ελληνικά | Italiano | Norske | Polska | Slovenščina | Español | Svenska | Translate: Wiki | Page
But please make an install test before you distribute your zipped file to check those points that are common problems encountered in distributed plugins : Is your zipped file saved in the right folder distributionThis is the right distribution :
Many plugins are saved this way which is not correct :
Are you able to create your mySQL tables using the e107 plugins extensions ?Try to install your plugin and check if the tables have been succesfully created. A common issue to that is that you need to separate the creation of the tables/fields and the addition of content in the fields. You'll find in the file plugin.php that the variables $eplug_table_names and $eplug_tables are arrays. You just need to put the command CREATE TABLE separately then the INSERT INTO fields. | |||||||

