How to get the SQL of the changes made to the database from an update or upgrade?

Log queries: You could collect all the queries during core/plugin/theme upgrades to see what happens. Just follow these two steps: 1) You should add: define( ‘SAVEQUERIES’, TRUE ); to your wp-config.php file to collect all queries during a page load into the $wpdb->queries array. Just remember to remove it afterwards. 2) Then you could log … Read more

Recreating a local repository from a currently existing wordpress.org repo..which I own

Use this URL format for checkout (if using TortoiseSVN, just right click and do checkout from Explorer): http://plugins.svn.wordpress.org/your-plugin-name You will need to use your username/password for WordPress (the account used to publish the plugin) to do any commits. Command line instructions are available direct from WordPress here: https://wordpress.org/plugins/about/svn/

Missing Logo in Repository

Comparing how your plugin is diplayed with your neighbour on the list here https://wordpress.org/plugins/search.php?q=custom+fields+taxonomies+light, they have 2 images on the CSS inline script, and yours only show one, the other background image url being empty. Yours: background-image: url(//ps.w.org/filter-custom-fields-taxonomies-light/assets/icon-256×256.png?rev=1110269 background-image: url() Theirs: background-image: url(//ps.w.org/advanced-custom-fields/assets/icon-128×128.png?rev=1082746 background-image: url(//ps.w.org/advanced-custom-fields/assets/icon-256×256.png?rev=1082746 If you are sure you uploaded that 128px image, in … Read more