I have installed the module and set the permissions (there was an administer permission and an edit permission) to administrator and have set the defaults. They show up fine on my site.
I can't update any of the values for a specific node. I go into the edit window and see all of the OPEN GRAPH META TAGS fields. I can add a description and select the image to use, but when I hit save, nothing is saved. Other edits to that page are saved. When I click Edit again, all the fields are blank.
Comments
Comment #1
damontgomery commentedI think I have found the problem. When I installed the module, it never ran the installation file and I couldn't get it to re-run that file as much as I tried.
I manually created the table in MySQL by looking through the module files. The table I created is copied below,
CREATE TABLE IF NOT EXISTS `opengraph_meta` (
`nid` int(11) NOT NULL,
`title` varchar(255) NOT NULL,
`description` longtext NOT NULL,
`image` varchar(255) NOT NULL,
`type` varchar(255) NOT NULL,
`optional` text,
PRIMARY KEY (`nid`)
)
Comment #2
hiddentao commentedSounds like a one-off issue. Closing.