Title: kojix's Replies | WordPress.org

---

# kojix

  [  ](https://wordpress.org/support/users/kojix/)

 *   [Profile](https://wordpress.org/support/users/kojix/)
 *   [Topics Started](https://wordpress.org/support/users/kojix/topics/)
 *   [Replies Created](https://wordpress.org/support/users/kojix/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/kojix/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/kojix/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/kojix/engagements/)
 *   [Favorites](https://wordpress.org/support/users/kojix/favorites/)

 Search replies:

## Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)

 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [XML-RPC authentication fails with LDAP plugin…](https://wordpress.org/support/topic/xml-rpc-authentication-fails-with-ldap-plugin/)
 *  Thread Starter [kojix](https://wordpress.org/support/users/kojix/)
 * (@kojix)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/xml-rpc-authentication-fails-with-ldap-plugin/#post-1908663)
 * I tried with 3.0 and it wasn’t working, but now with 3.1 it works fine!!!
 * Thank you!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How-to add a new language to spell checker?](https://wordpress.org/support/topic/how-to-add-a-new-language-to-spell-checker/)
 *  Thread Starter [kojix](https://wordpress.org/support/users/kojix/)
 * (@kojix)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/how-to-add-a-new-language-to-spell-checker/#post-1967567)
 * 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](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [XML-RPC authentication fails with LDAP plugin…](https://wordpress.org/support/topic/xml-rpc-authentication-fails-with-ldap-plugin/)
 *  Thread Starter [kojix](https://wordpress.org/support/users/kojix/)
 * (@kojix)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/xml-rpc-authentication-fails-with-ldap-plugin/#post-1908617)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Super Cache] WP Super Cache and virtual host settings](https://wordpress.org/support/topic/wp-super-cache-and-virtual-host-settings/)
 *  Thread Starter [kojix](https://wordpress.org/support/users/kojix/)
 * (@kojix)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/wp-super-cache-and-virtual-host-settings/#post-1904253)
 * Thank you 🙂
 * I had not read all the readme file yet 😛
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [302 Redirects when changing network URL](https://wordpress.org/support/topic/302-redirects-when-changing-network-url/)
 *  Thread Starter [kojix](https://wordpress.org/support/users/kojix/)
 * (@kojix)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/302-redirects-when-changing-network-url/#post-1886891)
 * Just if can be useful for someone, the modifications from [Changing the site URL](http://codex.wordpress.org/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.php`
 * Hope it helps…
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [302 Redirects when changing network URL](https://wordpress.org/support/topic/302-redirects-when-changing-network-url/)
 *  Thread Starter [kojix](https://wordpress.org/support/users/kojix/)
 * (@kojix)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/302-redirects-when-changing-network-url/#post-1886867)
 * Uou, 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 :S
 * Thanks for the info, I proceed to the change…
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Import not showing for network users…](https://wordpress.org/support/topic/import-not-showing-for-network-users/)
 *  Thread Starter [kojix](https://wordpress.org/support/users/kojix/)
 * (@kojix)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/import-not-showing-for-network-users/#post-1870193)
 * 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](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Changing user roles for all blogs](https://wordpress.org/support/topic/changing-user-roles-for-all-blogs/)
 *  [kojix](https://wordpress.org/support/users/kojix/)
 * (@kojix)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/changing-user-roles-for-all-blogs/#post-1782198)
 * The MEMBERS plugin permits you to change the permissions for te administrator
   role (not the superadministrator), it seems to work…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Diamond MultiSite Widgets] [Plugin: Diamond MultiSite Widgets] Recent Posts](https://wordpress.org/support/topic/plugin-diamond-multisite-widgets-recent-posts/)
 *  [kojix](https://wordpress.org/support/users/kojix/)
 * (@kojix)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-diamond-multisite-widgets-recent-posts/#post-1736863)
 * Nop 🙁
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Diamond MultiSite Widgets] [Plugin: Diamond MultiSite Widgets] Recent Posts](https://wordpress.org/support/topic/plugin-diamond-multisite-widgets-recent-posts/)
 *  [kojix](https://wordpress.org/support/users/kojix/)
 * (@kojix)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-diamond-multisite-widgets-recent-posts/#post-1736855)
 * Same 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/Y
 * At this time I have 3 weblogs, and the system is running into our intranet ( 
   [http://aaa.name.intranet](http://aaa.name.intranet) )

Viewing 10 replies - 1 through 10 (of 10 total)