Op donderdag 9 maart 2006 00:17, schreef Carl Parrish:
How can I tell if a node was submitted as a page or as a story.
You can only do so from the admin part. Also, most often you will have different taxonomies, or locations (ie: stories all go to the frontpage, pages do not). If you cannot make the difference out, then you probably need to re-thing if you need both types at all.
However, visit: administer >> content to see a lit, with their types.
And is there anyway to change from one to the other?
No. Not without poking in the database. UPDATE node SET type = 'story' WHERE type = 'page';
will change all your pages into stories. But NOTE. DO NOT fiddle around in your database without making backups AND knowing very well what you are doing!