Hi,
Here is the use case for the above query. In our Wiki, we have different spaces and a lot of pages within each space. However, we have used the same link, for example 'contact@adsupport.com' to inform someone to contact our support team to get more information. Now, we want to update all such instances, such that when a user clicks on contact@adsupport.com, he is taken to a different link. For example, http://www.google.com. Is it possible? Let me know if you need some more information.
Thanks!!
You can use the Search and Replace Plugin. https://marketplace.atlassian.com/plugins/at.rumpelcoder.confluence.search-and-replace
Edit: I think you could use @Bob Swift [Bob Swift Atlassian Add-ons] 's CLI for this. Have a look here: https://bobswift.atlassian.net/wiki/display/ACLI/How+to+use+findReplace
Sry, just seen that you are on cloud version. Not sure how to do it there.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Specifically, you will need to use modifyPage (https://bobswift.atlassian.net/wiki/display/CSOAP/Reference#Reference-modifyPage). And yes, it will work with Confluence Cloud.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
All of the Command Line Interface (CLI) add-ons (for JIRA, Confluence, Stash, FishEye, Crucible, etc) run on both Server and Cloud instances. ;)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Create the shared page in one place. That can be in one of the affected Spaces or in a common space ( maybe call it "Shared Pages" ).
Insert that link in your existing Spaces anywhere its needed.
When you make changes to the "shared space's" page the changes will show up everywhere.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
you can update the link by using the database query.
UPDATE BODYCONTENT SET BODY = replace(BODY, 'http://old_link', 'http://new_link)
Regards,
Siddhesh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.