All i can tell you is the section of the code you posted is fine. Problem must be elsewhere.
All i can tell you is the section of the code you posted is fine. Problem must be elsewhere. https://www.deanbassett.com |
I don't know how I fixed it but I was echoing out stuff in the bx installer class and bam just started working... Maybe some funky chr got in there or something when I was uploading the installation... Thanks everyone for your help. All i can tell you is the section of the code you posted is fine. Problem must be elsewhere. |
Well the information in there was misleading I removed my comments as to not confuse other users. Ok, what happened to the first post? Did you delete it? That makes it very hard on anyone else that may have been able to use the info .... |
Now I'm really cornfused .... http://towtalk.net ... Hosted by Zarconia.net! |
OP:Hello, I'm running through setting up the Bloggie module to get a grasp on how to create modules for Dolphin 7 and have hit a issue here. It seem that the install.sql and the uninstall.sql files are not being fired when I install and uninstall the module from the admin->tools->module section. I got the module to work after I manually ran the install script in phpMyAdmin. So then I was like ok well let see if I uninstall the script and it removes the setting's and sure enough it did not remove the module setting's. I have all the caching options off and below is the modifications to the module install config.php script. If anyone could point me in the right direction that would be great and I look forward to using this product. /** * Installation instructions, for complete list refer to BxDolInstaller Dolphin class */ 'install' => array( 'update_languages' => 1, // add languages 'execute_sql' => 1, // Run install sql files - TJV 'recompile_permalinks' => 1, ), /** * Uninstallation instructions, for complete list refer to BxDolInstaller Dolphin class */ 'uninstall' => array ( 'update_languages' => 1, // remove added languages 'execute_sql' => 1, // Run uninstall sql files - TJV 'recompile_permalinks' => 1, ), My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
Thanks, for the resurrection :P OP:Hello, I'm running through setting up the Bloggie module to get a grasp on how to create modules for Dolphin 7 and have hit a issue here. It seem that the install.sql and the uninstall.sql files are not being fired when I install and uninstall the module from the admin->tools->module section. I got the module to work after I manually ran the install script in phpMyAdmin. So then I was like ok well let see if I uninstall the script and it removes the setting's and sure enough it did not remove the module setting's. I have all the caching options off and below is the modifications to the module install config.php script. If anyone could point me in the right direction that would be great and I look forward to using this product. /** * Installation instructions, for complete list refer to BxDolInstaller Dolphin class */ 'install' => array( 'update_languages' => 1, // add languages 'execute_sql' => 1, // Run install sql files - TJV 'recompile_permalinks' => 1, ), /** * Uninstallation instructions, for complete list refer to BxDolInstaller Dolphin class */ 'uninstall' => array ( 'update_languages' => 1, // remove added languages 'execute_sql' => 1, // Run uninstall sql files - TJV 'recompile_permalinks' => 1, ), |