mikepurvis
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Mass Category editI’ve recently released a plugin that may be of use to you:
Forum: Alpha/Beta/RC
In reply to: WP 2.0 – Features?Gappiah: It’s quite straightforward to do this with a symlink. You put your WP files in a master directory somewhere, and then in each wordpress subdomain, you put a symlink called ‘wp’ that points to this master directory. In the “config.php” of the master directory, you just put:
<?php include($_SERVER[‘DOCUMENT_ROOT’] . ‘/config.php’); ?>
Then it’ll grab the custom database credentials for each individual site.
The biggest drawback is that the uploads directory must be shared among installations. This is because presently WO doesn’t allow you to specify the “actual” and “apparent” upload directories separately from each other. Nor does it let you specify an absolute path… it has to be relative to the wordpress root. Both of these restrictions are silly, of course, and hopefully future versions will remove them.
Forum: Requests and Feedback
In reply to: WP 2.0 Upload-by-XMLRPCOn WP 1.5.1, the newMediaObject call goes through okay, and it saves a file on the other end, but it doesn’t seem to be base64-decoding it.
This has been corrected, it was a problem in the client. Uploads now work correctly with WP 1.5.x, and also with Typo, but WP 2.0 is broken.
Is there any possibility of getting back WP-1.5-like upload behaviour in 2.0? Or is every upload going to have to be associated with a post?