Hi all,
where can I find information on how is organized the info in the active_plugins row on the wp_options table?
Browsing the codex I'm unable to find it.
Thanks!
Hi all,
where can I find information on how is organized the info in the active_plugins row on the wp_options table?
Browsing the codex I'm unable to find it.
Thanks!
I believe it is a serialized array of the names of the actual plugin php files.
This is what the actual data looks like if you use phpMyAdmin to look at the active_plugins row in the wp-options table. The example shows two plugins activated, Hello and WP DB Backup:
a:2:{i:0;s:9:"hello.php";i:1;s:16:"wp-db-backup.php";}
A good example (even though it refers to Python) is here:
http://hurring.com/code/python/serialize/
Oh, all I want was the table that appears on the link you provide me about the format of the serialize! Thanks! :)
This topic has been closed to new replies.