0

Database: radon Table structure for table #__acymailing_config

DROP TABLE IF EXISTS `#__acymailing_config`;
CREATE TABLE `#__acymailing_config` (
  `namekey` varchar(200) NOT NULL,
  `value` text
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

Dumping data for table #__acymailing_config

emmanuel
  • 9,607
  • 10
  • 25
  • 38

1 Answers1

0

You can't create a table name like #__acymailing_config. Just put your prefix instead of #__

cheers and have fun!

  • Thanks for reply. Unfortunately meanwhile I gave up and used other template which is working fine. The table with same name is also used. – Miro Jurkovic Jul 21 '15 at 12:59
  • Yes joomla knows the prefix and replaces the #__ .i thought you want to generate the table manually and that wouldn't work :) –  Jul 21 '15 at 18:09