• 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!

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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:
    https://hurring.com/code/python/serialize/

    Thread Starter mdevera

    (@mdevera)

    Oh, all I want was the table that appears on the link you provide me about the format of the serialize! Thanks! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[DataBase] active_plugins option row’ is closed to new replies.