Wiki Listing Links
-
I have made a WordPress server which I had created using localhost as WordPress Address and Site Address. I’ve been using YadaWiki on it and has been working great.
To make it accessible on the rest of the network I’ve changed the settings to use the server name instead of localhost, this has ruined the Yada Wiki Listings for outputting Wiki Categories, it lists the category names correctly however the links now look like this:
https://servername/wordpress/overview/Instead of this:
https://servername/wordpress/wiki/overview/Previous and next pages work fine and so does Yada Wiki Listings for Outputting Index.
This is the SQL updates I ran after changing the options:
UPDATE wp_options SET option_value = REPLACE(option_value, “localhost/wordpress”, “SERVERNAME/wordpress”) WHERE option_value LIKE ‘%localhost/wordpress%’;
UPDATE wp_posts SET post_content = REPLACE(post_content, “localhost/wordpress”, “SERVERNAME/wordpress”) WHERE post_content LIKE ‘%localhost/wordpress%’;
UPDATE wp_posts SET guid = REPLACE(guid, “localhost/wordpress”, “SERVERNAME/wordpress”) WHERE guid LIKE ‘%localhost/wordpress%’;
UPDATE wp_postmeta SET meta_value = REPLACE(meta_value, “localhost/wordpress”, “SERVERNAME/wordpress”) WHERE meta_value LIKE ‘%localhost/wordpress%’;I hope this makes sense.
Any ideas what’s going on?
- The topic ‘Wiki Listing Links’ is closed to new replies.