Backwards engineering MySQL table (Wordpress)
I found a Wordpress plugin called Extra Comment Fields that should work, but I'm having trouble with the database! Extra fields are not stored anywhere!
Table plugin uses (and should create) is called wp_comments_extra, but this table is nowhere to be found. Is there any way to manually crate correct table by backwards- engineering plugin's .php file?
Solutions
You should never have to do that. In fact it would be a really bad idea to. Usually modifying plugins can cause a lot of problems if you don't know what you are doing. What are you trying to do? The table should be
created automatically
when you activate the plugin.
What makes you think that is the table that would be created, anyways? It could use Wordpress built in meta tables, rather than it's own. Not every plugin creates a table named after itself.
And besides, that plugin hasn't been worked on since 2008. It could be incredibly out of date. If I were you I would look for a different plugin.
Similar questions
How to transfer wordpress mysql md5 user passwords field into another mysql table
I have a WP website and another website with similar service. I want to duplicate db user password and email fields into new mysql database. $A$B6NS8Cv837YVS1c/JKLE1 - WP password (example) 83703ccdb3cb2dad97f76f986400b43f87b989ce - Another website MD5 password (example) And the question is how I can transfer WP user's passwords to a new mysql tabl...
Displaying MySQL Query Results in a Table (Custom Wordpress Table)?
I have created a Wordpress plugin for my employer's site and am testing it on a local server Wordpress installation while developing it. I know that the plugin has created a MySQL custom table in the Wordpress database and populated it with records. But I want to show the records of the custom table on the admin panel in the backend of the Wordpres...
Get data from WordPress MySQL user_meta table and my custom table
I have a custom table "orders" in which I save orders data. In this way, I get data from it. I want to link my request with user_meta table so that I would get orders from those users whose profile has a specific delivery method as suer meta "shippment_method". I tried this, but this request overloads my site
MySQL 3 table search with one table not directly related
I have 3 tables : If you are not familiar with WordPress, you can see the structure of both tables at http://codex.wordpress.org/images/9/9e/WP3.0-ERD.png The structure of my custom table wp_friends is as follows: The uid column is corresponds to the ID column in the wp_users table - this is how I determine which record corresponds to which user. W...
Also ask