"dgenerationb4u" wrote:
i also tried archiving using the terminal zip -9 -r channel.zip channel...
If "channel" is the name of your channel directory, that command will produce a zip file with "channel" as the contents of the root. That is not what you want -- as Chris said, you want the channel directory to BE the root, not to be contained in the root. You should instead do something like
cd channel
zip -9 -r ../channel.zip .
However even better would be to use the Makefile, which packages the channel correctly so you don't have to worry about these details.
You can check your package by typing "unzip -l channel.zip". You should see files like "source/xxx.brs", not "channel/source/xxx.brs".
--Mark