Question

I want integrate phpList for my website. Currently i am in development process.

I created database then i created table with this SQL(i m nt sure table structure is right or not).

CREATE TABLE `phplist_subscribepage` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `email` varchar(255) NOT NULL DEFAULT '',
  `name` varchar(100) DEFAULT NULL,
  `data` text,
  PRIMARY KEY (`id`),
  UNIQUE KEY `email` (`email`)
)

After doing this i am getting this message when i am trying to run index.php

Database error 1054 while doing query Unknown column 'active' in 'where clause'
Database error 1054 while doing query Unknown column 'active' in 'where clause'

I am totally new to phpList. i couldn't figure out what could be the prblm.

Any help would be appreciated.

Was it helpful?

Solution

May be i did something wrong in previous installation. when i re-installed it, it started working.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top