4

I have packaged a extension when i try to install it form connect manager on my localhost... i am getting this error

CONNECT ERROR: The 'community' channel is not installed. Please use the MAGE shell script to install the 'community' channel. 

I have read some where that The official solution to this is to run the Magento setup-command over SSH:

chmod 755 mage
./mage mage-setup

But i am confused how i use SSH on localhost on windows platform

Please Suggest whats the solution for this Magento connect error

Thanks !!

Pankaj Pareek
  • 3,806
  • 2
  • 31
  • 42

4 Answers4

2

Right command is (note the final dot)

./mage mage-setup .
WonderLand
  • 5,494
  • 7
  • 57
  • 76
  • Does not work: Running initial setup... Success Success Error: channel-add: Channel 'community' already exist! – Tim Wachter Jan 15 '14 at 14:09
  • it meas `'community' already exist!` so you don't need to do it. Is it your error the same in the above question: `CONNECT ERROR: The 'community' channel is not installed. ... ` ? If no, please open another question – WonderLand Jan 17 '14 at 08:37
  • You are right, I screwed up. In my extension config I set the entire URL as the channel, not just "community" – Tim Wachter Jan 17 '14 at 09:15
1

Just save the settings in Magento Connect manager (see /downloader/ route in your Magento instance - http://yoursite.com/downloader/). Works for me on version 1.5.1.0.

j0k
  • 22,600
  • 28
  • 79
  • 90
F. Lancer
  • 11
  • 1
  • Doesn't work for me so the 'just save the settings' should be removed as a solution. I would say something like 'For me, doing this and that worked' – tommyalvarez Apr 29 '19 at 23:24
0

Note:

Please check if when creating the package extension file what value you entered in channel column under Package Info Section.

Solution: The channel value must be community.

You can check this value in var/connect/your_package.tgz/package.xmlfile.

This should look like:

<channel>community</channel>

Thanks

Leonardo Alves Machado
  • 2,747
  • 10
  • 38
  • 53
Kulvinder
  • 1
  • 2
0

http://www.chilipepperdesign.com/2011/05/15/magento-15-ee-110-windows-command-line-batch-update-script-magebat

Has a batch file that may offer some help.

I would recommend you look into Virtualization with a Linux installation as Magento is really geared more for Linux environments than WAMP stacks.

B00MER
  • 5,471
  • 1
  • 24
  • 41