kojix
Forum Replies Created
-
Forum: Networking WordPress
In reply to: XML-RPC authentication fails with LDAP plugin…I tried with 3.0 and it wasn’t working, but now with 3.1 it works fine!!!
Thank you!
Forum: Fixing WordPress
In reply to: How-to add a new language to spell checker?Yes, I took a look there before posting, but I’haven’t been able to find nothing, and the question could be useful too for any other language, so I think here is a good place to ask 🙂
Forum: Networking WordPress
In reply to: XML-RPC authentication fails with LDAP plugin…No answers?
Any clue on what could be wrong?I’ve tried to set a password on the database for the test user (by default the plugin set a random one), and then I can log in…
Thanks in advance…
Forum: Plugins
In reply to: [WP Super Cache] WP Super Cache and virtual host settingsThank you 🙂
I had not read all the readme file yet 😛
Forum: Networking WordPress
In reply to: 302 Redirects when changing network URLJust if can be useful for someone, the modifications from Changing the site URL seems to be a bit out of date…
UPDATE wp_site set domain='newdomain.cat' where id=1; UPDATE wp_options set option_value=REPLACE (option_value,'olddomain.cat','newdomain.cat') where option_name='home'; UPDATE wp_options set option_value=REPLACE (option_value,'olddomain.cat','newdomain.cat') where option_name='siteurl'; UPDATE wp_blogs set domain='newdomain.cat' where domain='olddomain.cat'; UPDATE wp_posts set guid=REPLACE (guid,'olddomain.cat','newdomain.cat'); update wp_sitemeta set meta_value='http://newdomain.cat' where meta_key='siteurl';With this you can see where is the old domain in wp_options…
SELECT option_name from wp_options where option_value like('%olddpmain.cat%');And then you can change the different options with:
UPDATE wp_options set option_value=REPLACE (option_value,'olddomain.cat','newdomain.cat') where option_name='xxxx';And the same for the path (if changed)
select * from wp_options where option_value like ('%/your/old/path%');And change it with
UPDATE wp_options set option_value=REPLACE (option_value,'/your/old/path','/your/new/path') where option_name='xxx';If you have a blog network, you’ll have to do this for each blog tables!! (luckily i was trespassing our test site to production, and we only had 2 fixed blogs…)
I also made a search (grep) in the WP directory, themes and plugins, looking for the old path and domain, and changing if some appearance.
For example, i did some changes in (if you have some cache plugin):
wp-content/advanced-cache.phpHope it helps…
Forum: Networking WordPress
In reply to: 302 Redirects when changing network URLUou, that’s bad news…
Shouldn’t this be a global parameter (wp-config)?
If some day we have to change the URL for all our weblogs network this is going to be a nightmare :SThanks for the info, I proceed to the change…
Forum: Networking WordPress
In reply to: Import not showing for network users…There’s an import plugin?
The feature is working for the superadministrator without plugins…I’m going to find it and try. Thanks
Forum: Networking WordPress
In reply to: Changing user roles for all blogsThe MEMBERS plugin permits you to change the permissions for te administrator role (not the superadministrator), it seems to work…
Forum: Plugins
In reply to: [Diamond MultiSite Widgets] [Plugin: Diamond MultiSite Widgets] Recent PostsNop 🙁
Forum: Plugins
In reply to: [Diamond MultiSite Widgets] [Plugin: Diamond MultiSite Widgets] Recent PostsSame problem here, the blog list is ok, but not the recent posts…
Using WP 3.0.1, the settings for the recent posts are:
Widget Title: Darrers posts
Cache Expire Time (sec): 9000
Posts count: 2
None selected on white or blacklist
Format string: {title}-{blog}
Nothing in avatar related
Format string: d/m/YAt this time I have 3 weblogs, and the system is running into our intranet ( http://aaa.name.intranet )