Well, the problem is that my joomla module is not installing correctly. The original contents of the autobase.xml file are based on the Joomla 2.5 documentation for HelloWorld . I have two directories in com_autobase.zip called admin and site . For an unknown reason, files from the site are not transferred to Joomla / Components / Com_autobase . But instead, files from admin are transferred to both Components / com_autobase and Administrator / Components / com_autobase
.admin folder 'com_autobase.zip'

(source: iforce.co.nz )
site folder 'com_autobase.zip'

(source: iforce.co.nz )
autobase.xml contents from com_autobase and com_autobase / admin.
<?xml version="1.0" encoding="utf-8"?> <extension type="component" version="1.6.0" method="upgrade"> <name>AutoBase</name> <creationDate>July 2012</creationDate> <authorUrl>http://www.triotech.co.nz</authorUrl> <copyright>Copyright Info</copyright> <license>License Info</license> <version>0.0.24</version> <description>This application has been built using PHP in house at Trio Technology Ltd as a third party application for the AutoBase Car Yard</description> <install> <sql> <file driver="mysql" charset="utf8">sql/install.mysql.utf8.sql</file> </sql> </install> <uninstall> <sql> <file driver="mysql" charset="utf8">sql/uninstall.mysql.utf8.sql</file> </sql> </uninstall> <update> <schemas> <schemapath type="mysql">sql/updates/mysql</schemapath> </schemas> </update> <files folder="site"> <filename>index.html</filename> <filename>autobase.php</filename> <filename>controller.php</filename> <filename>definitions.php</filename> <filename>imageController.php</filename> <folder>views</folder> <folder>js</folder> <folder>css</folder> <folder>helpers</folder> <folder>models</folder> <folder>cache</folder> <folder>images</folder> </files> <administration> <menu>AutoBase!</menu> <files folder="admin"> <filename>index.html</filename> <filename>autobase.php</filename> <filename>controller.php</filename> <folder>sql</folder> <folder>tables</folder> <folder>models</folder> <folder>views</folder> <folder>helpers</folder> </files> </administration> </extension>
'com_autobase.zip' Preview of the INSTALLER package

(source: iforce.co.nz )
But when I install my packaged zip file, I get this error .. "The file does not exist: admin / definitions.php " (which is to be expected, since this file is in the site directory and not the administrator directory ).

(source: iforce.co.nz )
This tells me that he is trying to find files / folders that are in the site directory, but in the admin directory. How can I get extension files from the site and from the administrator to transfer to the right place? on CMS Joomla.
site folder 'com_autobase.zip' (preview from windows, as you see that definitions.php is there).

(source: iforce.co.nz )
DOWNLOAD the installer here
source share