How to fix broken upgrade to 3.1
There is no reference to ‘classes.php’ anywhere in the WP codebase, either in the 3.1 branch or in trunk. You probably have a modified version. Do a ‘svn stat’ and then a ‘svn diff’.
There is no reference to ‘classes.php’ anywhere in the WP codebase, either in the 3.1 branch or in trunk. You probably have a modified version. Do a ‘svn stat’ and then a ‘svn diff’.
Have a look at this older question: How to: Easily Move a WordPress Install from Development to Production?. It covers migration and deployment of WP installations. For your more immediate issue, do backups of your database. Use a backup plugin (WP-DB-Backup is what I use, find it on the WP plugins repository) to handle this … Read more
a simple way around this is to update the plugins by SVN from the plugin repository.
Dunc, glad you asked about this before it was too late for you. You have heard the right words. You are right, unfortunately the articles tutorials are not very much newbie friendly. Frist let me try to clear some terminology for you. The thing you need to manage your code and keep track of all … Read more
According the the Gruntfile.js in core, the minifier is grunt-contrib-cssmin – https://www.npmjs.com/package/grunt-contrib-cssmin
Externals, definitely. Set up your own SVN repo, then make WP as an external in the repo. I put it into a /wp directory. You can access the WP SVN as an external here: http://core.svn.wordpress.org/ I tend to use trunk. You can use a branch, if you really, really want. Branches get auto updated with … Read more
Maybe the svn switch — relocate repository option can help you here: svn switch –relocate oldURL newURL . ( http://svnbook.red-bean.com/en/1.1/re27.html ) But… a lot more options here: https://stackoverflow.com/questions/580443/svn-one-working-copy-two-repositories
I run a WordPress checkout of trunk, a branch, or a tag. This way I can switch WordPress versions easily: svn sw http://svn.automattic.com/wordpress/trunk svn sw http://svn.automattic.com/wordpress/tags/3.1 In wp-content/plugins I have a trunk checkout for each of my plugins: cd wp-content/plugins svn co http://plugins.svn.wordpress.org/stats/trunk/ stats I do my work on the stats plugin (updating the changelog … Read more
Simply stop running svn commands, and/or delete all the folders named “.svn” in your WordPress folder and all child folders, which removes the Subversion metadata. There is no difference between the WordPress 3.0.1 release obtained using Subversion or as a tarball from the WP downloads page, save for the .svn folders in the former. WordPress … Read more
I use Git for all my projects since it lets me work offline and that happens fairly often for me. Git can interface with SVN if you’d still like to use Git then push your plugins to WordPress.org. http://www.nkuttler.de/post/using-git-for-wordpress-development/ http://hakre.wordpress.com/2010/09/28/git-rocks/