PDA


View Full Version : added page template does not show in admincp, I need to delete it...but how?


tercede
02-15-2006, 03:21 PM
I need to delete a page that disappeared from the admincp->vBa Cmps->Edit Pages list

How do I go about doing that?;)

Brian
02-15-2006, 03:52 PM
How did it "disappear"? If it's not showing there then it should already be deleted. If you're sure it's still in the database though you could always delete it with phpMyAdmin.

tercede
02-16-2006, 11:49 PM
I don't know how it disappeared to be quite frank. I do however, know for sure that I can't make a new page with the same Page Identifier , so it must still be in the database. I could just not use that identifier, but the problem would still remain with that id.

The page that I am trying to remove has a page identifier called: articlesandresources

How do I do it (delete the page) with phpMyAdmin? I'm not too good with databases and you could probably call me a newbie in regards to this. Thanks, and sorry for the duplicate threads, I was up late or something when that happened =-)

Brian
02-18-2006, 09:11 PM
Just run this query through your admin cp or phpMyAdmin.

DELETE FROM adv_pages WHERE name = 'articlesandresources';

dmelton
07-18-2007, 04:12 PM
Brian, your old answers are being all sorts of help to me today. Thanks!