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

StackOverflow https://stackoverflow.com/questions/19396787

  •  30-06-2022
  •  | 
  •  

Pregunta

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.

¿Fue útil?

Solución

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top