question
dict
answers
listlengths
1
27
url
stringlengths
66
601
tags
listlengths
1
15
{ "author": "Miikka M?kel?", "title": "Bitbucket search slow these days?", "body": "Hello,\n\nSearching commits and switching through branches in the web UI seems to have gotten quite slow and janky this year.\n\nAnyone else experiencing this similar feeling? ?\n" }
[ { "author": "Theodora Boudale", "body": "Hi Miikka and welcome to the community!\n\nDoes this concern Bitbucket Cloud or Bitbucket Data Center?\n\nI see that there is a Bitbucket Cloud account with your email address in our system, but it doesn't have access to any repositories.\n\nIf you are unsure which one you use, the URL of a Bitbucket Cloud repo on your browser starts with <https://bitbucket.org/>, while Bitbucket Data Center repos use a different, custom URL.\n\nKind regards, \nTheodora\n", "comments": null } ]
https://community.atlassian.com/t5/Bitbucket-questions/Bitbucket-search-slow-these-days/qaq-p/2801376
[ "bitbucket-unknown-hosting-type", "unknown-hosting-type" ]
{ "author": "Chetan Patidar", "title": "I m trying to store the bitbucket artifact in a step but error throws Searching for files not match", "body": "- step: \\&DEPLOYMENT \nname: Adhoc-UAT-Release \nruns-on: \n- 'self.hosted' \n- 'macos' \n- 'oneapp.deployer' \nscript: \n- cd \\~ \\&\\& cd Desktop/c_p/oa/scripts \\&\\& sh goa_delivery.sh --bn $BITBUCKET_BRANCH --af uat --bt release --rt publish --ec GOOGLE_MAPS_API_KEY=$GOOGLE_MAPS_API_KEY,PLOATLINE_API_KEYS_PROD=$PLOATLINE_API_KEYS_PROD --pr $BITBUCKET_PR_ID \n- ls -lthra $BITBUCKET_CLONE_DIR \nartifacts: \n- build/app/outputs/bundle/uatRelease/app-uat-release.aab \n# - find . -type f -name \"\\*.aab\" -print \n- \\~/Desktop/temp-chetan/oa_coreapp_cd/\\*\\*/android_build/oa/build/app/outputs/bundle/uatRelease\n" }
[ { "author": "Chetan Patidar", "body": "Hi [@Ben](/t5/user/viewprofilepage/user-id/4537226) , \n\nthanks for support . \n\ngot the issue . i was doing something wrong related to bitbucket directory path\n", "comments": null }, { "author": "Ben", "body": "Hi Chetan,\n\nWe will need to take a look at your YAML, build logs and overall build environment to troubleshoot this further.\n\nTo do so, our support team needs a formal support ticket to be raised so that our system will allow us to grant the necessary access. You are a member of a Premium workspace, and therefore you are entitled to Premium support - please raise a support ticket using the Premium workspace URL with **Bitbucket Cloud** as the product and **Technical Issues**as the request type:\n\n* <https://support.atlassian.com/contact/>\n\nIf you have issues raising a ticket, please let me know your timezone so I may raise this on your behalf with a team located in your area.\n\nCheers!\n\n- Ben (Bitbucket Cloud Support)\n", "comments": null } ]
https://community.atlassian.com/t5/Bitbucket-questions/I-m-trying-to-store-the-bitbucket-artifact-in-a-step-but-error/qaq-p/2801335
[ "bitbucket-cloud", "cloud" ]
{ "author": "Ashish Bilawne", "title": "How to trigger bitbucket pipeline for already available tags in repository.", "body": "We have a critical requirement to enable the triggering of Bitbucket pipelines for tags that are already present in the repository. This feature is essential because it allows us to select and deploy from a list of available tags, directly from a dropdown menu.\n\nThe primary use case for this requirement is the need to perform rollbacks to previous versions of our code. In the event that we need to revert to an earlier stable version due to unforeseen issues with the current deployment, having the ability to easily select and deploy an old tag is crucial. This capability ensures that we can quickly restore functionality and minimize downtime, maintaining the reliability and stability of our applications.\n\nBy implementing this feature, we will enhance our deployment process, making it more flexible and robust, and ensuring that we can efficiently manage both new releases and emergency rollbacks.\n" }
[ { "author": "Theodora Boudale", "body": "Hi Ashish and welcome to the community!\n\nThank you for your feedback.\n\nYou could do this in one of the following two ways:\n\n**1.** Open the **Commits** page of the repo on Bitbucket Cloud. If the tags are on a branch other than the repo's main branch, select **Show all** to see all commits. \n\nIf you then open the commit with the tag you want to deploy, you will see the option **Run pipeline** at the bottom of the right sidebar. You can use it to trigger a certain pipeline for this commit.\n\n**2.** Alternatively, from the **Pipelines** page of the repo, you can find the older build on the commit/tag that you want to deploy again. If you open the build, you will see an option to **Rerun** the build (next to the build number).\n\nDo any of these options work for you?\n\nKind regards, \nTheodora\n", "comments": null } ]
https://community.atlassian.com/t5/Bitbucket-questions/How-to-trigger-bitbucket-pipeline-for-already-available-tags-in/qaq-p/2801112
[ "bitbucket-cloud", "cloud" ]
{ "author": "Mohammad", "title": "After build flutter web successfully build/web dir is not exists", "body": "I need to upload to the server using ftp server but noting is uploaded what is the problem?\n\n**Any one can help?**\n\n**Error**\n\nmirror: Access failed: /opt/atlassian/pipelines/agent/build/dist: No such file or directory \nls: cannot access 'build/web/': No such file or directory \nScript \n\n```\n- step:\n name: Install Flutter and Set Up Environment\n script:\n # Flutter and Dart are already included in the Docker image\n - export PATH=\"$PATH:/sdks/flutter/bin\"\n # Check Flutter and Dart versions\n - flutter --version\n - dart --version\n # Run flutter doctor to check for any additional setup required\n - flutter doctor\n\n- step:\n name: Check Flutter Installation\n script:\n - flutter --version\n - echo \"Flutter is correctly installed and available.\"\n\n- step:\n name: Build Flutter Web Application\n script:\n # Set the PATH for the current session\n - export PATH=\"$PATH:/sdks/flutter/bin\"\n # Clean build directories\n - flutter clean\n # Install packages\n - GIT_SSH_COMMAND=\"ssh -i ~/.ssh/id_rsa\" flutter pub get\n # Build the Flutter web app\n - flutter build web --web-renderer canvaskit --release\n\n# Check if the build output exists\n- step:\n name: Check Build Output\n script:\n - ls -la build/web/\n\n- step:\n name: Deploy Web Application to FTP Server\n script:\n - echo \"Uploading files to FTP server....\"\n - pipe: atlassian/ftp-deploy:0.7.1\n variables:\n USER: '********'\n PASSWORD: '********'\n SERVER: '**********'\n REMOTE_PATH: '/apachewebserver8.2\\htdocs\\ibs-cab-corp'\n LOCAL_PATH: 'build/web'\n```\n\nmirror: Access failed: /opt/atlassian/pipelines/agent/build/dist: No such file or directory \nStatus: Downloaded newer image for bitbucketpipelines/ftp-deploy:0.7.1 \n61\nINFO: Starting FTP deployment to *****/***/***/****... \nmirror: Access failed: /opt/atlassian/pipelines/agent/build/build/web: No such file or directory \n? Deployment finished. \nStatus: Downloaded newer image for bitbucketpipelines/ftp-deploy:0.7.1 \nINFO: Starting FTP deployment to **REMOTE_PATH***... \n**`mirror: Access failed: /opt/atlassian/pipelines/agent/build/build/web: No such file or directory`** \n? Deployment finished. \n" }
[ { "author": "Syahrul", "body": "G'day, [@Mohammad](/t5/user/viewprofilepage/user-id/5352055)\n\nThe error indicates that the path or the directory does not exist in your build. I think the path is incorrect. You should just use the 'web' only path in this case because from the error, it looks like it tries to look for the following path:\n\n```\n/opt/atlassian/pipelines/agent/build/build/web\n```\n\nIt should be:\n\n```\n/opt/atlassian/pipelines/agent/build/web\n```\n\nSo you should change your pipe to the following:\n\n```\n script:\n - echo \"Uploading files to FTP server....\"\n - pipe: atlassian/ftp-deploy:0.7.1\n variables:\n USER: '********'\n PASSWORD: '********'\n SERVER: '**********'\n REMOTE_PATH: '/apachewebserver8.2\\htdocs\\ibs-cab-corp'\n LOCAL_PATH: 'web'\n```\n\nLet me know how it goes.\n\nRegards, \nSyahrul\n", "comments": [ { "author": "Mohammad", "body": "GM, [@Syahrul](/t5/user/viewprofilepage/user-id/744536) , Ok thx i will try it now\n" }, { "author": "Mohammad", "body": "[@Syahrul](/t5/user/viewprofilepage/user-id/744536) , Thx a lot its work.\n" }, { "author": "Mohammad", "body": "Hi [@Syahrul](/t5/user/viewprofilepage/user-id/744536) ,\n\nyou can help in this issue <https://community.atlassian.com/t5/Pipelines-questions/Issue-Missing-Files-in-Build-Output-Bitbucket-Pipelines/qaq-p/2803492>\n" } ] } ]
https://community.atlassian.com/t5/Bitbucket-questions/After-build-flutter-web-successfully-build-web-dir-is-not-exists/qaq-p/2801192
[ "bitbucket-cloud", "cloud" ]
{ "author": "Andrea Caria", "title": "Not receiving email to reset Bitbucket 2FA", "body": "Hi everyone,\n\nI cannot log into bitbucket.org as I don't have any 2FA record in my auth apps for Bitbucket, no recovery codes, and the 2FA reset email does not get through.\n\nI did not use bitbucket in the last weeks, and I did not remember to ever use 2FA auth.\n\nI have tried to:\n\n* I click the \"Forgot code\" link and I get to a page saying \"Recover your account - We will send an email to \\<my address\\> with instructions on how to recover access to your Bitbucket account...\" - I click on \"Send recovery email\"\n* I get a success page \"Recovery email has been resent. Check your inbox! Recover your account We've emailed instructions to: ...\"\n* I never receive any email. Not even after 24/48h. The email is not in spam/junk folders. I have tried multiple times in the last weeks with the same result.\n\nIs there a way to restore my account and log in bitbucket?\n\nThanks,\n\nAndrea\n" }
[ { "author": "Theodora Boudale", "body": "Hi [@Andrea Caria](/t5/user/viewprofilepage/user-id/5582106),\n\nI replied to the other post you created on Monday here:\n\n* <https://community.atlassian.com/t5/Bitbucket-questions/Re-Re-Not-receiving-email-to-reset-Bitbucket-2FA/qaq-p/2800924/comment-id/107368#M107368>\n\nYour email address was in our suppression list so the emails we were sending were dropped. I removed your email address from our suppression list on Monday.\n\nCan you please let me know if you have received the latest 2FA recovery email we sent or if you're still experiencing issues?\n\nKind regards, \nTheodora\n", "comments": null }, { "author": "vikram", "body": "Hi [@Andrea Caria](/t5/user/viewprofilepage/user-id/5582106)\n\nWelcome to Atlassian Community,\n\nIf you try multiple times then your email id will be in block list (by Atlassian Team) -- for this you have to raise a support ticket to unblock your email id.\n\nor\n\nCheck whether mail server is working correctly.\n\nor\n\nPlease go through the below community Article / Documentation.\n\n<https://community.atlassian.com/t5/Bitbucket-articles/How-to-get-support-for-Bitbucket-Cloud-invitation-and/ba-p/1932959>\n", "comments": null } ]
https://community.atlassian.com/t5/Bitbucket-questions/Not-receiving-email-to-reset-Bitbucket-2FA/qaq-p/2800910
[ "bitbucket-cloud", "cloud" ]
{ "author": "Surendhiran Balaguru", "title": "unable to featch the repo enviroment variables through the python", "body": "I am currently encountering an issue when attempting to fetch repository environment variables as part of updating their values.\n\n1. **Creation of Values**: I can successfully create environment variables using the provided UUID.\n\n2. **Fetching UUIDs**: However, I am unable to retrieve the UUID value via the API GET request. The request returns a 404 error with the following message:\n\n \"There is no API hosted at this URL.\\\\n\\\\nFor information about our APIs, please refer to the documentation at: <https://developer.atlassian.com/bitbucket/api/2/reference/>\"\n\nSince I need to update multiple values in multiple environment values based on `env_name` in the repository (there are many, so I am aiming for automation), I am facing this challenge.\n\n```\nUSERNAME = 'xxyy'\n\nPASSWORD = 'xxxxyyyyy'\n\nWORKSPACE = 'workspace'\n\nREPO_SLUG = 'repo-name'\n\nurl = \"https://api.bitbucket.org/2.0/repositories/{WORKSPACE}/{REPO_SLUG}/deployments_config/environments\"\n\n# Headers for authentication\n\nheaders = {\n\n 'Authorization': f'Bearer {PASSWORD}' \n}\n\n# Make the GET request\n\nresponse = requests.get(url, auth=(USERNAME, PASSWORD), headers=headers)\n\nif response.status_code == 200:\n\n # Parse the JSON response\n\n data = response.json()\n\n # Extract and print the repository names\n\nprint(json.dumps(json.loads(response.text), sort_keys=True, indent=4, separators=(\",\", \": \")))\n```\n" }
[ { "author": "Ian Dick", "body": "Are you trying to use this API?\n\n<https://developer.atlassian.com/cloud/bitbucket/rest/api-group-deployments/#api-repositories-workspace-repo-slug-environments-get>\n\nIf so I think you need to drop the **/deployments_config** part of the URL, it's just **/environments** at the end:\n\n```\nhttps://api.bitbucket.org/2.0/repositories/{workspace}/{repo_slug}/environments\n```\n", "comments": [ { "author": "Surendhiran Balaguru", "body": "This works great thank you :)\n" } ] } ]
https://community.atlassian.com/t5/Bitbucket-questions/unable-to-featch-the-repo-enviroment-variables-through-the/qaq-p/2801020
[ "bitbucket-cloud", "cloud", "get", "python", "uuid" ]
{ "author": "Farid Hazrati", "title": "I can't add bitbucket", "body": "I can't find Bitbucket under Products , Add ? how can I install then ?\n" }
[ { "author": "Ian Dick", "body": "![Screenshot 2024-09-03 at 9.41.43?AM.png](https://community.atlassian.com/t5/image/serverpage/image-id/345163i5A6EFD8E97A9F181/image-size/large?v=v2&px=999 \"Screenshot 2024-09-03 at 9.41.43?AM.png\") \n\nYou don't see the Bitbucket option in this menu?\n", "comments": null } ]
https://community.atlassian.com/t5/Bitbucket-questions/I-can-t-add-bitbucket/qaq-p/2800686
[ "bitbucket-cloud", "cloud" ]
{ "author": "Maheshwari Peruri", "title": "How to push jupyter notebook file to bitbucket repository", "body": "I have tried every method but couldn't be able to upload the vs code file into bitbucket repository kindly help me with this.\n" }
[ { "author": "vikram", "body": "Hi [@Maheshwari Peruri](/t5/user/viewprofilepage/user-id/5581898)\n\nWelcome to Atlassian Community.\n\nPlease go through the below documentation whether it helps or not let me know.\n\n<https://docs.qubole.com/en/latest/user-guide/notebooks-and-dashboards/notebooks/jupyter-notebooks/managing-jupy-notebook-versions/link-jupy-notebook-bitbucket.html#push-commit-bb-jupy>\n", "comments": null } ]
https://community.atlassian.com/t5/Bitbucket-questions/How-to-push-jupyter-notebook-file-to-bitbucket-repository/qaq-p/2800540
[ "bitbucket-cloud", "cloud" ]
{ "author": "Nishant Tyagi", "title": "I want to read webhook payload in my jenkins", "body": "HI all \ni have a webhook which triggers the Jenkins job once Pull request is created now on receiving end i need to read few details from that payload (PR id and source branch) and echo them in my Jenkins console\n\ni tried by creating the freestyle job which will have string parameter name payload but it when i echo it it always empty \n\nmy webhook url is\n\n<https://username:apitoken@jenkinsurl/job/jobname/buildWithParameters>\n\ni also tried with\n\n<https://username:apitoken@jenkinsurl/job/jobname/buildWithParameters?payload=>${BITBUCKET_PAYLOAD}\n\nalso with \n\n<https://username:apitoken@jenkinsurl/job/jobname/build>\n\nany suggestion \nnote i cannot use any plugin as i am using old version of jenkins\n" }
[ { "author": "Nishant Tyagi", "body": "Ok so this is how i kind of resolved it \n\n1. you have to use generic webhook plugin (<https://plugins.jenkins.io/generic-webhook-trigger>) in case you are reading payload from event except push (means if your event which trigger webhook is anything except push event it will not work) only option is to use plugin \n\n2. generic plugin config \n![Screenshot (499).png](https://community.atlassian.com/t5/image/serverpage/image-id/347495iDB891826373CF567/image-dimensions/419x262?v=v2 \"Screenshot (499).png\")\n\n3. if you event is push event then just install bitbucket plugin it will give you option to trigger job whenever changes push to bitbucket add webhook url and now create one simple job (has to be freestyle) and in scm section add your repo on which you created the webhook and in this job add option to trigger parametrized build chose option trigger predefined parameter \npayload=${BITBUCKET_PAYLOAD} \nnow in your main job create string parameter with name payload now \nwhen job one will trigger with webhook it will receive payload and then it will trigger your job (mainjob) and all value will be in string parameter i used this <https://stackoverflow.com/questions/41639641/access-bitbucket-payload-data-in-jenkins-pipeline-job>\n", "comments": null }, { "author": "Theodora Boudale", "body": "Hi and welcome to the community!\n\nI think it's best to post this question on the Jenkins forum here:\n\n<https://community.jenkins.io/>\n\nWe can offer assistance for issues or questions related to Bitbucket, but the way you read the payload after it is received from Jenkins is a Jenkins-related question.\n\nOn Bitbucket's side, you can enable logging for the webhook to check if the requests are successfully received by Jenkins. You can do this if you open the repo on Bitbucket's website, go to **Repository settings \\> Webhooks** , then select **View requests** for the Jenkins webhook you added. On the new page that opens, you can select **Enable history**.\n\nThen, perform an event that triggers the webhook, and look at the page where you enabled history. Do you see the request listed there and what is the status code of the request?\n\nIf the request shows a status 200, then it is successfully received by your server and you can reach out to the Jenkins forum for guidance on how to read the payload. If you see an error, please let me know what the error is.\n\nKind regards, \nTheodora\n", "comments": null } ]
https://community.atlassian.com/t5/Bitbucket-questions/I-want-to-read-webhook-payload-in-my-jenkins/qaq-p/2800660
[ "bitbucket-cloud", "cloud" ]
{ "author": "Prasanna Sivaramakrishnan", "title": "Bitbucket pipelines installation and deployment target via pipe to OpenShift", "body": "Hi All,\n\nI am new to bitbucket pipelines and have some foundational questions.\n\nMy understanding is that bitbucket pipelines is part of bitbucket cloud (hosted service) and can't be installed on AKS or Azure VM? It can be used to deploy to AKS via pipe.\n\nI am trying to use pipe feature in bitbucket pipelines to deploy to Azure red hat openshift -https://azure.microsoft.com/en-us/products/openshift. I don't see anything available outside the box. Is this possible? what would be a alternate way to integrate bitbucket pipelines with Azure red hat openshift\n" }
[ { "author": "Patrik S", "body": "Hello [@Prasanna Sivaramakrishnan](/t5/user/viewprofilepage/user-id/5578175) ,\n\nand welcome to the Community!\n\nYour understanding is correct. Pipelines is the bundled CI/CD solution of Bitbucket Cloud, where you can run your build in Atlassian Cloud (we manage the infrastructure for you) or use self-hosted runners (the build runs in your own infra).\n\nTo facilitate the integration with third-party tools/services, Bitbucket Cloud offers a series of pipes that can facilitate your workflow, such as the deployment. You can find a list of the available pipes in the following link :\n\n* [Pipelines - Pipes](https://bitbucket.org/product/features/pipelines/integrations)\n\nWhile there's not a specific pipe for Azure OpenShift deployment at the moment, you may find other pipes that are applicable for your use case, such as the [atlassian/kubectl-run](https://bitbucket.org/product/features/pipelines/integrations?search=kube&p=atlassian/kubectl-run) that is a generic (not service-specific) pipe to deploy to Kubernetes environments.\n\nAlso, Atlassian pipes are open-source, so if you need a custom approach to pipes you can fork an existing pipe to make adjustments or [create your own](https://confluence.atlassian.com/bitbucket/how-to-write-a-pipe-for-bitbucket-pipelines-966051288.html) pipe.\n\nI hope that helps! Let us know in case you have any questions.\n\nThank you, [@Prasanna Sivaramakrishnan](/t5/user/viewprofilepage/user-id/5578175) !\n\nPatrik S\n", "comments": null } ]
https://community.atlassian.com/t5/Bitbucket-questions/Bitbucket-pipelines-installation-and-deployment-target-via-pipe/qaq-p/2800284
[ "aks", "azure", "bitbucket-cloud", "bitbucket-pipelines", "cloud", "kubernetes", "openshift", "pipe" ]
{ "author": "Adrian Lapierre", "title": "How to make custom pipe works", "body": "I have simple custom pipe:\n\n<https://bitbucket.org/itrust-dev/call-webhook-pipe/>\n\nImage is build and pushed to DockerHub and it is public available (\\`docker pull lapierre/call-webhook:1.0.0\\` works) .\n\nMy pipeline looks like this:\n\n```\n- step:\n name: Deploy Dev\n trigger: 'manual'\n deployment: Test\n clone:\n enabled: false\n script:\n - VERSION=$(cat version.env)\n - echo $VERSION\n - FULL_URL=\"${WEB_HOOK_URL}?SERVICE_VERSION=${VERSION}\"\n - pipe: lapierre/call-webhook:1.0.0\n variables:\n ITRUST_WEBHOOK_URL: ${FULL_URL}\n```\n\nI got error from BitBucket: Configuration error It looks like you tried to use a pipe in your bitbucket-pipelines.yml that doesn't exist. Check the name of the pipe and try again.\n\nWhat I'm doing wrong?\n" }
[ { "author": "Adrian Lapierre", "body": "There are 2 ways to refer to this pipe in other repositories. In your bitbucket-pipelines.yml file you can:\n\n1. refer to the docker image directly \n pipe: \\`docker://acct/repo:tag\\` (where acct/repo is the Dockerhub account and repo) Note: You must always specify \\`docker://\\` when referencing public Docker images.\n2. refer to a pipe repo hosted on Bitbucket \n pipe: \\`\\<BB_acct\\>/repo:tag\\` (where BB_acct/repo is your Bitbucket account and pipe repo) \n This version of the reference looks in your pipe.yml file to find out where to get the image from.\n", "comments": null } ]
https://community.atlassian.com/t5/Bitbucket-questions/How-to-make-custom-pipe-works/qaq-p/2800250
[ "bitbucket-cloud", "cloud", "pipes" ]
{ "author": "??", "title": "The Bitbucket member cannot be deleted. Could you please explain why?", "body": "![image.png](/t5/image/serverpage/image-id/345019iCCE3AE4890064E0E/image-size/large?v=v2&px=999 \"image.png\")\n\nHello, as shown in the screenshot above, a JSON error occurs, and I am unable to delete a member. The error occurs when I try to delete a specific member. I need assistance in identifying the cause of this issue.\n" }
[ { "author": "Patrik S", "body": "Hey [@??](/t5/user/viewprofilepage/user-id/5581855) ,\n\nand welcome to the Community,\n\nThe reason why you are not able to remove that user's access is because the workspace is likely a **personal workspace** (see [Difference between personal and shared workspaces](https://confluence.atlassian.com/bbkb/difference-between-shared-and-personal-workspaces-1141477191.html)) attached to that user's email address, so that email is the owner of that workspace and can't be removed.\n\nIn the past when an account was created in Bitbucket Cloud, Bitbucket would automatically create a personal workspace tied to the user's email address. This is no longer the case, as Personal workspace is a legacy feature now. Workspaces created now are shared workspaces, meaning they are not attached to any user and will be owned by any users added to the Administrator's group.\n\nAs the error message shown in the UI is misleading and does not reflect the actual error, we've created a bug for our development team so they can fix that message :\n\n* <https://jira.atlassian.com/browse/BCLOUD-22888>\n\nWhile there's no direct way to convert a personal workspace to a shared workspace, you should be able to create a new workspace (shared workspace) and transfer the repositories to this new workspace.\n\nYou can follow the below instructions to [transfer the repository ownership](https://support.atlassian.com/bitbucket-cloud/docs/transfer-repository-ownership/) :\n> 1. From the repository you want to transfer, click **Repository settings** in the left menu.\n> 2. On the **Repository details** page, click **Manage repository** located at the top-right corner of the screen.\n> 3. Click **Transfer repository**.\n> 4. Enter the **Workspace ID** of the workspace \\*\\* in which you want to transfer the repository.\n> 5. Click **Transfer**.\n\nBitbucket will then send an email to the administrators of the destination workspace containing the transfer request with a link to a page that allows the user to accept or reject the transfer. Once the transfer is accepted, the repository will be moved from the original workspace to the destination workspace.\n\nI hope that helps! Let us know in case you have any questions.\n\nThank you, [@??](/t5/user/viewprofilepage/user-id/5581855) !\n\nPatrik S\n", "comments": null } ]
https://community.atlassian.com/t5/Bitbucket-questions/The-Bitbucket-member-cannot-be-deleted-Could-you-please-explain/qaq-p/2800509
[ "bitbucket-cloud", "cloud" ]
{ "author": "Shreya", "title": "Login denied when using curl to send emails using app password and access token in c++", "body": "I am trying to send an email by using curl, but I am getting the error \"Login Denied\". I generated the app password as well as the oauth access token, but still getting the same error. Can someone guide me as to what's the issue. \n\n<br />\n\nThat's how I gave the app password and the access token: \n\n*curl_easy_setopt(curl, CURLOPT_PASSWORD, \"APP_PASSWORD\");* \n\n*headers = curl_slist_append(headers, \"Authorization: Bearer ACCESS_TOKEN\");* \n*curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);*\n" }
[ { "author": "Patrik S", "body": "Hey [@Shreya](/t5/user/viewprofilepage/user-id/5580510) ,\n\nand welcome to the Community!\n\nI'm not sure if I fully understand your question. Could you elaborate if you are trying to use any Bitbucket Cloud feature to send emails?\n\nI ask this because our community primarily focuses on Bitbucket Cloud/Server questions, and we welcome any inquiries you might have. However, you'll likely receive faster and more precise answers for queries related to Atlassian products here.\n\nIf your question is about a third-party tool, you might find it more beneficial to post directly in that tool's dedicated forum or community. This way, you'll have a better chance of getting an accurate and timely response.\n\nThank you, [@Shreya](/t5/user/viewprofilepage/user-id/5580510) !\n\nPatrik S\n", "comments": null } ]
https://community.atlassian.com/t5/Bitbucket-questions/Login-denied-when-using-curl-to-send-emails-using-app-password/qaq-p/2799967
[ "accesstoken", "apppassword", "c++", "curl", "login" ]
{ "author": "jack_waugh", "title": "Can't Find Button to Approve a Pull Request", "body": "I'm looking at my newest pull request and no button shows up to approve it (nor to merge it, for that matter). How do I merge it? I am the owner and sole user and have not changed any settings.\n" }
[ { "author": "Ash Yadav", "body": "Hi [@jack_waugh](/t5/user/viewprofilepage/user-id/5581017)\n\nAs mentioned by [@abuislam](/t5/user/viewprofilepage/user-id/5575597) this is likely permissions related or conditions on the PR.\n\nCan you share a screenshot please?\n\nKR,\n\nAsh\n", "comments": null }, { "author": "abuislam", "body": "Check your permissions and ensure all checks are passed. Try refreshing the page or clearing your cache. If the button still doesn't appear, review the repository settings or contact support.\n", "comments": null } ]
https://community.atlassian.com/t5/Bitbucket-questions/Can-t-Find-Button-to-Approve-a-Pull-Request/qaq-p/2799949
[ "bitbucket-cloud", "cloud", "merge", "pull-request" ]
{ "author": "joeysal", "title": "How do I delete this workspace?", "body": "I'm trying to completely delete this workspace, but the directions from Atlassian do not work. It says to go to the workspace and a page will pop up with a \"Delete\" button. Well, when I go to this workspace, there's no page with any option like that. It just says \"Welcome to Bitbucket\" and \"Pull Requests\" (empty) and \"Jira Issues\" (empty). I no longer need this workspace and would like to delete it.\n" }
[ { "author": "OMAR MOHAMED AHMED MOHAMED FATHY", "body": "1. Navigate the workspace that you want to delete by going to [https://bitbucket.org/\\<workspaceID\\>](https://bitbucket.org/leonardomontiel/workspace/overview), changing the \\<workspaceID\\> to your workspace's workspace ID. You can also find your workspace by clicking on your avatar and selecting \"All workspaces\", then pick the one you wish to delete\n2. Click on the gear icon on the top right corner and then click on \"Workspace Settings\" option to access the workspace settings;\n3. On the new page that shows up, click on the \"Delete workspace\" button.\n4. There will be two **warning messages** to prevent accidental workspace deletion\n", "comments": null }, { "author": "Tansu Akdeniz", "body": "Hi [@joeysal](/t5/user/viewprofilepage/user-id/3533809)\n\nWelcome to the community.\n\nI believe you are an admin of the workspace.\n\nPlease check this page: [How to delete Bitbucket cloud workspace](https://confluence.atlassian.com/bbkb/how-to-delete-bitbucket-cloud-workspace-1216583972.html)\n", "comments": null } ]
https://community.atlassian.com/t5/Bitbucket-questions/How-do-I-delete-this-workspace/qaq-p/2799895
[ "bitbucket-cloud", "cloud" ]
{ "author": "ddspell", "title": "Cannot Commit; Any ideas on how to resolve?", "body": "I created a new repo. \n\nI successfully cloned via ssh. \nMade some changes locally. \nCommitted them. \nTried to push, but it failed.\n\nI've done some troubleshooting, but I'm not sure how to resolve.\n\nI did this...\n\n```\nGIT_SSH_COMMAND=\"ssh -vvv\" git push\n\n<snip>\n\ndebug1: Server accepts key\n```\n\n<br />\n\nAt this point, all good.\n\n```\ndebug1: Sending command: git-receive-pack 'me/scripts.git'\ndebug2: channel 0: request exec confirm 1\ndebug3: send packet: type 98\n```\n\nSSH_MSG_CHANNEL_REQUEST\n\n```\ndebug2: channel_input_open_confirmation: channel 0: callback done\ndebug2: channel 0: open confirm rwindow 2097152 rmax 32768\ndebug3: receive packet: type 99\n```\n\nSSH_MSG_CHANNEL_SUCCESS\n\n```\ndebug2: channel_input_status_confirm: type 99 id 0\ndebug2: exec request accepted on channel 0\ndebug2: channel 0: rcvd ext data 13\ndebug3: receive packet: type 98\n```\n\nSSH_MSG_CHANNEL_REQUEST\n\n```\ndebug1: client_input_channel_req: channel 0 rtype exit-status reply 0\ndebug3: receive packet: type 96\n```\n\nSSH_MSG_CHANNEL_EOF\n\n```\ndebug2: channel 0: rcvd eof\ndebug2: channel 0: output open -> drain\ndebug3: receive packet: type 97\n```\n\nSSH_MSG_CHANNEL_CLOSE\n\n```\ndebug2: channel 0: rcvd close\ndebug2: channel 0: chan_shutdown_read (i0 o1 sock -1 wfd 4 efd 6 [write])\ndebug2: channel 0: input open -> closed\ndebug3: channel 0: will not send data after close\ndebug2: channel 0: obuf_empty delayed efd 6/(13)\nUnauthorized\n```\n\n<br />\n\nNot sure why I'm unauthorized. \nI own the repo.\n\nAny ideas how to resolve?\n" }
[ { "author": "Patrik S", "body": "Hey [@ddspell](/t5/user/viewprofilepage/user-id/5580828) ,\n\nand welcome to the Community!\n\nChecking internally for your account I've noticed that you don't have any SSH keys added to your account. This means the key you're using was probably added directly to the repository or to the project that repository belongs to.\n\nSSH keys added to the repository or project (known as Access Keys) only provide read access to the repository (learn more on [Difference between Repository, Project and Workspace Access keys](https://confluence.atlassian.com/bbkb/difference-between-repository-project-and-workspace-access-keys-1188785759.html)). This would explain why you were able to clone successfully, but the push was not authorized.\n\nIn that case, you'd have to add your SSH key to your user profile instead by navigating to your *[Personal Bitbucket Settings](https://bitbucket.org/account/settings/) \\> SSH Keys*.\n\nThe same key cannot be added simultaneously as an access key and a user key. If you want to add the same key to your user profile, you'd first need to remove it as the access key on the repo/project level.\n\nI hope that helps! Let me know in case you have any questions.\n\nThank you, [@ddspell](/t5/user/viewprofilepage/user-id/5580828) !\n\nPatrik S\n", "comments": null } ]
https://community.atlassian.com/t5/Bitbucket-questions/Cannot-Commit-Any-ideas-on-how-to-resolve/qaq-p/2799785
[ "bitbucket-cloud", "cloud", "push" ]
{ "author": "amitkjai", "title": "not able to find the repository", "body": "Hi Team, I am not able to find my old repository, i would be thankful if you can help me to find this.\n\nbitbucket.org/amitkjai/flightapi.git\n" }
[ { "author": "Patrik S", "body": "Hey [@amitkjai](/t5/user/viewprofilepage/user-id/5580858) ,\n\nand welcome to the Community!\n\nI wasn't able to find the repository you mentioned inside the workspace you shared in your description.\n\nHowever, I see you have access to multiple workspaces, so the repository you're looking for might be part of a different workspace other than the one you're currently accessing.\n\nYou can find a list of workspace you have access by *navigating to Bitbucket* \\> Clicking on your *avatar in the top right corner* \\> *Selecting **All Workspaces*** option.\n\nFrom there, you can open each of the workspaces and search for your repository.\n\nI hope that helps! Let us know in case you have any questions.\n\nThank you, [@amitkjai](/t5/user/viewprofilepage/user-id/5580858) !\n\nPatrik S\n", "comments": null } ]
https://community.atlassian.com/t5/Bitbucket-questions/not-able-to-find-the-repository/qaq-p/2799707
[ "bitbucket-cloud", "cloud" ]
{ "author": "Shelmy", "title": "builds on self-hosted runner (docker) cannot reach servers in the same private network", "body": "Hello,\n\nwe have deployed a bitbucket self-hosted runner of type linux docker on a VM in a private network.\n\nThe runner works fine, but not for builds, that expect to reach out to other servers in the same private network, because inside a build container, the interface for the private network is not available.\n\nWe are aware of the option of linux shell runner, and just really would prefer containerized environment for builds.\n\nAccording to [this](https://community.atlassian.com/t5/Bitbucket-questions/Automated-deployment-from-my-repo-to-remote-private-server/qaq-p/1886659) post pipe:ssh-run may help, but I am not sure, what value to set for \"SERVER\", when the target IP or FQDN cannot be pinged. Or would ssh start from the host instead of from a container?\n\nPlease let me know if my description of the use case makes sense. Much appreciated for new ideas :)\n" }
[ { "author": "Shelmy", "body": "Hi again,\n\nso what I could achieve now is to start the runner container in the host network, so that the network interface, which is shared with the destination servers, is available in the runner container. (The reason why it did not work is starting the runner container using rootless docker.)\n\nHowever in the build containers, that network interface cannot be found. Is there a parameter to change the network option for the build containers?\n\nMany thanks in advance :)\n", "comments": [ { "author": "Syahrul", "body": "G'day, [@Shelmy](/t5/user/viewprofilepage/user-id/5580839)\n\nWelcome to the community!\n\nWe need more context on your goal and YAML configuration, so I suggest you create a support ticket with us since you have a paid workspace at our [Support portal](https://support.atlassian.com/contact/).\n\nRegards, \nSyahrul\n" }, { "author": "Shelmy", "body": "Hi Syahrul,\n\nthank you for the advice.\n\nTo summarize the lesson learned until now for the community and to complete this post:\n\nThanks to docker IP forwarding and NAT routing, which could be checked using the following commands, the private network interface didn't have to appear inside any container. The private server was pingable from runner and build containers if started with \"rootful\" Docker.\n\nsysctl net.ipv4.ip_forward\n\niptables -t nat -L -n -v\n\n<br />\n\nThe \"problem\" with rootless Docker was just that ping was limited, which could be fixed by the following section in the official Docker docs. \n<https://docs.docker.com/engine/security/rootless/#routing-ping-packets>\n" } ] } ]
https://community.atlassian.com/t5/Bitbucket-questions/builds-on-self-hosted-runner-docker-cannot-reach-servers-in-the/qaq-p/2799687
[ "bitbucket-cloud", "cloud" ]
{ "author": "Daniel Becroft", "title": "TLS1.2 support for email", "body": "We're currently running an old version of Crucible (4.5.1). We use an Office365 SMTP relay to send emails.\n\nThe SMTP relay has recently moved to TLS 1.2 only, and we are now getting SSL connection errors.\n\nObviously our current version is terribly out of date.\n\nBefore we look at upgrading, is TLS 1.2 supported under later version of Crucible? I can't see any reference to TLS in the 4.6-4.7 release notes.\n" }
[ { "author": "Marek Parfianowicz", "body": "Please have a look at <https://jira.atlassian.com/browse/FE-7294>\n", "comments": null } ]
https://community.atlassian.com/t5/Fisheye-Crucible-questions/TLS1-2-support-for-email/qaq-p/1638054
null
{ "author": "JiHyun Kim", "title": "javascript function provided by the existing system", "body": "Hi,\n\nI am developing a Crucible plugin.\n\nWhile developing JavaScript code, I would like to use the javascript function provided by the existing system. Is there any way to use that function?\n\n..\\\\target\\\\fecru\\\\fecru-4.6.1-20181008080545\\\\content\\\\static\\\\pg9t5l\\\\2static\\\\script\\\\cru\\\\review\\\\frx\\\\frx-ajax.js\n\n-\\> changeFileReadStatusClass: function (frxId, markAsRead, newStatus)\n" }
[ { "author": "Steffen Opel _Utoolity_", "body": "Hi [@JiHyun Kim](/t5/user/viewprofilepage/user-id/3746661),\n\nYou have probably figured this out by now, just in case:\n\nApp development related questions like this are best asked in the [Atlassian Developer Community](https://community.developer.atlassian.com/), you have a greater chance to get feedback from other app vendors there (though given past experience, the Bamboo team might also answer here).\n\nThat said, to set expectations, you'll note that there isn't even a category for Crucible and the [latest Crucible question](https://community.developer.atlassian.com/search?q=crucible%20order%3Alatest) stems from 2018 - regardless, there are quite some Atlassian team members monitoring the community by now, so hopefully they can loop in someone from the Crucible team.\n\nCheers, \nSteffen\n", "comments": null } ]
https://community.atlassian.com/t5/Fisheye-Crucible-questions/javascript-function-provided-by-the-existing-system/qaq-p/1636766
null
{ "author": "MEDITECH ADMIN TEAM", "title": "Subversion required - What other options are out there to replace FishEye and Crucible?", "body": "I am beginning the long search for a replacement tool for FishEye and Crucible. Given Atlassian moving to maintenance mode for FishEye and Crucible, what are other options out in the wild for replacing those two software offerings? We are set on SVN, so that eliminates GIT and BitBucket.\n\nIm asking because with quick searches it seems its a move to GIT or there is not a wide set of offerings, if any. Anyone have some ideas or heading down this same path? Hoping we are not that different! HA!\n" }
[ { "author": "Marek Parfianowicz", "body": "There's a very good guide how to migrate from Subversion to Git:\n\n<https://www.atlassian.com/git/tutorials/svn-to-git-prepping-your-team-migration>\n", "comments": null } ]
https://community.atlassian.com/t5/Fisheye-Crucible-questions/Subversion-required-What-other-options-are-out-there-to-replace/qaq-p/1636292
[ "server" ]
{ "author": "Mark Powers", "title": "Fisheye/crucible Users' guide", "body": "I found a 3.10 version for a users guide. Is there one for 4.84 or any of the 4.8.x?\n" }
[ { "author": "Mikael Sandberg", "body": "Hi [@Mark Powers](/t5/user/viewprofilepage/user-id/4220293),\n\nWelcome to Atlassian Community!\n\nHere is the link to the 4.8.x documentation, <https://confluence.atlassian.com/fisheye/fisheye-documentation-home-960155247.html>\n", "comments": null } ]
https://community.atlassian.com/t5/Fisheye-Crucible-questions/Fisheye-crucible-Users-guide/qaq-p/1635038
null
{ "author": "lance_lyons", "title": "How to clean up older reviews", "body": "Hi, \n\nIs there a way to remove older reviews in larger quantities other than just one at a time? \n\nthanks \n" }
[ { "author": "lance_lyons", "body": "Did you ever find the answer to this?\n", "comments": null } ]
https://community.atlassian.com/t5/Fisheye-Crucible-questions/How-to-clean-up-older-reviews/qaq-p/1611297
[ "server" ]
{ "author": "ISA Admin", "title": "Do I have to upgrade server software when I upgrade license?", "body": "I have a standalone server on a closed environment with a 100 user Fisheye license and a 5 user starter license for Crucible. I received a quote for a 100 user Crucible license for software version 4.2.1.20161109135523 \n\nI provided this software version in my request for the quote so I assume it will work without requiring an upgrade but need to be sure before purchasing.\n" }
[ { "author": "Joshua Sneed Contegix", "body": "Hi ISA Admin,\n\nNo, you are not required to upgrade the application when you obtain a new license. Cheers!\n", "comments": null } ]
https://community.atlassian.com/t5/Fisheye-Crucible-questions/Do-I-have-to-upgrade-server-software-when-I-upgrade-license/qaq-p/1606746
[ "server" ]
{ "author": "paul redmond", "title": "Does version 4.8.6 include the fix for failure to start with wildcard cert?", "body": "This is regarding the issue in Fisheye 4.8.4 where it bundles new Jetty libraries version 9.4.30, and when a wildcard certificate is used the application fails to start.\n\nLast I heard this bug was a candidate for 4.8.6 bug-fix release. Just curious if it got included.\n\nMore info-\n\n[https://jira.atlassian.com/browse/FE-7318?error=login_required\\&error_description=Login+required\\&state=9a0f6b12-d4b8-45af-b746-1423b596c5cc](https://jira.atlassian.com/browse/FE-7318?error=login_required&error_description=Login+required&state=9a0f6b12-d4b8-45af-b746-1423b596c5cc)\n\nThanks\n" }
[ { "author": "Graham White", "body": "I can confirm it did **NOT**.\n\nHoping for the 4.8.7 release to become available soon.\n\nRegards, Graham\n", "comments": [ { "author": "Graham White", "body": "**Crucible 4.8.7** has now been released, and this bug is marked as closed. I'm likely to try upgrading over the weekend and will confirm here when done.\n" }, { "author": "Graham White", "body": "Upgrade worked fine this time, so the Jetty issue with wildcard certifcates is finally fixed !\n" } ] } ]
https://community.atlassian.com/t5/Fisheye-Crucible-questions/Does-version-4-8-6-include-the-fix-for-failure-to-start-with/qaq-p/1608029
null
{ "author": "chaitali k", "title": "Is there an API functionality to add single fisheye repository in to the crucible project?", "body": "I want to add fisheye repository in to the crucible project using api, is there any api for that ?\n" }
[ { "author": "Steffen Opel _Utoolity_", "body": "I'm afraid you are out of luck, insofar there is no REST API to achieve this, and the resp. issue status is 'not being considered':\n\n* [Bulk add repositories into Project (CRUC-6269)](https://jira.atlassian.com/browse/CRUC-6269)\n\nSo given [there will not be any further feature development on Fisheye and Crucible since January 13th 2020](https://confluence.atlassian.com/crucible/fisheye-and-crucible-are-in-basic-maintenance-mode-987143986.html), it is extremely unlikely that your vote or comment on that issue would make any difference.\n\nAccordingly, if this is super important, your only and at least likely long-terrm stable option would be to automate the UI via a tool like [Playwright](https://playwright.dev/) or [Puppeteer](https://pptr.dev/).\n", "comments": null } ]
https://community.atlassian.com/t5/Fisheye-Crucible-questions/Is-there-an-API-functionality-to-add-single-fisheye-repository/qaq-p/1606196
[ "fisheye-crucible-administration" ]
{ "author": "BooHyun", "title": "Atlassian FishEye analysis Binary Review", "body": "Hello .\n\natlassian Support Teams.\n\nThank you for your time.\n\nFisheye changeset Review progress Two file Displayed as binary. That's why I can't compare.\n\nThe file extension is : .cs\n\nraw-mime.types : The file text/plain settings are clear.\n\nVerSion info : \nAtlassian [FishEye analysis](http://www.atlassian.com/software/fisheye/)with [Crucible code review](http://www.atlassian.com/software/crucible/). (Version:4.4.1 Build:20170515065843 2017-05-15\n\nPlease...Tell me how to solve this problem.\n\nPlease answer my personal email.\n\nE-mail Address : [email protected]\n\nThank U.\n\n-BooHyun\n" }
[ { "author": "Man3door", "body": ".\n", "comments": [ { "author": "BooHyun", "body": "???\n" } ] } ]
https://community.atlassian.com/t5/Fisheye-Crucible-questions/Atlassian-FishEye-analysis-Binary-Review/qaq-p/1602792
null
{ "author": "D", "title": "How to import the users from Jira into Crucible?", "body": "My Jira server has been in operation for awhile and has been working fine. I want to use all of the users that I have amassed in Jira on Crucible but I can't seem to find a button to import users from Jira to Crucible. When creating the application link between the two, it asked if the users would be the same but that was the only mention of a possible import. Is this possible and if so, how would I go about the import?\n" }
[ { "author": "Gerald Schneider", "body": "You can use JIRA as an external user directory in FishEye.\n> You can connect Fisheye to an existing Atlassian Jira instance to delegate Fisheye user and group management, and authentication. Fisheye provides a \"read-only\" connection to Jira for user management. This means that users and groups, fetched from Jira, can only be modified or updated in that Jira server, rather than in Fisheye.\n\nThe process is documented here: <https://confluence.atlassian.com/fisheye/connecting-to-jira-for-user-management-960155582.html>\n", "comments": null } ]
https://community.atlassian.com/t5/Fisheye-Crucible-questions/How-to-import-the-users-from-Jira-into-Crucible/qaq-p/1588450
null
{ "author": "D", "title": "What are the next steps to take after linking Crucible and Jira?", "body": "I've been having some trouble finding how to properly integrate Crucible into Jira after linking both sites. So far, I have followed the instructions from here (<https://confluence.atlassian.com/crucible/linking-crucible-to-jira-394464356.html>) to link both of them together and have followed the directions here ([https://confluence.atlassian.com/crucible/setting-up-a-perforce-repository-in-crucible-alone-298977504.html#:\\~:text=To%20set%20up%20Perforce%20in%20Crucible%20alone%3A\\&text=Click%20Manage%20Add%2Dons%20(under,unique%20name%20for%20the%20repository)](https://confluence.atlassian.com/crucible/setting-up-a-perforce-repository-in-crucible-alone-298977504.html#:~:text=To%20set%20up%20Perforce%20in%20Crucible%20alone%3A&text=Click%20Manage%20Add%2Dons%20(under,unique%20name%20for%20the%20repository)) to take everything found from my perforce and create repositories on Crucible. My goal is to be able to write reviews and create issues stemming from code changes while on Jira but the few videos I have found show buttons that I do not have on Jira, are very old, or never explain how to get from where I currently am to there. I am using Crucible 4.8.4 and Jira v8.6.0. It would be greatly appreciated if someone could provide some instruction on the next steps to take or direct me to a solution.\n" }
[ { "author": "Gerald Schneider", "body": "Additionally to the general application link between JIRA and FishEye/Crucible you need to specifically link your JIRA project to your Crucible project.\n\n* In your JIRA project, go to \"Project Settings\" -\\> \"Summary\".\n* Scroll down to \"Settings\" and click on \"Application Links\".\n* Click on \"Create Project Link\".\n* Select your FishEye instance from the menu and select your repository or project. Follow the dialog to create the link.\n\nAfterwards the buttons you are missing should show up.\n", "comments": null } ]
https://community.atlassian.com/t5/Fisheye-Crucible-questions/What-are-the-next-steps-to-take-after-linking-Crucible-and-Jira/qaq-p/1586925
null
{ "author": "charleslcso", "title": "Application link \"Network error\"", "body": "I'm having issue in one direction of an application link.\n\nBasically I have set up Jira, Crowd, Crucible in one server A, Confluence in another server B. All self-hosted, and are all proxied by server C.\n\nJira, Crowd and Confluence have been running for over 6 months. Today I installed Crucible.\n\nJira is at 8.13.0 (starter licence)\n\nConfluence is at 7.8.1 (starter licence)\n\nCrowd is at 3.4.4 (starter licence)\n\nCrucible is at 4.8.5 (trial licence)\n\nI can access each application individually.\n\nUsing Jira as the focal point:\n\n1. Jira can link to Confluence - Status is Connected. I can Go to remote, and in Confluence, Status is also Connected.\n\n2. Jira can link to Crowd - Status is Connected. I can Go to remote, and in Confluence, Status is also Connected.\n\n3. Jira CANNOT link to Crucible - Status will first show Deprecated, then Network Error. But I can Go to remote, and in Crucible, Status is Connected! From Crucible, I can Go to remote! Still \"Network error\" though.\n\nThere is nothing in strange in Jira's catalina.out. No other log files are being written at times of showing this Network error.\n\nOne thing I find strange is that in Jira, \"FishEye/Crucible integration into Jira\" setting under Admin \\| Applications \\| Integrations \\| FishEye will always default back to \"Crucible integration only\".\n\nI haven't started using Crucible yet... still trying to get the configuration correct.\n\nI searched inside Crucible after adding a BitBucket repository, and there is seems to be no where that I can create a Jira issue from commits. Is this because the link is broken in the Jira side?\n\nAny idea if this Application link should be fixed, or it doesn't hurt anything?\n" }
[ { "author": "charleslcso", "body": "I found the cause of error.\n\nIn Crucible config.xml, context must prefix with a /.\n\ncontext=\"/crucible\"\n\nWhen it doesn't work, I was using :\n\ncontext=\"crucible\"\n", "comments": null } ]
https://community.atlassian.com/t5/Fisheye-Crucible-questions/Application-link-quot-Network-error-quot/qaq-p/1578532
[ "application-link", "jira", "jira-server", "reverse-proxy" ]
{ "author": "Mark Powers", "title": "Adding security banner", "body": "Is it possible to add a security banner to the top and bottom of Fisheye?\n" }
[ { "author": "habib rahman", "body": "Hi Mark,\n\nAs far as I know, there is no concept of banner in fisheye. However, fisheye provides an option to add a customised welcome message. You can put your message by navigating to administrator\\>Front page customisation.\n\nIf you are ok to put your message in the footer (which appears in every page of fisheye), you can edit the footer file available in \\<fecru-installation-directory\\>/content/WEB-INF/tags/cru/footer.tag\n\nHope that helps Habib\n", "comments": null } ]
https://community.atlassian.com/t5/Fisheye-Crucible-questions/Adding-security-banner/qaq-p/1577617
null
{ "author": "ahumaidat", "title": "Fisheye/Crucible web hooks - indexing", "body": "Hi,\n\nWhen using web hooks for svn, does fisheye trigger the indexing for the whole repo? Does it scan everything or the most recent commits only?\n\nWe want commits to appear instantly on fisheye, thus Jira, but without loading the server.\n" }
[ { "author": "Mirek", "body": "Hi [@ahumaidat](/t5/user/viewprofilepage/user-id/4140621) ,\n\nBy default it runs incremental indexing at the specific interval. To improve scanning and performance you can set up Commit Hooks which trigger the indexing after commit is done - <https://confluence.atlassian.com/fisheye/configuring-commit-hooks-960155647.html>\n\nIf you are overall interested in improving FIsheye performance you can read this guide - <https://confluence.atlassian.com/fisheye/tuning-fisheye-performance-960155706.html>\n\nHope it helps :)\n", "comments": null } ]
https://community.atlassian.com/t5/Fisheye-Crucible-questions/Fisheye-Crucible-web-hooks-indexing/qaq-p/1570658
null
{ "author": "Tomas Lima", "title": "Issue when creating a merge request with nested branch name", "body": "Hi\n\nI just updated from version 4.2.5 to both 4.2.6 and 4.2.7 and I'm seeing this bug: \nWhen I create a merge request from a branch with nested names (say \\`tomas/branch-name\\`), SourceTree pushes correctly but opens a new browser tab with an incorrect URL:\n\n<https://gitlab.com/my-repo/my-repo/-/merge_requests/new?merge_request%5Bsource_branch%5D=tomas%252Fbranch-name>\n\n![Screenshot 2024-02-21 at 18.22.53.png](https://community.atlassian.com/t5/image/serverpage/image-id/307937i0BD43DC3453A3C42/image-size/large?v=v2&px=999 \"Screenshot 2024-02-21 at 18.22.53.png\")\n\nPay attention to the end: \\`source_branch%5D=tomas%252Fbranch-name\\`\n\nIf I manually replace in the URL \\`%252F\\` with \\`%2F\\` and hit enter, it opens the correct URL.\n\nFor now, I downgraded to version 4.2.5 to keep this functionality unbroken.\n\nThank you\n" }
[ { "author": "Jinling Wang", "body": "Same issue with 4.2.8\n", "comments": null }, { "author": "Matt Stone", "body": "Still an issue in 4.2.8\n", "comments": null }, { "author": "Matt Stone", "body": "I'm also getting this issue on both 4.2.6 and 4.2.7, it looks like the slash in the branch name is getting double-encoded.\n\nFor reference I'm getting this issue both on Github and Gitlab so looks to be a Sourcetree bug that is not yet fixed\n", "comments": null } ]
https://community.atlassian.com/t5/Sourcetree-questions/Issue-when-creating-a-merge-request-with-nested-branch-name/qaq-p/2616905
[ "bug" ]
{ "author": "Rogelio G?mez D?az", "title": "Stashes file list is empty", "body": "Sourcetree version: 3.4.16\n\nProblem: Stash files are not showing.\n\nIn the following photo. I selected the first stash and the files are not showing.\n\n![stashes not working.png](/t5/image/serverpage/image-id/307520iBC72F4F07D4B61F8/image-size/large?v=v2&px=999 \"stashes not working.png\")\n" }
[ { "author": "Rogelio G?mez D?az", "body": "Fixed by using embedded git instead of system git.\n", "comments": [ { "author": "Sean Ferris", "body": "...and make sure the embedded Git is up-to-date!\n" } ] } ]
https://community.atlassian.com/t5/Sourcetree-questions/Stashes-file-list-is-empty/qaq-p/2614906
null
{ "author": "jogun", "title": "Any plan to update the host info for gitea?", "body": "![screenshot.png](https://community.atlassian.com/t5/image/serverpage/image-id/307218i96375B18DC43E11C/image-size/large?v=v2&px=999 \"screenshot.png\")\n\nHi all.\n\nI moved to a company using Gitea. \nI am a huge fan of Sourcetree and I would like to use this IDE for Gitea. \nAnd, unfortunately Sourcetree looks not support the platform. \n\nDose the Sourcetree team has plan to support for Gitea? \nI can use Sourcetree for just simple source handling but not 100% - for example, PR is not working. I think this relevant with Accounts.\n\nThanks for helping in advance and have a good day.\n" }
[ { "author": "Vincent", "body": "We are also working with Gitea and would like to use Sourcetree. Please add it to the Authentication.\n", "comments": null } ]
https://community.atlassian.com/t5/Sourcetree-questions/Any-plan-to-update-the-host-info-for-gitea/qaq-p/2613472
[ "server" ]
{ "author": "????", "title": "?SourceTreeSetup-3.4.16.exe????????????????SourceTree????????", "body": "Windows11Pro?core-i5?16Gb\n\n?<https://www.atlassian.com/software/sourcetree?>?? \n?SourceTreeSetup-3.4.16.exe???????????????????SourceTree????????\n\nATLANSSIAN Community?????????????\n\n1.???????????????????????Sourcetree????????? \n2.%localappdata%/Atlassian?????????????? \n3.%localappdata%/SourceTree?????????????? \n?2.?Atlassian?????????????????!! \n??????????SourceTreeSetup-3.4.16.exe???????????SourceTree????????\n\n1.????????????????????sourcetree???????? \n2.%localappdata%/??Atlassian??????????? \n3.%localappdata%/??SourceTree??????????\n\n?????????????????\n" }
[ { "author": "K.Kitajima", "body": "?????????????????????\n\n?????????Also available for Windows ????????????????????????????????????????????????????????\n\n* <https://www.atlassian.com/ja/software/sourcetree>\n\n![Screenshot 2024-02-20 at 15.47.24.png](https://community.atlassian.com/t5/image/serverpage/image-id/307363i8779D997729A245B/image-size/large?v=v2&px=999 \"Screenshot 2024-02-20 at 15.47.24.png\")\n", "comments": null } ]
https://community.atlassian.com/t5/Sourcetree-questions/SourceTreeSetup-3-4-16-exe-%E3%82%92%E3%83%80%E3%82%A6%E3%83%B3%E3%83%AD%E3%83%BC%E3%83%89%E3%81%97-%E5%AE%9F%E8%A1%8C%E3%81%97%E3%81%9F%E3%81%8C-SourceTree-%E3%81%8C%E8%B5%B7%E5%8B%95%E3%81%97%E3%81%AA%E3%81%84/qaq-p/2608667
null
{ "author": "Paul Denize", "title": "Stop the jump to \"History\" after each commit?", "body": "When I make a commit in Sourcetree (v3.4.14) under \"File Status\" the view jumps to \"History\" all the time where I can see all commits. But I want to stay under \"File Status\".\n\nThere is another thread <https://community.atlassian.com/t5/Sourcetree-questions/How-can-I-avoid-to-jump-to-quot-History-quot-after-each-commit/qaq-p/1910034#U2606626> that discusses this and is marked solved when all they gave was a workaround under some conditions (some commits still remain).\n\nIn this thread almost everyone is annoyed by this feature change but no one appears to be listening because its marked Solved.\n\nThe jump to the History is not wanted by most. How can we disable this PERMINANTLY.\n" }
[ { "author": "_alexbk66", "body": "Yes Atlassian - please remove this unwanted and annoying \"feature\".\n", "comments": null }, { "author": "mai_il_2011", "body": "Yeah, this is very annoying, and they still haven't fixed it.\n", "comments": null } ]
https://community.atlassian.com/t5/Sourcetree-questions/Stop-the-jump-to-quot-History-quot-after-each-commit/qaq-p/2606632
[ "server" ]
{ "author": "Miller Lopez", "title": "SourceTree won't start", "body": "Running Windows 10 Pro, and after a reboot of my machine sourcetree stopped working. The splash screen would flash on screen and then disappear without opening the application. I have tried:\n\n- deleting Assemblies.cache and Composition.cache from C:\\\\Users\\\\{user}\\\\AppData\\\\Local\\\\Atlassian\\\\SourceTree.exe_Url_gabrloo4xyt1uisb2u0llx4mj5wjyjp3\\\\3.4.8.0\n\n- deleting the C:\\\\Users\\\\{user}\\\\AppData\\\\Local\\\\Atlassian\\\\SourceTree.exe_Url_gabrloo4xyt1uisb2u0llx4mj5wjyjp3 folder\n\n- uninstall/reinstall the application\n\n- delete all sourcetree and atlassian related files and folders\n\n- reinstall various version (2.1.5, 2.3.5, 3.4.8, and latest version)\n\n- rebooted serveral times\n\n- trying installing in safemode\n\nNo log file gets generated.\n" }
[ { "author": "Miller Lopez", "body": "I was able to resolve the issue. When trying to install version 2.4.8.0, event viewer would throw an error. The line that caught my attention was:\n\nException information: \nException type: ConfigurationErrorsException \nException message: Unrecognized configuration section oracle.manageddataaccess.client. (C:\\\\Windows\\\\Microsoft.NET\\\\Framework64\\\\v4.0.30319\\\\Config\\\\machine.config line 284)\n\nLooking at the machine.config file I saw that TNS_ADMIN was pointing to a client install (C:\\\\Oracle\\\\product\\\\12.2.0\\\\client_1\\\\network\\\\admin) that no longer existed that I had uninstalled weeks prior, and replaced with 19c. I reinstalled the 12c client along with the 12c ODAC installer because the configuration was required for the Oracle Data Provider installation.\n\nAfter reinstalling 12c the SourceTree installation worked.\n", "comments": null } ]
https://community.atlassian.com/t5/Sourcetree-questions/SourceTree-won-t-start/qaq-p/2603596
null
{ "author": "Kieron McIntyre", "title": "Escape to close active windows", "body": "Personally I think it would be great if any active window with a \"Close\" or \"Cancel\" button was closed/cancelled with the Escape key.\n\nThis is consistent with a huge number of apps in everyday use, including how modals work on websites too.\n\nIs it possible to get this included? I know that it already works *sometimes* but not consistently and again, personally I think these kind of features (like the Ctrl+Enter for commit messages that was inexplicably removed) make an app far, far better.\n" }
[ { "author": "Yatish Madhav", "body": "Thanks for this post [@Kieron McIntyre](/t5/user/viewprofilepage/user-id/1823008) - I am totally with you on this.\n\nMy itch comes with the search bar at the top. I search and then click on View All Issues, but when I come to the original page it is still open and Esc doesnt close it\n\nAtlassian, please help on this. Thank you in advance\n", "comments": null } ]
https://community.atlassian.com/t5/Sourcetree-questions/Escape-to-close-active-windows/qaq-p/2598862
null
{ "author": "tpascal", "title": "Setting up SSH between Sourcetree and Bitbucket.org", "body": "I need to get sourcetree connected to my bitbucket account.\n\nI have been trying to set up SSH.\n\nI use PuttyGen on my Windows laptop.\n\nGenerate a key. Copy the public key to my bitbucket account.\n\nLoad the private key using Pageant on my windows machine.\n\nCannot pull or push!\n\nHELP!\n\nTerry\n" }
[ { "author": "MarkVincent", "body": "It's terribly unclear how to do this. If you follow the instructions at <https://support.atlassian.com/bitbucket-cloud/docs/set-up-ssh-with-sourcetree/> it is just not complete.\n", "comments": null } ]
https://community.atlassian.com/t5/Sourcetree-questions/Setting-up-SSH-between-Sourcetree-and-Bitbucket-org/qaq-p/2596372
[ "bitbucket", "bitbucket-cloud", "cloud", "ssh" ]
{ "author": "Tim Reynolds", "title": "upgraded to windows 11 - installation issue on source tree on Atlassian account step", "body": "Hello,\n\nWork upgraded from Win10 to Win11 and then re-imaged my PC. Now when trying to open SourceTree by Atlassian, on the set up step for Atlassian account , I click on Use an existing account but get a Javascript load error - so I click on the other option -Go to MyAtlassian and sign in- and then goes to page <https://my.atlassian.com/license/sourcetree> for which I get Page Not Found (Oops you found a dead link). Meanwhile my setup is stuck being that neither option are working for me. Please advise.\n\nThanks,\n\nTim R\n" }
[ { "author": "tim_reynolds", "body": "Issue was compatibility - v1.8.3 is not compatible with Windows 11 apparently - when I installed v3.1.2 and it worked fine - issue closed\n", "comments": null }, { "author": "Tim Reynolds", "body": "By the way this is v 1.8.3.0\n", "comments": null } ]
https://community.atlassian.com/t5/Sourcetree-questions/upgraded-to-windows-11-installation-issue-on-source-tree-on/qaq-p/2594900
[ "account", "licence" ]
{ "author": "????", "title": "Cannot use the external diff (Mac)", "body": "I am using Sourcetree on a Mac. \nI have been using Araxis merge as an external diff.\n\nWhen I press the external diff button, Araxis merge does not launch and I cannot diff. However, I can press the \"external diff\" button. I can also launch and use Araxis merge independently.\n\nIn the settings screen, the external diff tool is grayed out. However, it is grayed out because it was set up previously, so it is still shown that an Araxis merge is specified. \nI can't even change the external diff settings because it is greyed out and I can't click on it. \nIt was working until a few days ago. We do not know the cause.\n\nCan someone please tell me how to deal with this? \nI attach a screenshot of the relevant screen and environment.\n" }
[ { "author": "????", "body": "After some more googling, re-installing the application, and messing around, I managed to get it back to a usable state. \nAs an amateur, I had to open the gitconfig file, check and correct the paths, etc., but I was very nervous.\n\nSo, since I have solved the problem myself, I will close this question once and for all.\n", "comments": null } ]
https://community.atlassian.com/t5/Sourcetree-questions/Cannot-use-the-external-diff-Mac/qaq-p/2591326
[ "mac" ]
{ "author": "aleviatandigidna", "title": "Cannot select file diff table items below certain row", "body": "I'm running into a strange selection issue in Sourcetree, where any items in the file diff table below a certain row cannot be selected. This is true whether I click on them or if I press Cmd+A.\n\nIt happens in a specific repository, but I was able to reproduce it on two different macOS installations, one of which has Sourcetree freshly installed.\n\nTo reproduce:\n\n1. Using Sourcetree, clone Apple's \\[Device Management Client Schema\\|<https://github.com/apple/device-management>\\] repository.\n2. Make sure that the latest commit (\\`1cb86e0\\`) is selected.\n3. Make sure that the file diffs table is set to Flat List (any of the two).\n4. Click any item below \\`device.erase.yaml\\` - the item is not selected.\n5. Press Cmd+A - only \\`device.erase.yaml\\` and rows above become selected.\n\nHas anyone else seem this or is able to reproduce?\n" }
[ { "author": "aleviatandigidna", "body": "Fast forward a week and a bit, and I can now reproduce this on a third machine with a different repository altogether.\n\nI've also done some testing with older Sourcetree versions and I can confirm this started with 4.2.6.\n\nNow, judging by the flood of responses to this thread, I'm either such a heavy Sourcetree user or my workflow must be so esoteric, that I run into the most obscure bugs :p\n\nBut, either way, this is slowing me down quite a bit. [@Daniel Eads](/t5/user/viewprofilepage/user-id/1527694), how can I make sure that someone from the developers team takes a look at it?\n\nThanks*!*\n", "comments": null }, { "author": "bryjch", "body": "Encountering the same problem on version 4.2.7. Still happens on older versions too.\n\nHowever **changing to Tree view seemed to resolve the issue**.\n\nDefinitely prefer Flat list, but this a workaround for now.\n\n![Screenshot 2024-07-03 at 12.24.12?PM.png](https://community.atlassian.com/t5/image/serverpage/image-id/333185iF5EAFFBD9D094E1F/image-dimensions/297x179?v=v2 \"Screenshot 2024-07-03 at 12.24.12?PM.png\")\n", "comments": [ { "author": "aleviatandigidna", "body": "Nice to know tree view doesn't suffer from this. It'll have do for now.\n\nI swear I've looked up and down for an alternative client because of this, including into paid ones, but none of them let me see history, changed files, and diff all in one place like Sourcetree does. Ironically, this is exactly where this bug is...\n\nBy the way, Atlassian is [aware](https://jira.atlassian.com/browse/SRCTREE-8109) of it.\n" } ] }, { "author": "arthur", "body": "I have the same issue. It makes Sourcetree unusable\n", "comments": null }, { "author": "mefuzar", "body": "Wow this bug is really serious and I can reproduce but at my station it is even worse - I can select only 11 files out of the commit... all of the rest are inaccessible.\n\nUnfortunately I really like SourceTree and it will be very difficult to get used to a new app because of this bug\n\n![Screenshot 2024-02-13 at 17.31.56.png](https://community.atlassian.com/t5/image/serverpage/image-id/306063i280EDDD738414F93/image-size/large?v=v2&px=999 \"Screenshot 2024-02-13 at 17.31.56.png\")\n", "comments": null } ]
https://community.atlassian.com/t5/Sourcetree-questions/Cannot-select-file-diff-table-items-below-certain-row/qaq-p/2593197
[ "bug", "diff" ]
{ "author": "Matt", "title": "Can't install with .Net > 4.81", "body": "I am trying to install SourceTree but I am getting an error that I need .Net 4.8.1 I have .Net 8.0 installed on my computer. Shouldn't SourceTree be able to work with a newer version of .Net?\n" }
[ { "author": "Kieron McIntyre", "body": "From what I can see, SourceTree is built using WPF which uses .Net Framework not .Net Core, so no.\n\nHaving said that, there is a .Net Core fork for WPF but I imagine given the speed at which updates are turned around, I can't see this being a priority for the Atlassian team. But who knows?\n", "comments": null } ]
https://community.atlassian.com/t5/Sourcetree-questions/Can-t-install-with-Net-gt-4-81/qaq-p/2588523
[ ".net", "install" ]
{ "author": "Yves Defossez", "title": "Confluence automation to jira", "body": "Hi,\n\nI am completely new to this part of Confluence and Jira but as an organization we want to set up a link between confluence and jira.\n\nWe have a confluence page where people create \"actions\". Via automation I can create a Jira ticket based on these actions but we also want to include the confluence page link into the \"add web link\" field.\n\nVia the automation I can add the link to the description field but not to the \"web links\" section. I think that a \"send web request\" action inside the automation rule can solve this problem but don't know how to do this.\n\nSo I have the following:\n\nWhen task is created -\\> certain condition -\\> then create new Jira task -\\> send web request.\n\nThe \"send web request\" action needs to first get the Issue key which was just created by the same automation rule so I use the following:\n\nweb request URL: \\<atlassian url\\>/rest/api/2/field/{{createdIssue.key}} \nGet method \nBody: Empty\n\nThen, I need to use this issuekey to edit that issue's web link section.\n\nI hope this is somewhat clear and is possible within Jira.\n" }
[ { "author": "John Funk", "body": "Hi Yves,\n\nThis previous post was not resolved yet, but maybe there is a hint in there for you.\n\n<https://community.atlassian.com/t5/Jira-questions/Add-Weblink-To-JIRA-Using-Rest-API/qaq-p/1233689>\n", "comments": null } ]
https://community.atlassian.com/t5/Confluence-questions/Confluence-automation-to-jira/qaq-p/2811568
[ "confluence-cloud" ]
{ "author": "Mike", "title": "How to remove related pages feature?", "body": "Hi, in the past I have always had to manually remove the related pages feature every time I create a new page.\n\nNow I don't even get the option to remove the related pages feature when I create new pages. What to do to fix this?\n" }
[ { "author": "Kristian Klima", "body": "Hi [@Mike](/t5/user/viewprofilepage/user-id/1858680) and welcome to the community.\n\nIt's easy, just go to the Space settings as indicated in the screenshot.\n\n![2024-09-13_11-31-22.png](https://community.atlassian.com/t5/image/serverpage/image-id/347304i57C4AF51C1B45F74/image-size/large?v=v2&px=999 \"2024-09-13_11-31-22.png\")\n", "comments": [ { "author": "Mike", "body": "[@Kristian Klima](/t5/user/viewprofilepage/user-id/5074962)Thanks you saved my life and sanity!\n" }, { "author": "Kristian Klima", "body": "You're welcome! :D\n" } ] } ]
https://community.atlassian.com/t5/Confluence-questions/How-to-remove-related-pages-feature/qaq-p/2811508
[ "cloud", "confluence-cloud" ]
{ "author": "gagana.thammareddy", "title": "https://confluence.namirial.com/display/eSign/API+Documentation#APIDocumentation-Callbacks not able", "body": "I am not able to reach out confluence jira \n![confluencepage.png](/t5/image/serverpage/image-id/347266iA835539427C51CD1/image-size/large?v=v2&px=999 \"confluencepage.png\")![confluence page1.png](/t5/image/serverpage/image-id/347267iCD171F4D64E7D63C/image-size/large?v=v2&px=999 \"confluence page1.png\")\n" }
[ { "author": "Hans Polder", "body": "[@gagana.thammareddy](/t5/user/viewprofilepage/user-id/5591566) ,\n\nWelcome to the community!\n\nYou've added labels 'cloud', however it seems that this environment is self-hosted. I gather this from the url (it doesn't include \".atlassian.net\" AND the look \\& feel of your environment looks a lot like Confluence **Data Center**.\n\nYou should try reaching out to the people in your company that manage this environment and ask them to investigate this issue - and if needed they can raise a support ticket to Atlassian for further support.\n", "comments": null } ]
https://community.atlassian.com/t5/Confluence-questions/https-confluence-namirial-com-display-eSign-API-Documentation/qaq-p/2811373
[ "confluence-cloud", "datacenter" ]
{ "author": "Jan Loewe", "title": "Table Transformer: Regex replace", "body": "I would like to perform a replace in a result using a regular expression. Unfortunately something like\n\n```\nSELECT T1.'animals'->replace('/Cats/g',\"Dogs\") FROM T1\n```\n\ndoes not seem to work, because it seems that I cannot convince JavaScript to treat the search string as a regular expression.\n\nAny ideas how to solve that?\n" }
[ { "author": "Stiltsoft support", "body": "Hi [@Jan Loewe](/t5/user/viewprofilepage/user-id/5591655) ,\n\nSeems that you are using the [Table Transformer](https://docs.stiltsoft.com/tfac/dc-server/table-transformer-42241552.html?utm_source=atl_community&utm_medium=answer&utm_campaign=table-filter-traffic-sources&utm_vendorID=1216111) macro that comes with the [Table Filter, Charts \\& Spreadsheets for Confluence](https://marketplace.atlassian.com/apps/27447/table-filter-charts-spreadsheets-for-confluence?tab=overview&hosting=datacenter&utm_source=atl_community&utm_medium=answer&utm_campaign=table-filter-traffic-sources&utm_vendorID=1216111) app that we develop.\n\nThe REPLACE function works only with strings, so, it is an expected behavior.\n\nIf your case looks similar to the screenshot below and you need to replace only one regex match, you may try the following workaround:\n\nSELECT \\*, \nREPLACE(T1.'animals', MATCH_REGEXP(T1.'animals', \"\\\\d+Cats\", \"g\"), \"Dogs\") AS 'new animals' \nFROM T1\n\n![Fri 4-1.png](https://community.atlassian.com/t5/image/serverpage/image-id/347356iE481038140F2B69C/image-size/large?v=v2&px=999 \"Fri 4-1.png\")\n\nTo find and replace several regex matches, you'll need the REGEXP_REPLACE function or smth similar that is currently not supported by the macro - seems that it's a rare case and you are the first customer with such request.\n\nSo, I've created a new ticket for our internal roadmap and attached the link to this question - once the new function is introduced, we'll return here and notify you.\n", "comments": [ { "author": "Jan Loewe", "body": "Thanks for the reply, I'll be looking forward to the new functionality.\n\nFor the records, in the meantime, I found some kind of workaround using SEARCH:\n\nI go from:\n\n![1.png](https://community.atlassian.com/t5/image/serverpage/image-id/347741i12E6B7343E868C4C/image-size/large?v=v2&px=999 \"1.png\")\n\nTo:\n\n![2.PNG](https://community.atlassian.com/t5/image/serverpage/image-id/347742i1E7A3A9B5AE7DA4B/image-size/large?v=v2&px=999 \"2.PNG\")\n\nUsing:\n\n```\nSEARCH / AS @a EX(IFNULL('log'->'split'(\";\"), \" \"->'split'(\".\"))) /\nRETURN(@a->'id' AS id, REPLACE(_, MATCH_REGEXP(_, \"\\(\\d{2}:\\d{2}\\)\"), \"\") AS 'log')\nFROM T1\n```\n\nThis is btw. my use-case: I have to strip timestamps from multiple entries which are unfortunately in a single field.\n\nFinally, I join the results again using a pivot table:\n\n![4.PNG](https://community.atlassian.com/t5/image/serverpage/image-id/347746iA4C2202C11FD7DE0/image-size/large?v=v2&px=999 \"4.PNG\")![5.PNG](https://community.atlassian.com/t5/image/serverpage/image-id/347747i51DEF9300A4964B6/image-size/large?v=v2&px=999 \"5.PNG\")\n\nWhich finally yields the desired result:\n\n![6.PNG](https://community.atlassian.com/t5/image/serverpage/image-id/347748i60BF719785A12D86/image-size/large?v=v2&px=999 \"6.PNG\")\n" }, { "author": "Stiltsoft support", "body": "As I see, we do have a simplified example with the SEARCH function in our documentation <https://docs.stiltsoft.com/tfac/dc-server/custom-transformation-use-cases-with-advanced-sql-queries-42241587.html#CustomTransformationusecaseswithadvancedSQLqueries-Splittingcellvaluesinacolumntodifferentrows>\n\nand you've amplified it with REPLACE and MATCH_REGEXP that are currently supported.\n\nThank you for the thorough description! It may definitely help other users with similar use cases.\n" } ] }, { "author": "Kristian Klima", "body": "There was a Search \\& Replace app for Confluence Server, and it was free or dirt cheap, that did Regex...\n\nPerhaps there's a way how to get it and get it run... [https://marketplace.atlassian.com/apps/1212823/search-and-replace?tab=overview\\&hosting=server](https://marketplace.atlassian.com/apps/1212823/search-and-replace?tab=overview&hosting=server)\n", "comments": null }, { "author": "John Funk", "body": "Hi Jan - Welcome to the Atlassian Community!\n\nWhere are you running this?\n", "comments": null } ]
https://community.atlassian.com/t5/Confluence-questions/Table-Transformer-Regex-replace/qaq-p/2811481
[ "confluence-data-center", "confluence-server", "data-center", "filter", "table", "table-filter-and-charts", "table-filter-charts-spreadsheets", "table-transformer" ]
{ "author": "Perumal M", "title": "Confluence left side bar showing blank.", "body": "Hi Team,\n\nCould you please assist with the request below?\n\nOur Confluence left sidebar displays as blank for all the spaces. I have attached a screenshot below.\n\nI really appreciate any help you can provide.\n\n![Screenshot 2024-09-13 150218.png](https://community.atlassian.com/t5/image/serverpage/image-id/347306iA8D2BD5140DB4D98/image-size/large?v=v2&px=999 \"Screenshot 2024-09-13 150218.png\")\n" }
[ { "author": "Tansu Akdeniz", "body": "Hi [@Perumal M](/t5/user/viewprofilepage/user-id/5305127)\n\nScreenshot seems broken, could you re-upload?\n\nIt might be related to [Blank left side bar after logged in to Confluence](https://confluence.atlassian.com/confkb/blank-left-side-bar-after-logged-in-to-confluence-785461613.html).\n", "comments": [ { "author": "Perumal M", "body": "Thanks for letting me know, please try it now.\n" }, { "author": "Perumal M", "body": "The above-mentioned link has been checked, and we are not using the plugins on our Confluence.\n" }, { "author": "Tansu Akdeniz", "body": "Is this applicable for all users or specific to you?\n\nCan you please try other browsers? There might be an extension that prevents loading sidebar.\n\nAlso check this page: [Side Bar and Top Bar Menu items are missing when using Chrome or Internet Explorer](https://confluence.atlassian.com/confkb/side-bar-and-top-bar-menu-items-are-missing-when-using-chrome-or-internet-explorer-829053774.html)\n" }, { "author": "Perumal M", "body": "It's happening for all the users, as we have tried different browsers also.\n\nThanks.\n" } ] }, { "author": "Emily _ DevSamurai", "body": "Hi [@Perumal M](/t5/user/viewprofilepage/user-id/5305127) ,\n\nI'm sorry, but we are unable to view the image you attached. Could you please try attaching it again?\n", "comments": [ { "author": "Perumal M", "body": "Thanks for letting me know, please try it now\n" } ] } ]
https://community.atlassian.com/t5/Confluence-questions/Confluence-left-side-bar-showing-blank/qaq-p/2811350
[ "confluence-data-center", "data-center" ]
{ "author": "Thais da Costa Boeira", "title": "Where can I find Company Hub analytics?", "body": "I'd like to visualise how many people access the page.\n" }
[ { "author": "vikram", "body": "Hi [@Thais da Costa Boeira](/t5/user/viewprofilepage/user-id/5591516)\n\nWelcome to Atlassian Community\n\nTo check who can view a page:\n\n1. Go to your page and click on More options ...\n\nSelect --- People who can view tab.\n\n2. You can see a list of all the people who can view the page will appear.\n\n![view_people.JPG](https://community.atlassian.com/t5/image/serverpage/image-id/347335iD79EE168D34279C8/image-size/large?v=v2&px=999 \"view_people.JPG\")\n", "comments": [ { "author": "Thais da Costa Boeira", "body": "Hi [@vikram](/t5/user/viewprofilepage/user-id/5005662) thank you for your response. However, this wasn't quite my question.\n\nI'd like to see analytics about who has read/accessed the Company hub page and not who has permission to view it.\n\nSimilar to X people viewed the page available on any other Confluence page.\n\nThanks :)\n" } ] } ]
https://community.atlassian.com/t5/Confluence-questions/Where-can-I-find-Company-Hub-analytics/qaq-p/2811313
[ "cloud", "confluence-cloud" ]
{ "author": "UdayKiran", "title": "Refresh of Images used in a Confluence Page when the source changes on BOX/sharepoint", "body": "I'm working to build charts that show various trendlines for the projects.\n\nThe script i use can generate .png images of the trend lines (working on enhacing the script to write them to BOX/SharePoint)\n\nI would like to put these images on a confluence page (for the ease of showing it to everyone).\n\nMy problem : I've used image macro to load image from BOX/Sharepoint. Where there is a change to the original image, the change is not getting reflected on Confluence Page even after reloading the Confluence Page.\n\nIs there a way to have the images updated when the source changes (of course, with an refresh on Confluence Page)?\n" }
[ { "author": "Aron Gombas _Midori_", "body": "I guess the macro is caching external images... :-?\n\nJust a quick idea: how about attaching your chart images to the Confluence page. Every time when the charts are updated, you just attach the new version. If you display the attachment in the page, it will reflect the latest version automatically.\n\nIt may require some programming work, so it may not suitable for you.\n", "comments": null } ]
https://community.atlassian.com/t5/Confluence-questions/Refresh-of-Images-used-in-a-Confluence-Page-when-the-source/qaq-p/2811311
[ "cloud", "confluence-cloud" ]
{ "author": "Mary Ozdemir", "title": "DELETE", "body": "Can you please delete my organization ASAP\n" }
[ { "author": "Rebekka Heilmann _viadee_", "body": "Hello [@Mary Ozdemir](/t5/user/viewprofilepage/user-id/5591492) and welcome to the Community,\n\nthis is a place where your questions are answered by other users, Community Leaders and sometimes people from the Atlassian Team.\n\nHave you checked out the documentation on Org deletion? [Delete your organization \\| Atlassian Support](https://support.atlassian.com/organization-administration/docs/delete-your-organization/)\n\nYou need to cancel any subscriptions first and then have to wait some additional time afterwards depending on your current billing experience. The Support cannot accelerate this process either.\n\nSo in other words: you need to wait until the \"Delete\" button is activated in the Administration.\n", "comments": null } ]
https://community.atlassian.com/t5/Confluence-questions/DELETE/qaq-p/2811294
[ "cloud", "confluence-cloud", "not-applicable", "organization-administration" ]
{ "author": "Lloyd Bullard", "title": "copy a confluence table to excel, WITHOUT third party apps / plugins?", "body": "Hi,\n\nI have the same issue as this user here -\n\n<https://community.atlassian.com/t5/Confluence-questions/How-to-copy-table-from-Confluence-to-Excel/qaq-p/2234256>\n\ncopying and pasting a table from confluence to excel to filter / add formulas etc. causes cell formatting issues.\n\nI am not able to install third party addons, macros etc. as such things need scrutiny by the IT team before they are added, and given their backlog I am not going to get a macro only I need through their review process.\n\nwhat solutions do people have? I can currently screenshot part of a page and use excels \"image to table\" tool, but that does not work for very large or wide pages.\n\nthanks in advance.\n" }
[ { "author": "Kristian Klima", "body": "Hello [@Lloyd Bullard](/t5/user/viewprofilepage/user-id/5095770)\n\nTry using Google Sheet as an intermediary.\n\nI copied the following table from the Confluence page view mode to Google Sheets\n\n<https://agent-docs.emplifi.io/home/Training/shortcut-menus-and-keyboard-shortcuts#ShortcutMenusandKeyboardShortcuts-CommonShortcuts>\n\n(Note: the link is from our site built with Scroll Viewport, hence the visual difference).\n\nThis was the result:\n\n![2024-09-13_08-56-24.png](https://community.atlassian.com/t5/image/serverpage/image-id/347273i6FD1DA9A840E17E8/image-size/large?v=v2&px=999 \"2024-09-13_08-56-24.png\")\n\nYou can either copy/paste content from Gsheets to Excel or export an xls file.\n\nHope this helps.\n", "comments": null } ]
https://community.atlassian.com/t5/Confluence-questions/copy-a-confluence-table-to-excel-WITHOUT-third-party-apps/qaq-p/2811290
[ "cloud", "confluence-cloud" ]
{ "author": "omelvenymichael", "title": "Change Ownership of A Page", "body": "I need to change the ownership of a page. The following link is inaccurate:\n\n<https://support.atlassian.com/confluence-cloud/docs/transfer-ownership-of-your-content-item/>\n\nThere is no 'change owner' option.\n" }
[ { "author": "Aaron Pavez _ServiceRocket_", "body": "Hi [@omelvenymichael](/t5/user/viewprofilepage/user-id/5563237)\n\nWhat do you mean by There is no 'change owner' option?\n\nDo you see the view ownership option but cannot see the change owner button?\n\nOnly confluence admins or users with the Space -\\> Admin permissions can change the ownership.\n\nRegards\n", "comments": null }, { "author": "Barbara Szczesniak", "body": "[@omelvenymichael](/t5/user/viewprofilepage/user-id/5563237) Welcome to the community.\n\nThe page that you referenced describes how to change the owner of a page when you are the current owner. This same feature is supposed to be available for Product and Space Admins (<https://support.atlassian.com/confluence-cloud/docs/transfer-content-item-ownership-from-one-user-to-another/>).\n\nAs a Confluence Admin, you can also change ownership of a page or pages in the Content Manager Hub, as described here: <https://community.atlassian.com/t5/Confluence-Cloud-Admins-articles/New-bulk-action-Change-your-page-owners-in-bulk/ba-p/2657959>\n", "comments": null } ]
https://community.atlassian.com/t5/Confluence-questions/Change-Ownership-of-A-Page/qaq-p/2811126
[ "cloud", "confluence-cloud" ]
{ "author": "Andreas Sundvall", "title": "Adding assets objects using the same in a Confluence page", "body": "Hey experts!\n\nWe're just finishing up implementing Atlassian Assets as our primary Asset Mgmt tool and loving it!\n\nThere are a few road bumps I'm trying to overcome to get this to the next level, hoping someone has suggestions that google failed to find me.\n\nLong story short - each facility we install our hardware at is linked as \"location\" to each device in Assets.\n\nEach of these facilities has a public page in Confluence displaying all hardware currently on site and I'm hoping to have this populate what's linked in Assets.\n\n**But I have 2 main pain points...**\n\nBasically I'm adding the /Assets table but the problem I'm faced with is that I'm required to configure it manually each time. Preferably this would be in the template fetching a dynamic value (ex. the name is the \"location\" and other parts of the template are populating this value based on the dynamic value). I could live with having to change the \"dynamic\" value manually but would of course prefer if \"automated\" when using the template...\n\n\"location\" in the example would be the dynamic/changing value:\n\n![2024-09-12_17-59-55.png](/t5/image/serverpage/image-id/347143iD3EC0C1EFB72A8FD/image-size/large?v=v2&px=999 \"2024-09-12_17-59-55.png\")\n\nSecondly, the columns needs to be configured from default every time I change the value stated in the previous \"pain point\". Ex. here I've changed the \"location\" and then the table columns are reverted back to default:\n\n![2024-09-12_18-02-04.png](/t5/image/serverpage/image-id/347144iF2B44F1BF8945A47/image-size/large?v=v2&px=999 \"2024-09-12_18-02-04.png\")\n\nAny advise would be highly appreciated, 3rd party solutions also! :)\n" }
[ { "author": "Marc - Devoteam", "body": "Hi [@Andreas Sundvall](/t5/user/viewprofilepage/user-id/2866122)\n\nI have came across the same issues and still do.\n\nSame as you, its not very friendly in use.\n\nI haven't found anything to fix or resolve this.\n", "comments": null } ]
https://community.atlassian.com/t5/Confluence-questions/Adding-assets-objects-using-the-same-in-a-Confluence-page/qaq-p/2810869
[ "assets", "cloud", "confluence-cloud" ]
{ "author": "Carlos Borau Gonz?lez", "title": "Inserting a pivot-table macro with REST API", "body": "I am trying to create a pivot table on a confluence page through the REST API. Basicly I have to peridically update a page on my confluence space with some data oganized as a table. Currently I can update these contents as an html table and later manually wrap the table with the pivot table macro to create the pivot table display on the page, but I would like to do everything automatically from a script by generating the proper XHTML code so that I can update the page by passing this code as the body contents of a REST API content update call.\n" }
[ { "author": "Stiltsoft support", "body": "Hi [@Carlos Borau Gonz?lez](/t5/user/viewprofilepage/user-id/5591092) ,\n\nIf you are talking about our [Table Filter, Charts \\& Spreadsheets for Confluence](https://marketplace.atlassian.com/apps/27447/table-filter-charts-spreadsheets-for-confluence?tab=overview&hosting=datacenter&utm_source=atl_community&utm_medium=answer&utm_campaign=table-filter-traffic-sources&utm_vendorID=1216111) app and its [Pivot Table](https://docs.stiltsoft.com/tfac/dc-server/pivot-table-42239659.html?utm_source=atl_community&utm_medium=answer&utm_campaign=table-filter-traffic-sources&utm_vendorID=1216111) macro, you may insert the macro manually (as you do it now), adjust all the settings in a proper way, and then go check the [page storage](https://confluence.atlassian.com/doc/confluence-storage-format-790796544.html). There you will see not only your current table but all the macros that are used on the page (and the Pivot Table macro as well). You may save everything to your code and change only the part where the table is placed. Then when the page is restored, you'll see all the macros with an updated table.\n", "comments": null }, { "author": "Jim Knepley - ReleaseTEAM", "body": "Since you mentioned a REST API, I suspect you have a certain level of development expertise.\n\nIf tasked with this, I would use Pandas to generate the dataframe and pivot, then export the pivoted dataframe as HTML.\n\nref:\n\n* <https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html>\n* <https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.pivot.html>\n* <https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.to_html.html>\n", "comments": null } ]
https://community.atlassian.com/t5/Confluence-questions/Inserting-a-pivot-table-macro-with-REST-API/qaq-p/2810801
[ "confluence-data-center", "data-center", "filter", "macros", "pivot-table", "rest-api", "table", "table-filter", "table-filter-and-charts", "table-filter-charts-spreadsheets" ]
{ "author": "hpatani", "title": "Embed youTube videos in confluence", "body": "All references are to some app called Widget connector that I can't seem to find.\n\nI would think something as simple as youTube video embedding would be an inherent capability withing confluence cloud.\n\nWhat am I missing?\n" }
[ { "author": "hpatani", "body": "[Widget Connector Macro \\| Confluence Data Center 9.0 \\| Atlassian Documentation](https://confluence.atlassian.com/doc/widget-connector-macro-171180449.html)\n\nI found it - this is answred. thank you!\n", "comments": [ { "author": "Kristian Klima", "body": "Actually, [@hpatani](/t5/user/viewprofilepage/user-id/5491322) , if your link points to a DataCenter docs, you seem to be on Cloud :)\n\n<https://support.atlassian.com/confluence-cloud/docs/insert-the-widget-connector-macro/>\n\nYou can simply use an iFrame macro :)\n" } ] }, { "author": "Liam - DevSamurai", "body": "Hi [@hpatani](/t5/user/viewprofilepage/user-id/5491322),\n\nYou can directly paste the YouTube link to embed videos into the Confluence page:\n\n1. Paste your link to the page\n2. Find the **Embed** option from the pop-up panels \n ![CleanShot 2024-09-13 at [email protected]](https://community.atlassian.com/t5/image/serverpage/image-id/347284i484D71DFB35960A4/image-size/large?v=v2&px=999 \"CleanShot 2024-09-13 at [email protected]\")\n3. Your video will show up like the image below, you can also easily adjust the size of the embedded video and other simple display setups \n ![CleanShot 2024-09-13 at [email protected]](https://community.atlassian.com/t5/image/serverpage/image-id/347290iEFA6D4F12B9808F5/image-size/large?v=v2&px=999 \"CleanShot 2024-09-13 at [email protected]\") \n\nThat's all. I hope it helps!\n", "comments": null } ]
https://community.atlassian.com/t5/Confluence-questions/Embed-youTube-videos-in-confluence/qaq-p/2810866
[ "cloud", "confluence-cloud" ]
{ "author": "Todd Milbourn", "title": "Live search macro problem", "body": "Hello, \n\nI help support our team's use of Confluence and we're encountering an issue with the live search macro. Several of our users are reporting that the search is no longer able to turn up any matches. This is odd because other search bars we have available continue to work. I've had them log out and log back in. I've also removed the existing live search macro, replaced it with a fresh one and updated the page. That still didn't work. \n\nDo you have any suggestions for next steps? \n\nI've included screenshots for reference. Thank you! \n\n<br />\n\n<br />\n\n![image (1).png](/t5/image/serverpage/image-id/347127i0C4420499FA8D19E/image-size/large?v=v2&px=999 \"image (1).png\")![image.png](/t5/image/serverpage/image-id/347128i3F4DCE68BC7089C5/image-size/large?v=v2&px=999 \"image.png\")\n" }
[ { "author": "Valerie Knapp", "body": "Hi [@Todd Milbourn](/t5/user/viewprofilepage/user-id/5201282) , thanks for your question.\n\nThere is currently an active incident impacting Confluence in the cloud. Please see here the message <https://confluence.status.atlassian.com/>\n\nPlease track the resolution of this incident and see if that resolves the problem.\n\nI hope this helps you.\n\nCheers\n", "comments": [ { "author": "Todd Milbourn", "body": "Thank you, Valerie! This is super helpful and much appreciated\n" }, { "author": "Todd Milbourn", "body": "Hi [@Valerie Knapp](/t5/user/viewprofilepage/user-id/4929946) \n\nThe search function started working again for me personally last night around 2 p.m. PT. However, we still have colleagues who are unable to access search results. \n\nDo you know why it might be affecting some of our users but not others?\n" } ] } ]
https://community.atlassian.com/t5/Confluence-questions/Live-search-macro-problem/qaq-p/2810784
[ "cloud", "confluence-cloud" ]
{ "author": "Marcus_Webb", "title": "How to hide images from Insert Confluence List macro", "body": "Hi Fellow Confluencers\n\nI used the Insert Confluence list pre-built Macro in a page to get a granluar list of all the pages I'd edited, but it shows the Images I inserted also. Is there a way to only list the Pages (not the images)?\n\nKind Regards\n\nMarcus Webb\n" }
[ { "author": "Barbara Szczesniak", "body": "[@Marcus_Webb](/t5/user/viewprofilepage/user-id/5489420) Welcome to the Atlassian Community.\n\nIt's odd; I can't find a page for this macro in the Confluence documentation, but I am able to add the macro on my page. I thought maybe there would be a help link once I inserted it, but no.\n\nI did find a similar macro that was deprecated for the new editor (<https://support.atlassian.com/confluence-cloud/docs/insert-the-search-results-macro/>). This macro had a **Content Type** parameter that would allow you to exclude attachments, but there is not a similar parameter for the **Insert Confluence list** macro.\n", "comments": null } ]
https://community.atlassian.com/t5/Confluence-questions/How-to-hide-images-from-Insert-Confluence-List-macro/qaq-p/2810779
[ "cloud", "confluence-cloud" ]
{ "author": "Adam Long", "title": "Does the Structure Gadget from Jira still work in Confluence", "body": "I'm recently upgraded my Confluence to 8.5.10 which I have integrated with Jira 9.4.1, and I noticed that I can no longer see the Jira Gadgets in Confluence. Is there a trick to get Jira Gadgets. I have the gadgets feed setup in Confluence.\n" }
[ { "author": "Dave Mathijs", "body": "Hi [@Adam Long](/t5/user/viewprofilepage/user-id/5409237) Are you talking about a Confluence \"Macro\" of the third-party app **Structure**? You asked this question in the Confluence group and tagged Confluence but talk about gadgets in Jira.\n", "comments": [ { "author": "Adam Long", "body": "The macro. In Confluence I go to the Other Macros and it's no longer available. My understanding is the macro was made available when I added the gadgets feed for my Jira to Confluence.\n\nNote: If I try to edit a page with an existing macro defined I get a title like\n\nEdit '__MSG_gadget.activity.stream.title__' Macro {#toc-hId--327628115}\n-----------------------------------------------------------------------\n" } ] } ]
https://community.atlassian.com/t5/Confluence-questions/Does-the-Structure-Gadget-from-Jira-still-work-in-Confluence/qaq-p/2810740
[ "confluence-data-center", "confluence-server", "data-center", "server" ]
{ "author": "Mark Carroll", "title": "Installed apps do not work in conflunece or jira.", "body": "Hi, I'm having an issue with Installed not working in confluence or jira.\n\nThe Easy Heading Macro app in Confluence and the Jira checklist app have stopped functioning correctly. They were working previously, but for some unknown reason, they have ceased to function. Both these apps in Jira and Confluence are working fine for the rest of my team.\n\nI have cleared all browser data, restarted the browser, restarted the computer, and tried a different browser. I also attempted the Jira macro repair, but it did not work either.\n\nThe issues.\n\nIn confluence Easy heading Macro no longer shows the table of contents on any of my pages. It will not let me uninstall but it is present if I click the edit pencil on the page. If I click the configure icon nothing happens.\n\nIn the Jira checklist, when I click on a checklist, no information appears; it just shows the loading circle. If I click 'Configure,' it goes to another screen and again just shows the loading circle. Uninstalling and reinstalling the checklist does not fix the issue.\n\nGoogle Docs+ for Jira will not let me uninstall it. When I click 'Get Started' or 'Configure,' both just display the loading screen. I do not need this app and would like to uninstall it. This was the last app I installed, and I wonder if it is the root of the issue.\n\nI have also noticed if I create a jira task in a confluence table using / it will show the loading circle. I left it for about ten minutes and it still showed the loading circle. It did however create the issue in jira but it did not show the issue in the table I created it in.\n\nI'm using\n\nWindows 10\n\nChrome Version 128.0.6613.121 (Official Build) (64-bit)\n\nThanks for any help in advance,\n\nMark\n" }
[ { "author": "Dave Mathijs", "body": "Hi [@Mark Carroll](/t5/user/viewprofilepage/user-id/3768269) welcome to the Atlassian Community!\n\nPlease note that there currently is an active incident for multiple Atlassian products. You can follow the status on <https://status.atlassian.com> and subscribe for updates.\n\nPersonally, I would wait until this issue is resolved before further troubleshooting.\n", "comments": [ { "author": "Mark Carroll", "body": "Thank-you for the swift reply Dave, I will wait as you advise.\n\nThanks\n\nMark\n" } ] } ]
https://community.atlassian.com/t5/Confluence-questions/Installed-apps-do-not-work-in-conflunece-or-jira/qaq-p/2810682
[ "cloud", "confluence-cloud" ]
{ "author": "thierry_d", "title": "Call Blocking Feature in Vonage Contact Center", "body": "We have recently moved from VBC to VCC. We use the Call Blocking feature on VBC to disallow outbound calls to a list of numbers. Does VCC use that list or is there a way to add blocked (Do Not Call) numbers to the Vonage Call Center system.\n" }
[ { "author": "Dave Mathijs", "body": "Hi [@thierry_d](/t5/user/viewprofilepage/user-id/5591004) welcome to the Atlassian Community!\n\nHow is this question related to **Confluence**? I don't really understand, would you please elaborate?\n", "comments": null } ]
https://community.atlassian.com/t5/Confluence-questions/Call-Blocking-Feature-in-Vonage-Contact-Center/qaq-p/2810664
[ "confluence-unknown-hosting-type", "unknown-hosting-type" ]
{ "author": "Ines C", "title": "Notification when given access to a product?", "body": "Hi everyone,\n\nWill users receive an email notification when they are granted access to a product? For example, if they already have access to JIRA as a \"User\" and then they are assigned a \"User\" role in Confluence, will they be informed about it?\n\nThank you.\n" }
[ { "author": "Dave Mathijs", "body": "Hi [@Ines C](/t5/user/viewprofilepage/user-id/5533238) If they already have product access, but now have an additional role, I don't think they get a separate email notification.\n", "comments": [ { "author": "Ines C", "body": "Thank you [@Dave Mathijs](/t5/user/viewprofilepage/user-id/2662590)\n" }, { "author": "Dave Mathijs", "body": "While re-reading your question, can you try to explain what you mean exactly by \"assigned a User role in Confluence\"?\n\nBecause granting someone product access gives them the user role automatically in Confluence Cloud.\n\nThere are two roles in Confluence:\n\n1. Users\n2. Admins\n\nSo, how would product access as a user be different from what you describe the \"user role\"?\n" }, { "author": "Ines C", "body": "Hello [@Dave Mathijs](/t5/user/viewprofilepage/user-id/2662590)\n\nNot sure if I understood the question. I'm referring to the \"User\" drop-down option when granting someone access to a product via Confluence Settings \\> User management.\n\nSee here:\n\n![Screenshot 2024-09-13 at 14.17.36.png](https://community.atlassian.com/t5/image/serverpage/image-id/347344i0E6EDA88B6C6594C/image-size/large?v=v2&px=999 \"Screenshot 2024-09-13 at 14.17.36.png\")\n" }, { "author": "Dave Mathijs", "body": "That means we're on the same page [@Ines C](/t5/user/viewprofilepage/user-id/5533238)\n\nGranting someone the **User** product role provides ++product access++ without admin permissions.\n\nIf you were a **Product admin** already and now you select **User** additionally, then you won't receive a notification.\n\nIf you don't have are role yet and you are granted the **User** role, then you will receive a notfication.\n" }, { "author": "Ines C", "body": "Got it - thank you so much [@Dave Mathijs](/t5/user/viewprofilepage/user-id/2662590)\n" } ] } ]
https://community.atlassian.com/t5/Confluence-questions/Notification-when-given-access-to-a-product/qaq-p/2810665
[ "cloud", "confluence-cloud" ]
{ "author": "Polina Solovyeva", "title": "I can't make a page", "body": "Issue ID for Atlassian use: a8550104060e44a5a736039038f0e7fa\n" }
[ { "author": "Fabio Racobaldo _Herzum_", "body": "Hi [@Polina Solovyeva](/t5/user/viewprofilepage/user-id/5591002) and welcome,\n\nplease provide us more information about your current issue.\n\nFabio\n", "comments": null } ]
https://community.atlassian.com/t5/Confluence-questions/I-can-t-make-a-page/qaq-p/2810647
[ "confluence-unknown-hosting-type", "jira-software", "unknown-hosting-type" ]
{ "author": "David Richardson", "title": "Invite a customer/client to a project space (or even page) as a guest with restricted access", "body": "Hi,\n\nWe'd like to invite a client of ours to view the work we're doing within our project space for said client as a restricted guest.\n\nI've tried to create a new group and add external email addresses but when the link is clicked from the invite email the external party can choose different projects of ours to go into.\n\nWe want to be able to invite a few stakeholders from the client side with 'view only' permissions and full restriction on how they can navigate within the projects, spaces and pages of our organisation - ie. they shouldn't be able to see any other projects or navigate within our org confluence at all.\n\nIt seems like there should be a reasonably straight forward way to set this up but I can't find any good tutorial or info in the community. I may be overlooking something so feel free to point me in the right direction - but otherwise, any solution to this problem is much appreciated.\n" }
[ { "author": "Shawn Doyle - ReleaseTEAM", "body": "The way to do this is to protect all spaces and pages you don't want the client to see.\n\nI will typically create a safe group, throw everyone except the external clients into this group, Then add that group to all spaces for read access, You can also create a group for edit access and one for more admin-type things.\n\nBe sure not to add the external users to these safe groups, they should just have the confluence-user and the special external group, and once all that is done, your external users are restricted to just the space/page you want them to be.\n", "comments": null } ]
https://community.atlassian.com/t5/Confluence-questions/Invite-a-customer-client-to-a-project-space-or-even-page-as-a/qaq-p/2810594
[ "cloud", "confluence-cloud" ]
{ "author": "Andreea Olteanu", "title": "Can I apply a standardized header to all existing Confluence pages without manual edit?", "body": "Hi,\n\nI'm looking for advice on how to standardize the layout across all pages in a Confluence space, particularly focusing on applying a consistent header. Here's what we are aiming to achieve:\n\n**For example**, the header should include:\n\n* A specific image that appears consistently on every page.\n* A table directly below the image with fixed dimensions (e.g., consistent column widths), but the data inside the table should be editable. This way, users can input different information on each page.\n\n**My question is:** \nIs it possible to apply this updated header structure to all existing pages automatically, without manually editing each page? Ideally, I'm looking for a solution that can be applied efficiently across an entire Confluence space. If anyone has experience with automating this process or knows of any tools/add-ons that could help, I'd appreciate the guidance!\n\nThanks in advance for your help!\n" }
[ { "author": "Fadoua", "body": "[@Andreea Olteanu](/t5/user/viewprofilepage/user-id/5590942)\n\nWelcome to the Atlassian Community!\n\nDid you try to use a template? Only if you are a Confluence Admin you can create a template then make it a global one.\n\nPlease check the following link for more details on how to create it:\n\n<https://confluence.atlassian.com/doc/page-templates-296093785.html>\n\nLet me know if you have any questions\n\nBest,\n\nFadoua\n", "comments": null } ]
https://community.atlassian.com/t5/Confluence-questions/Can-I-apply-a-standardized-header-to-all-existing-Confluence/qaq-p/2810557
[ "confluence-data-center", "data-center" ]
{ "author": "Andrei Eleodor Sirbu", "title": "How to prevent automated sections in whiteboards from executing the action on each page load ?", "body": "Hello community,\n\nWe have identified a problem so I'm posting here first in case someone has a workaround.\n\nWe have whiteboards with automated sections which we use for specific ceremonies. Teams use them to quickly place their stories in the right section, which then automatically assigns the story to a sprint. It all works like a charm.\n\nNow let's say we place issue A in an automated section which applies Sprint A to that issue.\n\nThree weeks later, the team moves that issue from Sprint A to sprint B (through the backlog view in Jira)\n\nWhenever we open the whiteboard, it loads the sections first, then the Jira issues which acts as a manual operation and executes the automation. The result is that the story will move back to its previous sprint.\n\nSo unless we cut the automations at the end of our ceremony, or block access to the whiteboard so nobody loads it anymore I didn't find a way to prevent this from happening.\n\nKind regards\n\nAndrei\n" }
[ { "author": "Hans Polder", "body": "Hi [@Andrei Eleodor Sirbu](/t5/user/viewprofilepage/user-id/5314260) ,\n\nApologies for my previous comment - I had multiple tabs open and was intending to close another duplicate post ;)\n\nWith regards to your post: Thanks for detailing your case so much! This should be reproducible, however I can imagine that taking some time. I've asked someone from Atlassian Support to take a look at this case, as it seems like a bug or at least undesired/unexpected behavior!\n", "comments": [ { "author": "Andrei Eleodor Sirbu", "body": "Hello [@Hans Polder](/t5/user/viewprofilepage/user-id/5506451) , thank you for raising the issue to your team.\n\nIf you'll find it hard to reproduce your team might want to try with a larger volume of issues (50+) scattered acccross different automated sections.\n\nHave a great day\n\nAndrei\n" } ] }, { "author": "Dhanush", "body": "Hi [@Andrei Eleodor Sirbu](/t5/user/viewprofilepage/user-id/5314260) , I created a support ticket for our Technical Support team to assist you. You will soon hear back from our team with the ticket number!\n", "comments": [ { "author": "Andrei Eleodor Sirbu", "body": "Hi Dhanush, thank you I've received a response already :)\n\nWe're following the issue with the technical team.\n\nKind regards\n\nAndrei\n" } ] } ]
https://community.atlassian.com/t5/Confluence-questions/How-to-prevent-automated-sections-in-whiteboards-from-executing/qaq-p/2810490
[ "cloud", "confluence-cloud", "whiteboards" ]
{ "author": "Leah Pearlstein", "title": "Can I pin a Confluence Question so it always shows at the top?", "body": "While we don't have lots of users actively voting on questions to be able to make the best use of the \"Popular\" tab, we do have questions that come up frequently. We were wondering if there was a way to \"pin\" a question at the top of the list, so users read it first before even having to search?\n" }
[ { "author": "Steffen Opel _Utoolity_", "body": "I'm not aware of a way to achieve this. The 'FAQ' use case is not well supported in general right now, even though there aren't many features missing before CQ would be just great for this scenario - the following related issue already has a comment proposing to add the pinning of questions too:\n\n* <https://jira.atlassian.com/browse/CQ-759>\n\nYou might want to watch and vote for this issue accordingly, possibly adding a comment detailing your particular use case. Alternatively, you might simply add a more specific feature request right away of course.\n", "comments": [ { "author": "TomC", "body": "Thank you Steffen. I voted and added a comment.\n" } ] }, { "author": "TomC", "body": "Great question @Leah Pearlstein. The only way we've come up with for now is to ask a number of people in the organization to please vote up a particular question, enough so that it is effectively pinned at the top. As you've also observed, it doesn't appear that voting up questions (vs voting up answers) is something people tend to do in our organization either.\n\nWe are thinking of using this technique to pin a basic item - a Q\\&A on \"How do I use Confluence Questions\" - as currently there is no way to provide instructions and good practices for effective use such as voting up questions and answers, checking 'best answer', using comments instead of multiple replies for clarifications and so on.\n\nIf there is another way to pin a question as a more or less 'sticky' at the top of CQ, it would be good to know. If there is not another way, then this sounds like a good feature request.\n", "comments": [ { "author": "Leah Pearlstein", "body": "Great! Thanks, Tom\n" } ] }, { "author": "Leah Pearlstein", "body": "Thanks!\n", "comments": null }, { "author": "TomC", "body": "@Leah Pearlstein I converted my comment to an answer to see what would happen and your comment didn't move with it. ;( Sorry for the trouble, but feel free to delete your comment here and upvote my answer if that's easier. I'll be moving on trying this 'upvoting question' option soon here so feel free to keep in touch with me at tom dot crespi at gmail dot com\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/Can-I-pin-a-Confluence-Question-so-it-always-shows-at-the-top/qaq-p/48529
null
{ "author": "dosjots", "title": "can a question be restricted to a space", "body": null }
[ { "author": "TomC", "body": "Hi Jason,\n\n**Yes, a question can be restricted to a space.**\n\nHere is a detailed description of how that works from Atlassian's own documentation - this is from the [Questions and Answers](https://confluence.atlassian.com/questions/questions-and-answers-407724478.html) page (excerpt):\n\n### Ask in a space {#toc-hId-1506312026}\n\nSometimes a question only relates to one team or project or just shouldn't be visible to everyone. By asking a question in a space, you get the benefit of the space permissions - only people who can view the space can search for and see questions that were asked there.\n\nTo ask a question in a space, go to the space and choose **Questions** on the sidebar (if you can view the space you'll be able to ask and answer questions). Alternatively, you can go to **Create** \\> **Ask a question** and choose the right space from the drop down.\n\nOnly the question is private - topics are visible to everyone who can use Questions. For example if you ask \"How much is the staff bonus this quarter?\" and add the topic 'bonus-q4' in a space that only senior managers can see, other people will be able to see the topic 'bonus-q4' and that there's one question for that topic, but not the question itself.\n\nNote: Viewing questions in a space is not available in the documentation theme ([find out why](https://confluence.atlassian.com/confkb/blog/2012/12/advance-warning-of-plans-to-merge-documentation-theme-with-the-default-theme)), and may not be available in some third party or custom themes.\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/can-a-question-be-restricted-to-a-space/qaq-p/412329
null
{ "author": "ppittle", "title": "Does Slack for Confluence support Confluence Q&A?", "body": "The Confluence QA integration with HipChat supports notifications when a new Question is Asked in Confluence Q\\&A:\n\nimage2016-5-4 12:13:14.png\n\nDoes Slack for Confluence also support getting this information into Slack? Also will it support notifications when a new answer is added? \n[](https://community.atlassian.com/t5/Questions-for-Confluence/Does-Slack-for-Confluence-support-Confluence-Q-A/qaq-p/411231?attachment-id=8009){#link_11548513539009} \n[](/tnckb94959/attachments/tnckb94959/questions-for-confluence-questions/1253/1/image2016-5-4%2012%3A13%3A14.png){#display_11548513539009_0}\n" }
[ { "author": "Ben Romberg - codefortynine", "body": "Edit: Slack for Confluence now supports Confluence Questions, as [explained in our documentation](https://codefortynine.com/slack-for-confluence/#markdown-header-confluence-questions-configuration). Let me know if you have any questions!\n\nOriginal answer:\n> As the author of Slack for Confluence, I've quickly looked into possibilities. It turns out this is possible by polling the Confluence Questions REST API, although the effort is nontrivial.\n>\n> We'll be collecting interest for this functionality [in our issue tracker](https://bitbucket.org/codefortynine/slack-for-confluence/issues/4/support-for-confluence-questions) and will build it once we're convinced the effort is going to pay off. Please leave a comment over there in case you're interested in this enhancement.\n>\n> Thanks!\n", "comments": [ { "author": "Dan Schepers", "body": "I'm interested! (the issue tracker link gave me a 404)\n" }, { "author": "Ben Romberg - codefortynine", "body": "[@Dan Schepers](/t5/user/viewprofilepage/user-id/1358288): Sorry about that, I just updated the link to the new location of our issue tracker.\n\nWe've released Confluence Questions compatibility as of October 2017. Let me know if this satisfies your requirements!\n" }, { "author": "Michael Khaimov", "body": "Interested, for sure!\n" }, { "author": "Ben Romberg - codefortynine", "body": "This has been available now for quite some time for both cloud and server versions of Slack for Confluence, [see the documentation for details](https://codefortynine.com/slack-for-confluence/#markdown-header-confluence-questions-configuration).\n" }, { "author": "Nikolai Besschetnov", "body": "[@Ben Romberg - codefortynine](/t5/user/viewprofilepage/user-id/664921)\n\nI, unfortunately, can not find the corresponding place with slack notifications configuration for Confluence's Questions \\& Answers. Not that I can find anything slack related in the documentation of the addon. We use cloud, q\\&a installed as an app.\n\nCould you please direct me to the right place by providing a relative link or exact piece of documentation how to reach the page with slack settings for q\\&a?\n\nThank you!\n" }, { "author": "Ben Romberg - codefortynine", "body": "Hello [@Nikolai Besschetnov](/t5/user/viewprofilepage/user-id/3105434) and thanks for your question!\n\nThe configuration for Confluence Q\\&A is available underneath the General Configuration and Space Configuration sections of Slack for Confluence.\n\nYou can find the General Configuration as [described in the documentation](https://codefortynine.com/slack-for-confluence/#markdown-header-general-usage):\n> Please head to the General configuration \\[of Confluence\\] and select the \"Slack for Confluence\" menu entry on the left side under the \"Configuration\" category.\n\nMaybe the following screenshot also helps you finding our General Configuration:\n\n![general-configuration-link.png](https://community.atlassian.com/t5/image/serverpage/image-id/76111iCD92BA053248820F/image-size/large?v=v2&px=999 \"general-configuration-link.png\")\n\nLet me know if you need further assistance - happy to help!\n" } ] }, { "author": "Steven F Behnke", "body": "Confluence Webhooks have not been released yet and I don't know if there is official word on when that will happen. They are listed in [Confluence Developer](https://developer.atlassian.com/static/connect/docs/latest/modules/common/webhook.html) so I think it will happen eventually but again, nothing official.\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/Does-Slack-for-Confluence-support-Confluence-Q-A/qaq-p/411231
[ "addon-com.madein49.slack-for-confluence", "cloud" ]
{ "author": "MadelineBarr", "title": "Questions for Confluence Plugin: a few questions? Topics, experts and closing", "body": "Hi,\n\nWe are evaluating the Questions for Confluence plugin on our hosted Confluence server.\n\n### Questions for Confluence support: server vs plugin {#toc-hId-1155209905}\n\nFirst, I'm finding it difficult to find answers because I have to sift through people's questions for Confluence (the server) to find answers about the plugin. There's people's \"questions for Confluence\" the server and people's \"Question for Confluence\" the plugin. I want answers for the plugin.\n\n### My questions about the plugin (ver 2.4.11) {#toc-hId-2042713586}\n\nAnyway, I have the following questions for the Questions for Confluence plugin:\n\n1. **Is there anyway for an admin to 'close' a question?** As in, not allow anyone else to add an answer. On some questions we would like the ability to make sure the correct answer is selected by our experts and then not allow any more actions on the question. My guess is 'no' and we just have to have the experts accept the correct answer and then watch the question for any changes.\n2. **Can we preset a few experts?** We would like to start off some users with a set amount of points. Again, my guess is the answer is 'no', in which case we have them populate some questions and answers so they can 'earn' the points.\n3. **Topics**. This is the question I'm most interested in. Can we restrict which users can create topics? I believe I saw in another question that the answer is 'no'. So, if we create the topics we want, is there an option to turn off the create topic feature? Is there a module in the plugin I can disable?\n\nI personally think it's not a bad thing for users to be able to create topics but perhaps only after earning some points. With everyone having the ability to create topics, I can see it quickly getting out of hand. If there is a good way of managing topics and random topic creation, I would be interested in hearing about it.\n\nThanks for your time.\n" }
[ { "author": "Bren Lane", "body": "I'm interested in all three questions as well.\n", "comments": null }, { "author": "diconium", "body": "Some news to this 3 points? We are also interested.\n", "comments": null }, { "author": "Joe Lindsay", "body": "Did you find any information on the third question?\n\nI am also interested in if there is a way to manage the topic creation, and which topics are available at a space level.\n\n1. To insure consistency\n2. So that people watching tags are correctly informed\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/Questions-for-Confluence-Plugin-a-few-questions-Topics-experts/qaq-p/24079
null
{ "author": "Don Donzal", "title": "'No Macro Metadata' error for 'Questions List' Macro. Help?", "body": "We upgraded Confluence from 5.9.4 to 5.9.8, and now we are seeing:\n>\n> No macro metadata {#toc-hId-1679943350}\n> ---------------------------------------\n>\n> There is no metadata configured for this macro which means no configuration screen can be presented here.\n>\n> If this is a user macro then you can add metadata to the template using the [User Macro Administration](https://mysource.optiv.com/admin/usermacros.action) console.\n\nClearly this is not a user macro. So I thought I might just delete the macro and insert it again, but the \"Questions List' macro no longer appears on my list. So I looked up some help files and was recommended that I look to see if some plugins or add-ins needed to be re-enabled. I saw no admin plugins that needed to be enabled that looked related to Confluence Questions. All modules in Questions for Confluence Add-In were enabled except for one, questions-welcome-file, but it reads that the module cannot be modified when I hover over it.\n\nNot sure if this helps as well, but we've been noticing that a number of items mysteriously get disabled, breaking many things in our Confluence instance. Enabling them again fixes it, but it's sometimes a pain to figure out which it is and we can't figure out why this is happening.\n\nAny thoughts?\n\nThanks in advance, \nDon\n" }
[ { "author": "Aleks Yenin (Polontech)", "body": "Hi,\n\nHave a look on resolution here: <https://confluence.atlassian.com/confkb/no-macro-metadata-errors-347341441.html>\n", "comments": [ { "author": "Don Donzal", "body": "I did find that page, and we are using the Adaptavist Rate Macro add-on. I didn't think that was the issue, since we updated it to the most recent version.\n\nNothing else worked, so we went back to this document after you suggested it again. Figured why not. So we disabled the Rate Macro, and sure enough the Questions List macro appears again in the list of available macros to insert and the instances of it throughout the site can again be edited and work fine. We then re-enabled the Rate Macro add-on and everything still works.\n\nSo there you go. Not exactly sure technically what it was, but doing that fixed it.\n\nThanks, \nDon\n" } ] } ]
https://community.atlassian.com/t5/Questions-for-Confluence/No-Macro-Metadata-error-for-Questions-List-Macro-Help/qaq-p/379094
null
{ "author": "Nino Walker", "title": "What is the criteria for becoming an \"expert\"?", "body": "*This question is in reference to Atlassian Documentation: [Votes and Experts](https://confluence.atlassian.com/pages/viewpage.action?pageId=407724481)*\n\nThere's a scoring mechanism, but what are the thresholds?\n" }
[ { "author": "NotTheRealStephenSifersNOPENOPENOPENOPE", "body": "Everyone is a possible expert, but the leader board shows the top \"earners\" of the title expert.\n\nQuote from the link you linked:\n\nThe leader board recognises the top experts for the current week, and the top experts of all time. There's also a leader board for each topic, to recognise experts in specific fields.\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/What-is-the-criteria-for-becoming-an-quot-expert-quot/qaq-p/230930
[ "cloud", "confluence" ]
{ "author": "Bharadwaj Jannu", "title": "Where are my earlier questions, answers and points in my profile?", "body": "Hi Atlassian Support,\n\nI am unable to see all my previous questions, answers and karma points in my profile.\n\nCould you update in my profile.\n\nThanks!\n" }
[ { "author": "Bharadwaj Jannu", "body": "I logged in to Atlassian answers with my another account. Sorry for any confusion.\n\nThanks\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/Where-are-my-earlier-questions-answers-and-points-in-my-profile/qaq-p/263693
[ "community", "karma" ]
{ "author": "Trudy Claspill", "title": "Questions for Confluence: what is the definition of the \"popular\" filter?", "body": "We have Questions for Confluence v2.3.4. On the Questions home page is a default filter named \"Popular\". What is the definition of that filter?\n\nThe page was showing questions until this past weekend. At that time we did a merge of data from another Confluence instance, and a re-index was performed. Now the Popular filter says \"no questions found\".\n" }
[ { "author": "NotTheRealStephenSifersNOPENOPENOPENOPE", "body": "Whether a question is popular is based on the number of answers, comments and up votes it has. You may find that your questions do not appear because they are competing with pages and blog posts that have more likes and comments.\n\n<br />\n\nSource: <https://confluence.atlassian.com/questions/confluence-questions-faq-407724483.html>\n", "comments": [ { "author": "Trudy Claspill", "body": "Thank you for that response. However, it is not very helpful.\n\nI am not seeing even a single entry when the Popular filter is used. Therefore it is not a matter of competition with other pages. Nothing at all in our Questions space is considered popular. We have questions with and without answers, and questions with and without votes. None of them appear.\n" }, { "author": "NotTheRealStephenSifersNOPENOPENOPENOPE", "body": "I understand the pages have votes, but do any of them have likes?\n\nThe documentation states that if the page is \"liked\" it will show on the popular tab:\n\nLikes and Popular Content {#toc-hId-1842141193}\n===============================================\n\nHas someone written a good blog post or page on Confluence? Or made a comment you agree with? Click the **Like** button to them know. ![](https://confluence.atlassian.com/doc/files/278695530/LikedIcon.png)\n\nWhen you like a page, blog post or comment, the author of the content receives a notification. If enough people like the content, it'll appear on the **Popular** tab of the [dashboard](https://confluence.atlassian.com/doc/the-dashboard-139374.html).\n\nSource: <https://confluence.atlassian.com/doc/likes-and-popular-content-278695530.html>\n" }, { "author": "NotTheRealStephenSifersNOPENOPENOPENOPE", "body": "When you state you re-indexed, did you just re-index confluence or also the plugins?\n\n#### Restoring plugin indexes and popular content {#toc-hId-1252600700}\n\nFor all versions of Confluence, the following files and folders may exist in the index folders:\n\n* `<confluence-home>/index/plugin` - this is where the [Usage Tracking plugin](https://ecosystem.atlassian.net/wiki/display/USGTRK/Confluence+Usage+Tracking+Plugin;jsessionid=436EA28FDC2261B6AC414C73B07F3A8F) stores the usage statistics\n* `<confluence-home>/index/edge` - this is where popularity data for regular content is stored\n* `<confluence-home>/index/questions-edge` - this is where [Confluence Questions](https://www.atlassian.com/software/confluence-questions) stores popularity data\n\nEdge indexes are simply pointers to what is popular in the primary index. By clearing the edge index, Confluence must learn what is popular content again, which will take time to re-learn. If you need to restore the popular data from your backup:\n\n1. Shut down Confluence\n2. For each file listed above that exists in your backup, restore it to the correct location\n3. Restart Confluence \n\nSource: <https://confluence.atlassian.com/confkb/how-to-rebuild-the-content-indexes-from-scratch-110035351.html>\n" }, { "author": "Trudy Claspill", "body": "Thank you, Stephen. That is very helpful information.\n\nI did not do the re-index myself, but I'll pass it on the sysadmins who did.\n" } ] } ]
https://community.atlassian.com/t5/Questions-for-Confluence/Questions-for-Confluence-what-is-the-definition-of-the-quot/qaq-p/214406
null
{ "author": "Philip Colmer", "title": "Does Service Desk integrate with Questions?", "body": "I know that Service Desk integrates with Confluence for the Knowledge Base functionality but I was wondering if it can also query Questions to get possible help answers that way? In the testing I've done, it doesn't seem to but I wanted to check before raising an improvement suggestion.\n" }
[ { "author": "Steffen Opel _Utoolity_", "body": "This often requested feature does not seem to be available yet - please watch/vote/comment on the following issues to further increase awareness for this notable limitation:\n\n* <https://jira.atlassian.com/browse/JSD-35>\n* <https://jira.atlassian.com/browse/CQ-361>\n", "comments": [ { "author": "Philip Colmer", "body": "Thanks for the links, Steffen! Much appreciated.\n" } ] }, { "author": "Bren Lane", "body": "Has any progress been made for this suggestion? I viewed the jira tickets, but they're still open and haven't been updated for years.\n", "comments": [ { "author": "Chris Arrington", "body": "Take a look at [Refined Them for Jira Service Desk](https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwir-t20q5XZAhVkyVQKHTIPBjEQFggnMAA&url=https%3A%2F%2Fmarketplace.atlassian.com%2Fplugins%2Fcom.refinedwiki.jira.servicedesk.refinedtheme%2Foverview&usg=AOvVaw3Ne_w0WgtxwTld4CTW8lbO) This JSD plugin is 1000% improvement for OOTB JSD and it integrates with Confluence Questions in addition to allowing you the ability to control which Confluence Spaces are included in search.\n" }, { "author": "Bren Lane", "body": "Thanks Chris. We abandon the idea of using questions within Confluence.\n" } ] } ]
https://community.atlassian.com/t5/Questions-for-Confluence/Does-Service-Desk-integrate-with-Questions/qaq-p/48356
[ "jira-service-desk" ]
{ "author": "kunitaka", "title": "Confluence Questions lucene write.lock remain", "body": "Hi,\n\nNow, I faced with performance problem about Confluence.\n\nOnce Confluence is slow, even it Confluence is restarted, problem is not resloved.\n\nSo, I delete disk cache of Linux, problem is resolved.\n\nI don't know what is effect to disk cache.\n\nCurrently under investigation and I find strange somthing in Confluence Questions.\n\nThere is always a write.lock in directory.\n\n\\<confluence home directory\\>/index/quetions-edge/\n\nIt is maked when confluence is started.\n\nMaybe this file shuld be deleted. Is it right?\n\nConfluence 5.7.1\n\nBest Regards\n" }
[ { "author": "Nic Brough -Adaptavist-", "body": "NO! That file is there to prevent damage being done by trying to start other Confluence systems with the same data. Do NOT touch it. It is safe to delete it when Confluence is definitely stopped, but never never touch it (or any other Confluence files for that matter) while it is running.\n\nI don't know what cache you've cleared (it's fine to clear most of them, again, while it's not running), but to be on the safe side, I would re-index Confluence through the admin UI, sometime when your users are not too active.\n", "comments": [ { "author": "kunitaka", "body": "Thanks.\n\nI refer to below\n\n<https://jira.atlassian.com/browse/CONF-29004>\n\nSo, I think write.lock file of Confluence Questions should be deleted.\n\nAnd I have already done re-index, but problem is occured.\n\nMany Thanks\n" }, { "author": "Nic Brough -Adaptavist-", "body": "No.\n\nDo not touch the file while Confluence is running. Stop Confluence. Remove the file. Restart Confluence.\n\nCould you explain what the actual problem is here? What symptoms are you investigating?\n" }, { "author": "kunitaka", "body": "> \\> Do not touch the file while Confluence is running. Stop Confluence. Remove the file. Restart Confluence.\n\nUnderstand.\n> Could you explain what the actual problem is here?\n\nSuddnely, CPU load , and DB(mysql) thread is up to limit.\n\nThis problem is sometimes occured. When it is occured, I restart confluence to reslove.\n\nBut, in this case, I could not reslove problem even if I restarted confluence.\n\nSo, to reslove, we tried other ways.\n\n* MySQL restarted\n\nAnd That I cleared disk cache is effectual.\n\n```\necho 1 > /proc/sys/vm/drop_caches \n```\n\nI suspect lucene is something wrong.\n" }, { "author": "Nic Brough -Adaptavist-", "body": "Ok, what makes you think it is Lucene? Have you checked the log files and the cache settings inside Confluence?\n" }, { "author": "kunitaka", "body": "I'm sorry. I'm late.\n\nThe cause is hardware trouble. A part of memory is not good.\n\nThank you for your cooperation.\n" } ] } ]
https://community.atlassian.com/t5/Questions-for-Confluence/Confluence-Questions-lucene-write-lock-remain/qaq-p/163083
null
{ "author": "Paul LaBarbera", "title": "Filter Questions List by Space?", "body": "I want to display a list of questions filtered by topic and space. I want to enclose this list within a user macro, and paramaterize the topics, so I can embed it on multiple pages. I see two options that get me half-way where I need to be:\n\n**Questions List Macro**\n\nThe Questions List macro lets me filter by topic, but it doesn't restrict by space.\n\n**All Questions in a Space**\n\nWhen I go to confluence/SPACEKEY/questions/all it displays a list of all questions in a given space. my client wants to have a filterable (and linkable) version of this page. *Ideally I want this page enclosed within a user macro, and I want the topics it's filtering on to be a parameter*.\n\ncan someone help with this?\n" }
[ { "author": "dosjots", "body": "Any updates? Have similar questions around limiting questions to spaces and have seen a few questions asked but no answer back.....\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/Filter-Questions-List-by-Space/qaq-p/344889
null
{ "author": "Russell Wurth", "title": "Is it possible to reassign points to a different answer in Questions?", "body": "If an answer is upvoted but later is determined to not be the best answer is it possible to reassign points from one answer to another?\n" }
[ { "author": "Phill Fox", "body": "Hi @Russell Wurth\n\nRather than trying to put your backlog in as questions have you considered writing them in Confluence as FAQs or How To Articles?\n\nPhill\n", "comments": null }, { "author": "Russell Wurth", "body": "Thanks Joseph.\n\nI have a follow on question.\n\nI have a backlog of questions and answers in email form in Outlook.\n\nIn Questions - I want to ask these backlogged questions and also enter the answer to the questions, but rather than have these questions and answers show up under my name, I want to assign the question to the actual Confluence user that asked the question and assign the answer to the actual Confluence user that supplied the answer. Is there any way to accomplish this?\n\nEssentially I'm trying to back fill our Questions database with our old questions and answers.\n\nAlternately is there a way to forward an email with the question to Confluence and have the email converted to a question by the sender of the email?\n\nThanks,\n\nSteve\n", "comments": [ { "author": "Joe Clark", "body": "You can't ask questions on behalf of another user, unfortunately. However, depending on your programming skillset, there is a REST API which allows you to \"import\" content - and this does let you specify arbitrary authors for each question.\n" } ] }, { "author": "Joe Clark", "body": "Each individual vote (up or down) can be changed at any time by the person who made it. However, the question asker cannot re-assign the votes made by other users.\n\nThe question asker *can* change which answer is marked as the **Accepted** answer at any time.\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/Is-it-possible-to-reassign-points-to-a-different-answer-in/qaq-p/117452
null
{ "author": "Manuel Borgelioen", "title": "Error occurred when loading questions!", "body": "After selecting a topic within the 'recent'-list, I always get the error: '**Error occurred when loading questions!**'. Any idea what the cause is ?\n\nIt happens with all topics. We only started with Questions a few weeks ago, and have about 60 questions.\n\nWe also did a reindex and restart of Confluence without result.\n\nconf Questions KBC 2015-12-14_15-47-14.jpg\n\n[](https://community.atlassian.com/t5/Questions-for-Confluence/Error-occurred-when-loading-questions/qaq-p/210292?attachment-id=10870){#link_115e4203944fd0} \n[](/tnckb94959/attachments/tnckb94959/questions-for-confluence-questions/636/1/conf%20Questions%20KBC%202015-12-14_15-47-14.jpg){#display_115e4203944fd0_0}\n" }
[ { "author": "Joe Clark", "body": "Hi @Manuel Borgelioen,\n\nI can't reproduce the problem you're describing. Is it only happening with certain topics? Can you attach a screenshot of the error you are seeing?\n\nThanks!\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/Error-occurred-when-loading-questions/qaq-p/210292
null
{ "author": "Hao Doan", "title": "How to remove usage stats in Questions?", "body": "Hello I would like to remove the \"usage stats\" in Questions. I don't want my users to see it\n" }
[ { "author": "Giuliano C.", "body": "Hao,\n\nThe **Statistics** tab and information is retrieved from a module of the add-on. To disable this tab to appear, you can go to **Confluence Admin (cog icon) \\> Manage Add-ons** and search for the **Questions** add-on, through the **User Installed Add-ons** tab.\n\nThere, click on the **Confluence** **Questions** tab and search for the **227 of 227 Modules Enabled** link. Once you click there, it will expand all the modules of the add-on. Then, you need to search for the **View Statistics** module and **Disable** it with the button in its right side.\n\nOnce you refresh the Questions page in your confluence, it will not display the statistics tab anymore. However, you can still access it with its URL, which would be - [http://baseURL/questions/stats](http://quicksilver:8090/confluence/questions/stats).\n\nPS: Remember that the Usage Statistics content is only displayed to users with properly permissions, as we can see in our [Questions article](https://confluence.atlassian.com/questions/administer-questions-593035916.html). :smile:\n\nHope it helps you!\n", "comments": null }, { "author": "Hao Doan", "body": "I totally didn't think of being admin give you the Usage Statistics. I didn't want user to have that. Thank You!\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/How-to-remove-usage-stats-in-Questions/qaq-p/385024
null
{ "author": "Chang Lin", "title": "How do I let users cannot delete their own questions?", "body": "After questions, members of the quality of the answers. If questioners got deleted after answering a question, then the answer is not removed. \nThis useful knowledge could not be saved. \nWant to have a way to prevent users from deleting their own questions.\n" }
[ { "author": "Chang Lin", "body": "Hello, if the user can delete their own questions, the answer will be deleted.\n\nThis accumulation of knowledge of how to achieve it?\n\nIn addition, if the total is deleted, how to encourage the users answers to hard questions?\n\nThat you can add an option in the new version, let administrators prevent users from deleting their own problems. Or administrators can restore a deleted question. Or administrators can transfer questions and answers in the wiki, the accumulation of knowledge.\n", "comments": null }, { "author": "Bruno Raymundo", "body": "Hi Chang,\n\nActually, users can delete their own questions, answers and comments. This is by design. Also, administrators can delete any question or answer. Please check the following article for details:\n\n[Permissions](https://confluence.atlassian.com/questions/permissions-407724476.html)\n\nRegards,\n\nBruno\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/How-do-I-let-users-cannot-delete-their-own-questions/qaq-p/129387
null
{ "author": "Laura de sabbata", "title": "Upgrade the forum macro from 3.5 to 5.8", "body": "Hi,\n\nWe have been upgraded from 3.5 to 5.8 - change of major release. \nNow I have to cope with several macros.\n\n1. We used the forum macro (chatterbox) as a news table\n 1. each news was a child page\n 2. therefore the forum macro listed the child pages sorted by date, with author, with a part of the text and number of replies\n2. With the 5.8 this macro seems not work - I receive the message that I need to upgrade the macro\n 1. When searching for the forum macro I cannot display the child pages in a kind of table\n 2. I am searching for a similar feature but the Children macro also does not work\n\nAny idea? Please find attached a\n\nThanks\n\nLaura \n[](https://community.atlassian.com/t5/Questions-for-Confluence/Upgrade-the-forum-macro-from-3-5-to-5-8/qaq-p/296274?attachment-id=4255){#link_115486377358b0} \n[](/tnckb94959/attachments/tnckb94959/questions-for-confluence-questions/922/1/News%20macro.jpg){#display_115486377358b0_0}\n" }
[ { "author": "Nic Brough -Adaptavist-", "body": "There's quite a few questions here, and my knowledge isn't quite deep enough to be able to point you at all the things I think you need to look at here.\n\nI would strongly recommend contacting Adaptavist support about this - the Bubbles Forum addon has gone through a lot of changes, and has effectively been retired in favour of Community Forums somewhere around Confluence 5.5, so I'd want to ask for advice and troubleshooting from the authors. Start with <http://www.adaptavist.com/w/about/contact-us/>\n\nIn the interests of openness too - I work for Adaptavist. I'm not particularly involved in the \"Confluence Add-on\" part of the business though, and the advice to contact us that I've given is what I'd say even if I were not working here.\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/Upgrade-the-forum-macro-from-3-5-to-5-8/qaq-p/296274
null
{ "author": "Marco Friedmann", "title": "How can I recognize old questions?", "body": "How do you recognize questions which are not relevant anymore so that they can be deleted?\n\nAre there any good practices?\n" }
[ { "author": "Guilherme V.", "body": "Hey there,\n\nYou can find old questions directly in the database by executing the following statement:\n\n```\nselect title as questionTitle,creationdate from content where pluginkey = 'com.atlassian.confluence.plugins.confluence-questions:question' order by creationdate asc\n```\n\n![information](/html/@4DF2F60CA30FBCA0CD7B960B5D0F871B/images/emoticons/information.png \"information\") The query above is lower case, check if you database is case sensitive before running it.\n\nCheers,\n", "comments": [ { "author": "Marco Friedmann", "body": "are there other fields like \"creationdate\"? Something as \"lastedited\" or \"lastanswer\"?\n" } ] } ]
https://community.atlassian.com/t5/Questions-for-Confluence/How-can-I-recognize-old-questions/qaq-p/108083
null
{ "author": "Nelson Carranza", "title": "Confluence question exception after reach 1k points", "body": "Hi, after a couple of user reached 1k points, their cq profile is not available and give the Oops an error has occurred page.\n\nI have confluence 5.8.10 and latest cq\n\nI have install/reinstall plugin, clean plugin cache and the error still there.\n\nAny help? it is not a huge bug but it is annoying.\n\nThanks\n\nNelson\n\nCause \ncom.google.template.soy.tofu.SoyTofuException: In template CQ.Templates.util.compactInteger: When evaluating \"cqFormatInteger($value)\": Error while computing function \"cqFormatInteger($value)\": java.lang.Integer cannot be cast to java.lang.Long \nat com.google.template.soy.tofu.internal.BaseTofu.renderMainHelper(BaseTofu.java:341) \nStack Trace:\\[hide\\] \ncom.google.template.soy.tofu.SoyTofuException: In template CQ.Templates.util.compactInteger: When evaluating \"cqFormatInteger($value)\": Error while computing function \"cqFormatInteger($value)\": java.lang.Integer cannot be cast to java.lang.Long \nat com.google.template.soy.tofu.internal.BaseTofu.renderMainHelper(BaseTofu.java:341) \nat com.google.template.soy.tofu.internal.BaseTofu.renderMain(BaseTofu.java:300) \nat com.google.template.soy.tofu.internal.BaseTofu.access$100(BaseTofu.java:56) \nat com.google.template.soy.tofu.internal.BaseTofu$RendererImpl.render(BaseTofu.java:427) \nat com.atlassian.soy.impl.DefaultSoyManager.render(DefaultSoyManager.java:118) \nat com.atlassian.soy.impl.DefaultSoyTemplateRenderer.render(DefaultSoyTemplateRenderer.java:52) \nat sun.reflect.GeneratedMethodAccessor877.invoke(Unknown Source) \nat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) \nat java.lang.reflect.Method.invoke(Method.java:497) \nat org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307) \nat org.springframework.osgi.service.importer.support.internal.aop.ServiceInvoker.doInvoke(ServiceInvoker.java:58) \nat org.springframework.osgi.service.importer.support.internal.aop.ServiceInvoker.invoke(ServiceInvoker.java:62) \nat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) \nat org.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131) \nat org.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119) \nat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) \nat org.springframework.osgi.service.util.internal.aop.ServiceTCCLInterceptor.invokeUnprivileged(ServiceTCCLInterceptor.java:56) \nat org.springframework.osgi.service.util.internal.aop.ServiceTCCLInterceptor.invoke(ServiceTCCLInterceptor.java:39) \nat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) \nat org.springframework.osgi.service.importer.support.LocalBundleContextAdvice.invoke(LocalBundleContextAdvice.java:59) \nat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) \nat org.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131) \nat org.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119) \nat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) \nat org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204) \nat com.sun.proxy.$Proxy1016.render(Unknown Source) \nat com.atlassian.confluence.plugins.soy.ConfluenceSoyTemplateRenderer.renderTo(ConfluenceSoyTemplateRenderer.java:57) \nat com.atlassian.confluence.renderer.template.DelegatingTemplateRenderer.renderTo(DelegatingTemplateRenderer.java:41) \nat com.atlassian.confluence.xwork.SoyResult.execute(SoyResult.java:106) \nat com.opensymphony.xwork.DefaultActionInvocation.executeResult(DefaultActionInvocation.java:263) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:187) \nat com.atlassian.confluence.plugins.questions.actions.OnBoardingInterceptor.intercept(OnBoardingInterceptor.java:40) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.plugins.questions.actions.UnauthorizedAccessExceptionInterceptor.intercept(UnauthorizedAccessExceptionInterceptor.java:35) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:35) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.validation.MessageHolderInterceptor.intercept(MessageHolderInterceptor.java:43) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:35) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.util.LoggingContextInterceptor.intercept(LoggingContextInterceptor.java:52) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.core.CancellingInterceptor.intercept(CancellingInterceptor.java:24) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.xwork.HttpMethodValidationInterceptor.intercept(HttpMethodValidationInterceptor.java:72) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.security.websudo.WebSudoInterceptor.intercept(WebSudoInterceptor.java:64) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.themes.ThemeContextInterceptor.intercept(ThemeContextInterceptor.java:68) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.security.actions.PermissionCheckInterceptor.intercept(PermissionCheckInterceptor.java:66) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.setup.webwork.BootstrapAwareInterceptor.intercept(BootstrapAwareInterceptor.java:27) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:35) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.user.actions.UserAwareInterceptor.intercept(UserAwareInterceptor.java:59) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.pages.actions.CommentAwareInterceptor.intercept(CommentAwareInterceptor.java:51) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.pages.actions.PageAwareInterceptor.intercept(PageAwareInterceptor.java:153) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.spaces.actions.SpaceAwareInterceptor.intercept(SpaceAwareInterceptor.java:78) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.xwork.FlashScopeInterceptor.intercept(FlashScopeInterceptor.java:25) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:35) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.core.actions.LastModifiedInterceptor.intercept(LastModifiedInterceptor.java:34) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.core.ConfluenceAutowireInterceptor.intercept(ConfluenceAutowireInterceptor.java:55) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:35) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.xwork.interceptors.TransactionalInvocation.invokeAndHandleExceptions(TransactionalInvocation.java:76) \nat com.atlassian.xwork.interceptors.TransactionalInvocation.invokeInTransaction(TransactionalInvocation.java:61) \nat com.atlassian.xwork.interceptors.XWorkTransactionInterceptor.intercept(XWorkTransactionInterceptor.java:56) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.xwork.SetupIncompleteInterceptor.intercept(SetupIncompleteInterceptor.java:48) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.security.interceptors.NosniffSecurityHeaderInterceptor.intercept(NosniffSecurityHeaderInterceptor.java:21) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.atlassian.confluence.security.interceptors.XXSSSecurityHeaderInterceptor.intercept(XXSSSecurityHeaderInterceptor.java:21) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:35) \nat com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:165) \nat com.opensymphony.xwork.DefaultActionProxy.execute(DefaultActionProxy.java:115) \nat com.atlassian.confluence.servlet.ConfluenceServletDispatcher.serviceAction(ConfluenceServletDispatcher.java:58) \nat com.opensymphony.webwork.dispatcher.ServletDispatcher.service(ServletDispatcher.java:199) \nat javax.servlet.http.HttpServlet.service(HttpServlet.java:729) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:291) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.confluence.web.filter.DebugFilter.doFilter(DebugFilter.java:50) \nat com.atlassian.core.filters.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:31) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:46) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.labs.botkiller.BotKillerFilter.doFilter(BotKillerFilter.java:36) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.applinks.core.rest.context.ContextFilter.doFilter(ContextFilter.java:25) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.prettyurls.filter.PrettyUrlsSiteMeshFixupFilter.doFilter(PrettyUrlsSiteMeshFixupFilter.java:36) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.prettyurls.filter.PrettyUrlsDispatcherFilter.doFilter(PrettyUrlsDispatcherFilter.java:60) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.prettyurls.filter.PrettyUrlsCommonFilter.preventDoubleInvocation(PrettyUrlsCommonFilter.java:38) \nat com.atlassian.prettyurls.filter.PrettyUrlsSiteMeshFilter.doFilter(PrettyUrlsSiteMeshFilter.java:74) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.prettyurls.filter.PrettyUrlsMatcherFilter.doFilter(PrettyUrlsMatcherFilter.java:56) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.ServletFilterModuleContainerFilter.doFilter(ServletFilterModuleContainerFilter.java:77) \nat com.atlassian.plugin.servlet.filter.ServletFilterModuleContainerFilter.doFilter(ServletFilterModuleContainerFilter.java:63) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:46) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.prettyurls.filter.PrettyUrlsCombinedMatchDispatcherFilter.doFilter(PrettyUrlsCombinedMatchDispatcherFilter.java:61) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.ServletFilterModuleContainerFilter.doFilter(ServletFilterModuleContainerFilter.java:77) \nat com.atlassian.plugin.servlet.filter.ServletFilterModuleContainerFilter.doFilter(ServletFilterModuleContainerFilter.java:63) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.core.filters.ServletContextThreadLocalFilter.doFilter(ServletContextThreadLocalFilter.java:21) \nat com.atlassian.core.filters.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:31) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.confluence.util.UserNameHeaderFilter.doFilter(UserNameHeaderFilter.java:26) \nat com.atlassian.core.filters.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:31) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.confluence.util.UserThreadLocalFilter.doFilter(UserThreadLocalFilter.java:42) \nat com.atlassian.core.filters.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:31) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.seraph.filter.SecurityFilter.doFilter(SecurityFilter.java:240) \nat com.atlassian.confluence.web.filter.ConfluenceSecurityFilter.doFilter(ConfluenceSecurityFilter.java:27) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.seraph.filter.BaseLoginFilter.doFilter(BaseLoginFilter.java:148) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:46) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.oauth.serviceprovider.internal.servlet.OAuthFilter.doFilter(OAuthFilter.java:79) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.prettyurls.filter.PrettyUrlsCombinedMatchDispatcherFilter.doFilter(PrettyUrlsCombinedMatchDispatcherFilter.java:61) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.ServletFilterModuleContainerFilter.doFilter(ServletFilterModuleContainerFilter.java:77) \nat com.atlassian.plugin.servlet.filter.ServletFilterModuleContainerFilter.doFilter(ServletFilterModuleContainerFilter.java:63) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.johnson.filters.AbstractJohnsonFilter.doFilter(AbstractJohnsonFilter.java:72) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:46) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.prettyurls.filter.PrettyUrlsCombinedMatchDispatcherFilter.doFilter(PrettyUrlsCombinedMatchDispatcherFilter.java:61) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.ServletFilterModuleContainerFilter.doFilter(ServletFilterModuleContainerFilter.java:77) \nat com.atlassian.plugin.servlet.filter.ServletFilterModuleContainerFilter.doFilter(ServletFilterModuleContainerFilter.java:63) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.confluence.web.filter.DebugFilter.doFilter(DebugFilter.java:50) \nat com.atlassian.core.filters.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:31) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:721) \nat org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:466) \nat org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:391) \nat org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:318) \nat sun.reflect.GeneratedMethodAccessor836.invoke(Unknown Source) \nat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) \nat java.lang.reflect.Method.invoke(Method.java:497) \nat net.bull.javamelody.JspWrapper.invoke(JspWrapper.java:150) \nat net.bull.javamelody.JdbcWrapper$DelegatingInvocationHandler.invoke(JdbcWrapper.java:285) \nat com.sun.proxy.$Proxy3194.forward(Unknown Source) \nat com.atlassian.prettyurls.filter.PrettyUrlsDispatcherFilter.doFilter(PrettyUrlsDispatcherFilter.java:55) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.prettyurls.filter.PrettyUrlsSiteMeshFilter.doFilter(PrettyUrlsSiteMeshFilter.java:92) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.prettyurls.filter.PrettyUrlsMatcherFilter.doFilter(PrettyUrlsMatcherFilter.java:56) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.ServletFilterModuleContainerFilter.doFilter(ServletFilterModuleContainerFilter.java:77) \nat com.atlassian.plugin.servlet.filter.ServletFilterModuleContainerFilter.doFilter(ServletFilterModuleContainerFilter.java:63) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.opensymphony.sitemesh.webapp.SiteMeshFilter.obtainContent(SiteMeshFilter.java:129) \nat com.opensymphony.sitemesh.webapp.SiteMeshFilter.doFilter(SiteMeshFilter.java:77) \nat com.atlassian.confluence.util.profiling.ProfilingSiteMeshFilter.doFilter(ProfilingSiteMeshFilter.java:46) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:46) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.core.filters.ServletContextThreadLocalFilter.doFilter(ServletContextThreadLocalFilter.java:21) \nat com.atlassian.core.filters.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:31) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.confluence.web.filter.ThreadLocalCacheFilter.doFilter(ThreadLocalCacheFilter.java:30) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.confluence.util.profiling.ConfluenceActivityFilter.doFilter(ConfluenceActivityFilter.java:45) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.prettyurls.filter.PrettyUrlsCombinedMatchDispatcherFilter.doFilter(PrettyUrlsCombinedMatchDispatcherFilter.java:61) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.ServletFilterModuleContainerFilter.doFilter(ServletFilterModuleContainerFilter.java:77) \nat com.atlassian.plugin.servlet.filter.ServletFilterModuleContainerFilter.doFilter(ServletFilterModuleContainerFilter.java:63) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.confluence.util.LoggingContextFilter.doFilter(LoggingContextFilter.java:41) \nat com.atlassian.core.filters.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:31) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.confluence.util.UserNameHeaderFilter.doFilter(UserNameHeaderFilter.java:26) \nat com.atlassian.core.filters.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:31) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.confluence.web.filter.ConfluenceTimeoutFilter.doFilter(ConfluenceTimeoutFilter.java:63) \nat com.atlassian.core.filters.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:31) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.seraph.filter.SecurityFilter.doFilter(SecurityFilter.java:240) \nat com.atlassian.confluence.web.filter.ConfluenceSecurityFilter.doFilter(ConfluenceSecurityFilter.java:27) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.security.auth.trustedapps.filter.TrustedApplicationsFilter.doFilter(TrustedApplicationsFilter.java:100) \nat com.atlassian.confluence.util.AbstractBootstrapHotSwappingFilter.doFilter(AbstractBootstrapHotSwappingFilter.java:35) \nat com.atlassian.core.filters.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:31) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.seraph.filter.BaseLoginFilter.doFilter(BaseLoginFilter.java:148) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:46) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.oauth.serviceprovider.internal.servlet.OAuthFilter.doFilter(OAuthFilter.java:79) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.prettyurls.filter.PrettyUrlsCombinedMatchDispatcherFilter.doFilter(PrettyUrlsCombinedMatchDispatcherFilter.java:61) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.ServletFilterModuleContainerFilter.doFilter(ServletFilterModuleContainerFilter.java:77) \nat com.atlassian.plugin.servlet.filter.ServletFilterModuleContainerFilter.doFilter(ServletFilterModuleContainerFilter.java:63) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.confluence.util.ClusterHeaderFilter.doFilter(ClusterHeaderFilter.java:65) \nat com.atlassian.core.filters.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:31) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.core.filters.cache.AbstractCachingFilter.doFilter(AbstractCachingFilter.java:33) \nat com.atlassian.core.filters.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:31) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:46) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.analytics.client.filter.DefaultAnalyticsFilter.doFilter(DefaultAnalyticsFilter.java:36) \nat com.atlassian.analytics.client.filter.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:32) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.gzipfilter.GzipFilter.doFilterInternal(GzipFilter.java:121) \nat com.atlassian.gzipfilter.GzipFilter.doFilter(GzipFilter.java:92) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.confluence.web.filter.ConfluenceTimingFilter.doFilter(ConfluenceTimingFilter.java:76) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.prettyurls.filter.PrettyUrlsCombinedMatchDispatcherFilter.doFilter(PrettyUrlsCombinedMatchDispatcherFilter.java:61) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat net.bull.javamelody.MonitoringFilter.doFilter(MonitoringFilter.java:198) \nat net.bull.javamelody.MonitoringFilter.doFilter(MonitoringFilter.java:176) \nat net.bull.javamelody.PluginMonitoringFilter.doFilter(PluginMonitoringFilter.java:85) \nat net.bull.javamelody.JiraMonitoringFilter.doFilter(JiraMonitoringFilter.java:104) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter$1.doFilter(DelegatingPluginFilter.java:70) \nat com.atlassian.confluence.extra.webdav.servlet.filter.ReverseProxyFilter.doFilter(ReverseProxyFilter.java:467) \nat com.atlassian.confluence.extra.webdav.servlet.filter.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:34) \nat com.atlassian.plugin.servlet.filter.DelegatingPluginFilter.doFilter(DelegatingPluginFilter.java:78) \nat com.atlassian.plugin.servlet.filter.IteratingFilterChain.doFilter(IteratingFilterChain.java:42) \nat com.atlassian.plugin.servlet.filter.ServletFilterModuleContainerFilter.doFilter(ServletFilterModuleContainerFilter.java:77) \nat com.atlassian.plugin.servlet.filter.ServletFilterModuleContainerFilter.doFilter(ServletFilterModuleContainerFilter.java:63) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.confluence.web.filter.validateparam.RequestParamValidationFilter.doFilter(RequestParamValidationFilter.java:58) \nat com.atlassian.core.filters.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:31) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.confluence.web.filter.TranslationModeFilter.doFilter(TranslationModeFilter.java:44) \nat com.atlassian.core.filters.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:31) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.confluence.plugin.servlet.filter.ActionContextCleanUp.doFilter(ActionContextCleanUp.java:73) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.confluence.web.filter.LanguageExtractionFilter.doFilter(LanguageExtractionFilter.java:53) \nat com.atlassian.core.filters.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:31) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.confluence.util.RequestCacheThreadLocalFilter.doFilter(RequestCacheThreadLocalFilter.java:32) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.confluence.web.filter.ResponseOutputStreamFilter.doFilter(ResponseOutputStreamFilter.java:25) \nat com.atlassian.core.filters.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:31) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.core.filters.HeaderSanitisingFilter.doFilter(HeaderSanitisingFilter.java:44) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.confluence.servlet.FourOhFourErrorLoggingFilter.doFilter(FourOhFourErrorLoggingFilter.java:71) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat com.atlassian.confluence.web.filter.DebugFilter.doFilter(DebugFilter.java:50) \nat com.atlassian.core.filters.AbstractHttpFilter.doFilter(AbstractHttpFilter.java:31) \nat org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239) \nat org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) \nat org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:219) \nat org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:106) \nat org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:502) \nat org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:142) \nat org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79) \nat org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:88) \nat org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:518) \nat org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1091) \nat org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:668) \nat [org.apache.tomcat.util.net](http://org.apache.tomcat.util.net).NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1521) \nat [org.apache.tomcat.util.net](http://org.apache.tomcat.util.net).NioEndpoint$SocketProcessor.run(NioEndpoint.java:1478) \nat java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) \nat java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) \nat org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) \nat java.lang.Thread.run(Thread.java:745)\n\n<br />\n\nReferer URL\n" }
[ { "author": "Abdoulaye Kindy Diallo", "body": "Nelson, this is a known bug and the fix is coming very soon. Please watch the report and feel free to comment:\n\n<https://jira.atlassian.com/browse/CQ-2196>\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/Confluence-question-exception-after-reach-1k-points/qaq-p/437222
null
{ "author": "Robert Grasmugg", "title": "Would like to restrict Confluence Questions \"Topics\" to certain spaces", "body": "Can't imagine this was not asked yet but did not find the right answer yet, hence here again:\n\nThe concept of restricting Questions to certain spaces is clear since version 2.0.8 - great feature! BUT in addition what we would prefer to see is the chance to manage Topics (an Featured Topics) space specific. Reason for this is the products established and use cases implemented in various customer situations are fairly different, so the need for providing space(=customer) specific Topics is high. Nevertheless we do not want to setup different Confluence instances to solve this.\n\nThis related article doesn't actually answer it: <https://answers.atlassian.com/questions/26644269>\n\nMaybe I missed that point in the documentation. Any help appreciated.\n" }
[ { "author": "Dirk Stubbs", "body": "This was asked in this question as well, <https://answers.atlassian.com/questions/32985635>\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/Would-like-to-restrict-Confluence-Questions-quot-Topics-quot-to/qaq-p/419176
null
{ "author": "Jason Marzan", "title": "How do you paste/attach screenshot in confluence questions?", "body": "How to paste/attach screenshot in confluence questions? We currently have confluence v5.4.4\n" }
[ { "author": "Guilherme V.", "body": "Hey there,\n\nOn the latest Confluence Questions(not Confluence) you can just upload your images in the **insert image**options.\n\nCheers,\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/How-do-you-paste-attach-screenshot-in-confluence-questions/qaq-p/262477
null
{ "author": "Dominique Hein", "title": "Confluence Questions Last Update", "body": "Hey everyone,\n\nI'm working with Confluence Questions and the \"Questions List\" macro. Is there any possibility to sort questions? For example I see the latest answer on top and the oldest at the end.\n\nBecause now I can not see any changes or updates.\n\nAll the best\n\nDominique Hein\n" }
[ { "author": "Daniel PHAN", "body": "I have the same issue. Questions are sorted by create date, not by latest answer date.\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/Confluence-Questions-Last-Update/qaq-p/135093
null
{ "author": "A", "title": "Edit user's reputation points in CQ", "body": "I understand there is no REST api (yet) for updating user's reputation points. (there is for thresholds : <https://answers.atlassian.com/questions/11974189>) \n\nWhat table should I update if I need to bump the reputation points for selected few people, so they can moderate Q's in their spaces? thanks!\n\n(instead of lowering the thresholds for all I'd better hand-pick a couple of people to have these super-powers)\n\nthanks!\n" }
[ { "author": "Eric Jensen", "body": "We have a similar need, would be great to understand what is possible in terms of setting user reputation\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/Edit-user-s-reputation-points-in-CQ/qaq-p/125158
[ "confluence" ]
{ "author": "Thu Nguyen", "title": "How to enable Questions", "body": "I have purchased Confluence Questions, but did not use it and turned it off. Now I want to use Questions, but don't know to enable it. Could anyone please help. Many thanks.\n" }
[ { "author": "Nic Brough -Adaptavist-", "body": "If you are on Cloud, you should be able to re-enable it in your my.Atlassian account by buying it.\n\nIf you are on Server, go to admin -\\> manage add-ons, and if it is there, follow the links for buying it, or if it is not listed, follow the links to install it.\n", "comments": null } ]
https://community.atlassian.com/t5/Questions-for-Confluence/How-to-enable-Questions/qaq-p/164262
null
{ "author": "Burke Autrey", "title": "Notification of Questions Asked?", "body": "Some of our users get notified by email when a question is asked in Questions but others don't. Which notification setting controls this?\n" }
[ { "author": "Steffen Opel _Utoolity_", "body": "Notifications seem to primarily depend on which [Topics](https://confluence.atlassian.com/questions/topics-407724479.html) you watch:\n> You can watch a topic to be notified when a new question is added. This is a great way to keep informed about what is going on in your site.\n>\n> To watch a topic:\n>\n> 1. Go to **Questions** \\> **Topics**\n> 2. Choose **Watch** next to any topics you wish to be notified about.\n>\n> If you are an administrator you can also add and remove people from the watchers list for a topic. Navigate to the topic then choose **Edit** beside the Watchers list.\n\nYou can see/test this on the [Topics](https://answers.atlassian.com/questions/topics) tab on this very site for example.\n\nStrangely it isn't possible to watch all *topics* at once, however, you can watch all *questions* with the resp. *Watch all* button on the *Questions* tab of your instance (understandably not available on this site) - according to @Bill Arconati's response in the [comments](https://confluence.atlassian.com/questions/topics-407724479.html#comment-448037110) section, this is *essentially the same as watching all current and future topic*.\n", "comments": [ { "author": "Rikin Patel", "body": "Still not working using your solution any other suggestion?\n\nSpace watch - ON\n\nAll Question watch - ON\n\nQuestion watch - ON\n\nTopic watch - ON\n\nStill not getting any email notification any suggestion what is cause?\n" }, { "author": "Steffen Opel _Utoolity_", "body": "[@Rikin Patel](/t5/user/viewprofilepage/user-id/848658) - probably not, but to better isolate this, are you using Questions for Confluence Cloud or Questions for Confluence Server?\n" }, { "author": "Rikin Patel", "body": "I not sure about Confluence Cloud or Server but we are using following URL so maybe you will get some idea.\n\n\"somedomainName.atlassian.net/wiki\"\n\nprobably its Confluence Cloud.\n" }, { "author": "Rikin Patel", "body": "[@Steffen Opel _Utoolity_](/t5/user/viewprofilepage/user-id/781567) Is any updates? still not received email notification on Questions updates.\n" }, { "author": "Burke Autrey", "body": "Our users are not getting question updates either - including those who are watching all questions. We're on Cloud. What should we check to troubleshoot?\n" }, { "author": "Julien Vecchioli", "body": "Hi guys, \n\nWe are facing the same issue: impossible to be notified on questions asked or answered on Questions for Confluence. \n\nAre we missing a configuration ?\n\nThanks\n" }, { "author": "Burke Autrey", "body": "Need an answer please.\n" }, { "author": "Martin McDonald", "body": "would still like a response...\n" }, { "author": "Yoed Grizim", "body": "Has anyone solved this?\n" } ] } ]
https://community.atlassian.com/t5/Questions-for-Confluence/Notification-of-Questions-Asked/qaq-p/106092
[ "cloud", "notification" ]
{ "author": "Mike Caws", "title": "Isolated projects are not displaying on Team Calendar - error message received", "body": "Isolated projects are not showing in the Team calendar - permissions checked - similar projects display without issue.\n\nError message :\n\nUnable to load events of M20 SMT Schedule (769f69e9-1268-4ef9-a9b1-b2b6fc9ee4f6): com.atlassian.confluence.extra.calendar3.exception.CalendarException: calendar3.error.jiralink\n" }
[ { "author": "Pene Geard", "body": "Atlassian confirmed this is a new bug - you can track it here:\n\n<https://jira.atlassian.com/browse/CONFCLOUD-70928>\n", "comments": [ { "author": "Mike Caws", "body": "Thanks for the info - the suggestion listed there by Marius Kymantas - has allowed our business to get back on track by changing the date \\& time field to a date only field.\n" } ] }, { "author": "Jared Davies", "body": "I'm having the same issue, appeared to happen yesterday.\n\nThe [https://jira.atlassian.com/browse/CONFCLOUD-69580](https://jira.atlassian.com/browse/CONFCLOUD-69580%C2%A0) issue that was created in March is not the same issue. This issue relates to linking JIRA issue via \"JIRA Agile Sprint\". In my case we have linked issues via \"JIRA Issue Dates\"\n\nThis has a big impact as we are using this feature to show calendar view of all our issues relating to releases.\n", "comments": null }, { "author": "Josh Costella", "body": "Hi,\n\nI spoke to Atlassian support and this appears to be an issue dating back to March. However, it looks like our instance and yours both started experiencing this today.\n\nHere is the original bug they mentioned. Be sure to vote for it either way.\n\n[https://jira.atlassian.com/browse/CONFCLOUD-69580](https://jira.atlassian.com/browse/CONFCLOUD-69580?)\n", "comments": null }, { "author": "Justi Lawson", "body": "We are having the same issues this morning.\n", "comments": [ { "author": "Mike Caws", "body": "New projects created today are visible - however moving issues to the new project results in the error message.\n\nSupport Case raised : [JST-605855](https://getsupport.atlassian.com/servicedesk/customer/portal/23/JST-605855)\n" } ] }, { "author": "Mike Caws", "body": "Attempted a few work-a-rounds today :-\n\n1. .Move issues to new project - no success\n2. Cloned issues \\& moved to new project - no success\n3. Created New Filter- added event as a filter - no success\n4. Generated new issues in new project - worked on 3 issues ( all shown in calendar) once the 4th was created - error message appeared - no success.\n\nHas anyone got any other ideas?\n", "comments": null } ]
https://community.atlassian.com/t5/Team-Calendars-for-Confluence/Isolated-projects-are-not-displaying-on-Team-Calendar-error/qaq-p/1503962
[ "cloud" ]
{ "author": "Technology Lab", "title": "Unable to update teams callendar after confluence upgrade", "body": "We've upgraded Confluence to 7.8 and even thou we have valid license for Team Calendar, we cannot update the module.\n\nThe module states: The currently installed version of this app is not compatible with your Confluence instance. A free update (v. 6.1.1) is available for this app.\n\nBut we can't upgrade without renewing the license.\n\n![Screenshot from 2020-10-10 10-45-00.png](/t5/image/serverpage/image-id/113802i0450474A6995E1BF/image-size/large?v=v2&px=999 \"Screenshot from 2020-10-10 10-45-00.png\")\n" }
[ { "author": "Niranjan", "body": "Hi [@Technology Lab](/t5/user/viewprofilepage/user-id/1720295) ,\n\nWhat is the current version of your Team Calendars? Did you do a add-on compatibility check before upgrade? You must disable an app temporarily while you upgrade if it is not yet compatible.\n\nTry applying the Team calendars license key. It may help\n", "comments": [ { "author": "Technology Lab", "body": "I've re-applied the license and it worked like a charm!\n\nThanks a bunch [@Niranjan](/t5/user/viewprofilepage/user-id/715719) \nYou're the best!\n" }, { "author": "Niranjan", "body": "Cool that it worked :) [@Technology Lab](/t5/user/viewprofilepage/user-id/1720295)\n" } ] } ]
https://community.atlassian.com/t5/Team-Calendars-for-Confluence/Unable-to-update-teams-callendar-after-confluence-upgrade/qaq-p/1503359
[ "server" ]
{ "author": "Matt Oberst", "title": "Confluence API Endpoint for Calendar Entry", "body": "I am trying to use the API to create a calendar entry with Postman. I seem to be close receiving a 200 OK response, but still failing on a couple of things.\n\nHere is some of the items...\n\nUsing JSON PUT request\n\n<http://confluence.(yourdomain).com/rest/calendar-services/1.0/calendar/events.json>\n\nAuth - Basic Auth - Use your user name and password\n\nHeader - Key: Content-Type Value: application/x-www-form-urlencoded\n\nBody -\n\n```\n{ \n\"subCalendarId\": \"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\", \"eventType\":\"Events\", \n\"what\": \"Test Meeting\", \n\"person\": \"(Your user ID)\", \n\"startDate\": \"Oct 11, 2020\", \n\"startTime\": \"10:00 AM\", \n\"endDate\": \"Oct 11, 2020\", \n\"endTime\": \"11:00 AM\", \n\"allDayEvent\": \"false\", \n\"where\": \"Test Room\",}\n```\n\n![confluencepostman.png](/t5/image/serverpage/image-id/113240i9E5426DCA624A7A6/image-size/large?v=v2&px=999 \"confluencepostman.png\")\n\nIt looks like it is going to the right URL, but my fields might be incorrect. Anyone have any suggestions? I have tried digging through the internet and some of the python suggestions didn't seem to work either.\n" }
[ { "author": "Jia Xu", "body": "Hi Matt\n\n<br />\n\nIn case you or anyone else still need this. The Rest API only works on Get for me, I too couldn't get it to work with put.\n\n<br />\n\nWhile inspecting how this works on the interface I've noticed that the page actually send the body as encoded URL instead of a json. Hence got it to work by mimicing what the interface is doing instead.\n\nIn your header change the content type to below \nrequest.ContentType = \"application/x-www-form-urlencoded; charset=UTF-8\";\n\n<br />\n\nThe URL format is something like below substitute your data into it.\n\n\"?confirmRemoveInvalidUsers=false\\&childSubCalendarId=\\&customEventTypeId={youreventtypeID}\\&eventType=custom\\&isSingleJiraDate=false\\&originalSubCalendarId=\\&originalStartDate=\\&originalEventType=\\&originalCustomEventTypeId=\\&recurrenceId=\\&subCalendarId=\" + caldendaID + \"\\&uid=\\&what=\" + HttpUtility.UrlEncode(title) + \"\\&startDate=\" + HttpUtility.UrlEncode(startDateString) + \"\\&startTime=\" + HttpUtility.UrlEncode(startTimeString) + \"\\&endDate=\" + HttpUtility.UrlEncode(endDateString) + \"\\&endTime=\" + HttpUtility.UrlEncode(endTimeString) + \"\\&allDayEvent=false\\&rruleStr=\\&until=\\&editAllInRecurrenceSeries=true\\&where=\" + HttpUtility.UrlEncode(where) + \"\\&url=\\&description=\" + HttpUtility.UrlEncode(body) + \"\\&userTimeZoneId =Australia%2FPerth\";\n\nHope this helps. \n", "comments": null } ]
https://community.atlassian.com/t5/Team-Calendars-for-Confluence/Confluence-API-Endpoint-for-Calendar-Entry/qaq-p/1500415
[ "cloud" ]
{ "author": "Larry Sutton", "title": "Subscript to Team Calendar from Outlook missing Who", "body": "Subscribe to Team Calendar from Outlook works. However, if a custom \"Add Event\" was added for say \"PTO\", then Out look does not display the Who. So in Outlook, we do not know who is on PTO.\n\nIt appears that \"Add Event\" truly adds an Event which does not need a persons name.\n\nI tried the icon to see if it controlled the formatting but it does not.\n\nWhy can there not be an Event format type like \"Leave, Travel, Birthday\"?\n" }
[ { "author": "Daniel Eads", "body": "Hi Larry,\n\nUnfortunately the behavior you've observed with the custom events not showing the \"Who\" field is a known issue with Team Calendars: [CONFCLOUD-65209](https://jira.atlassian.com/browse/CONFCLOUD-65209)\n\nThe difficulty with event types is that there's not a standard way to do the different types (Leave, Travel, Birthday, etc) in the ICS format the export generates. Confluence Team Calendars has to turn all the event types into a single event type for export - although it seems to have some different code for custom vs non-custom events. But certainly, dropping the \"Who\" from custom events as you noted leads to some problems. I'd like to say there's good news on this front, but it's been nearly two years since I opened the bug and there's been limited activity on it. I don't want to get your hopes up that the issue will be solved soon, as it is unlikely to get prioritized given the small number of people reporting it affecting them.\n\nI think if you'd like to see the details in Outlook, the best advice I have at the moment is to use the built-in event types (Leave, Travel, Birthday, etc). You could also consider adding the person's name into the event summary, but the downside of this approach is that it will show the person's name twice if you are viewing the event in Confluence.\n\nCheers, \nDaniel\n", "comments": [ { "author": "Larry Sutton", "body": "I there a way to consolidate Confluence calendars in Confluence?\n\nI have 12 teams but I share the teams. I have asked them to add there names in the \"Where\" field but that is difficult to enforce. I cant control which events the teams use.\n\nThe events without the Summary field are the ones that don't work and this are the format used for custom events!\n" } ] } ]
https://community.atlassian.com/t5/Team-Calendars-for-Confluence/Subscript-to-Team-Calendar-from-Outlook-missing-Who/qaq-p/1498826
[ "cloud" ]
{ "author": "Joe Budzowski", "title": "Is there a way to find out when an event was added or deleted from Team Calendars?", "body": "Are Team Calendar changes (events added or deleted) logged anywhere, even if only in a database table?\n" }
[ { "author": "Richard", "body": "I came here to ask very same question! I need consider licencing and need review the actual usage within Confluence.\n", "comments": [ { "author": "Dailin Young", "body": "I am looking for the same answer!\n" }, { "author": "Richard", "body": "Hi, I found this (very old) link so not sure if table construct same and hence relavent but I haven't followd it up yet as got diverted. maybe works for what you need, maybe not. Just thought I'd post and if you get any luck maybe you can feedback as will save me trouble of trying myself.\n\n<https://community.atlassian.com/t5/Team-Calendars-for-Confluence/Where-can-i-find-team-calendar-of-database/qaq-p/244719>\n\nRichard\n" }, { "author": "Dailin Young", "body": "Thanks [@Richard](/t5/user/viewprofilepage/user-id/2937585) , I will take a look.\n" } ] } ]
https://community.atlassian.com/t5/Team-Calendars-for-Confluence/Is-there-a-way-to-find-out-when-an-event-was-added-or-deleted/qaq-p/1482979
[ "server" ]
{ "author": "ganesh malotu", "title": "task should display in dashboard with impact start date and impact enddate", "body": "task should display in dashboard with impact start date and impact enddate\n" }
[ { "author": "Daniel Eads", "body": "Hi Ganesh,\n\nI believe this is [the same question you asked a couple days prior](https://community.atlassian.com/t5/Team-Calendars-for-Confluence/task-should-display-in-dashboard-from-created-date-to-due-date/qaq-p/1464657) but hadn't gotten an answer on yet. I've answered the other copy, so believe this question should be all set. Let me know if that's not the case!\n\nCheers, \nDaniel\n", "comments": null } ]
https://community.atlassian.com/t5/Team-Calendars-for-Confluence/task-should-display-in-dashboard-with-impact-start-date-and/qaq-p/1467662
[ "cloud" ]
{ "author": "ganesh malotu", "title": "task should display in dashboard from created date to due date", "body": "i have created one task\n\ni udpated its impact start date and impact end date\n\ni want this task to be displayed in dashboard for 5 days\n" }
[ { "author": "Daniel Eads", "body": "Hi Ganesh,\n\nWith Team Calendars, a few different display options are available.\n\nFirst, on the system dashboard in Confluence, the right-side panel should have a Calendar section that you can expand:\n\n![image.png](https://community.atlassian.com/t5/image/serverpage/image-id/108650i566CE37B80882D04/image-dimensions/513x421?v=v2 \"image.png\")\n\nOn individual Confluence pages, you can use the Team Calendar macro which has a few different display options. The Timeline view in particular might be useful to see start/end dates for events:\n\n![image.png](https://community.atlassian.com/t5/image/serverpage/image-id/108651iB4369DA25672FC65/image-dimensions/654x390?v=v2 \"image.png\")\n\nIf you're looking to do something different or add the calendar to another place, additional description of what you're aiming for would be helpful. A screenshot of what you're seeing with notes on where the calendar is missing or needs to look different would be of assistance.\n\nCheers, \nDaniel \\| Atlassian Support\n", "comments": [ { "author": "ganesh malotu", "body": "Hi\n\nThanks for Responding\n\nAm looking same in dashboard\n\nExample : one task is created on 3rd and ended on 7th\n\nso in dashboard it should display from 3 to 7\n\nThis is what am looking\n\nmay be we can do it my impact window start date to end date\n\nor created date to due date filters\n\ncan you plz tell me how to get this\n\nRegards,\n\nGanesh![tasddd.png](https://community.atlassian.com/t5/image/serverpage/image-id/108696i23E2D91470331167/image-size/large?v=v2&px=999 \"tasddd.png\")\n" } ] } ]
https://community.atlassian.com/t5/Team-Calendars-for-Confluence/task-should-display-in-dashboard-from-created-date-to-due-date/qaq-p/1464657
[ "cloud" ]
{ "author": "Buc-ee's IT", "title": "Team Calendars Reminders are returning multiple instances of a single event", "body": "One of our space admins set up 'Reminders' on his calendars. He recently reported that he's getting multiple instances of a single event in the 'Team Calendar Reminders'.\n\nThis is not for all of the events, but specific ones. He's even gone so far as to completely delete the events from the calendar, but they continue to come in.\n\nExample Reminder Email:\n\nIn 1 Day\n\n* FI Report Submission\n* FI Report Due\n* FI Report Due\n* FI Report Due\n* FI Report Due\n* FI Report Due\n\nI've looked through all of the settings, and I cannot find a way to correct this, nor can I reproduce it on any other calendar.\n\nNote: The event in question (FI Report Due) doesn't even show up on the actual calendar anymore.\n" }
[ { "author": "Lisa Schmidt", "body": "Was this ever resolved? I am experiencing the same.\n", "comments": null } ]
https://community.atlassian.com/t5/Team-Calendars-for-Confluence/Team-Calendars-Reminders-are-returning-multiple-instances-of-a/qaq-p/1462550
[ "server" ]
{ "author": "alex dimeo", "title": "Is their a calendar gadget that can edit that is not tied to JIRA board", "body": "I want to add a calendar to team page so people can edit for their release dates\n" }
[ { "author": "Joshua Sneed Contegix", "body": "Hi Alex, \nTake a look at [Atlassian's Team Calendars Quick Tour](https://confluence.atlassian.com/teamcal/team-calendars-quick-tour-241566246.html) page for a high level overview. The *Related content* section on that page may also be of interest. Cheers!\n", "comments": null } ]
https://community.atlassian.com/t5/Team-Calendars-for-Confluence/Is-their-a-calendar-gadget-that-can-edit-that-is-not-tied-to/qaq-p/1451214
null