Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 4 years ago.
Improve this question
I'm trying to connect Eclipse (Helios v3.6) to a Crucible server (v2.3) to be able to start and perform code reviews from the IDE, but after installing the Atlassian Connector I try to add a new Task server but I only see Bamboo and Jira.
I also noticed that in the documentation and in the plugin installation it says that Crucible and FishEye connectors are obsolete.
Has someone has figured out how to connect Eclipse to a Crucible server and enable code reviews?
Thanks
After searching a bit, it looks like the last version of the Atlassian Connector to support Crucible is 2.3.
Extract from the official Atlassian website regarding Connector 3.0 release:
Crucible reviews and some FishEye features have been removed in this version of the Connector. In the Atlassian Connector for Eclipse and IntelliJ IDEA you will no longer be able to:
Create Reviews
View Reviews
Perform Reviews
Open files in FishEye
And it looks like there is no plan to support it again in future releases...
Not sure why the support http://confluence.atlassian.com/display/IDEPLUGIN/Working+with+Crucible+Reviews+in+Eclipse (does not work anymore) was removed but here are the eclipse update links before these are removed as well
The last version of the connector containing Crucible support is 2.3.0:
For Eclipse 3.5 and 3.6 — http://update.atlassian.com/atlassian-eclipse-plugin/2.3.0/e3.5
Related
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed yesterday.
Improve this question
So, I did some work on my Mac with PostgreSQL about 6-7 years ago. I am trying to get back into it and am following along with a tutorial. There are two issues that I have ran into regarding my pre existing configurations.
I do not know the password I used when I originally set up PostgreSQL and the postgres user on my machine.
I installed the latest version of PostgreSQL (15) from postgresapp.com but am getting the following error message:
PostgreSQL version error
I tried steps I found on another stackoverflow question for uninstalling as well as running the following commands commands I used but this has not fixed the issue as when I install the latest version I get the same error mentioned in #2 above and the psql command still prompts me to enter a password that I do not remember.
Could someone help with providing the necessary steps to start "fresh" with PostgreSQL on mac or point me to an online resource that explains it? Everything I have found so far has not worked.
If you don't need any of the previous settings or data and you're happy to delete them, you can try deleting the entire directory that was established the first time you installed Postgres.app.
Can you open Postgres.app and look at your server settings, as in the screenshot below?
If so, that will tell you where your settings and data are being stored, For me, it's in my home directory's Application Support folder.
As long as you're 100% certain that you don't need any of your previous data and settings, you should be able to delete the entire Postgres folder. Note: this will also delete any data/settings from the current version of postgres, but it doesn't sound like that will be a problem for you.
PS: I can see two weird red squares at the bottom of my screenshot which seems like something somewhere is not correctly handling the transparent parts of the PNG.
Regarding your postgres user password, you can follow advice from this Stack Overflow question to change it. It's pretty much the same steps, but with changing the postgreSQL configuration directory path on your machine. The key to solve your problem is to login on your system as a super user or root or whatever it is. and make sure it's allowed {in your postgreSQL server configuration } to connect and login via unix socket without requiring the password.
Regarding your version issue: install both version of PostgreSQL on your machine (the old one and the v15) then follow along with the official docs to migrate your database to work on latest versions. Another approach is to use pg_dump commands which you can search for its usage and manual online on the internet.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
We are using windows XP SP3 version "PosReady" which is still supported by MS.
We have several old computers running on this OS.
Recently we have problem with any software using msvcrt.dll.
Constantly this message popup shows:
"the procedure entry point sprintf_s could not be located in DLL msvcrt.dll".
Tried removing and reinstalling all MS visual C++ run times but it did not help.
Any help is appreciated.
Thanks,
There was an express update pushed through Windows Update yesterday (FEB-16), that solves the issue and is listed in my installed updates as:
Security Update for Windows XP (KB4487085-v2)
So it seems the issue was in the first version of that update.
Microsoft in 4487085 states:
This update was rereleased February 15, 2019 to address a known issue that occurred when you installed the original February 12, 2019 version of the update.
and
After you install the originally released version of this security update (from February 12, 2019), applications that use the msvcrt.dll dynamic link library (DLL) do not load properly.
Uninstall the Windows XP updates that were pushed out February 12.
Windows update, via the "shield" in task bar, notified me that there were updates. I installed them and after reboot had the issue described here. So, pretty obvious what the problem was. I used "Add/Remove Programs" to uninstall the nine or so updates that were showing for that date.
Most of the updates affected .NET libraries and I think that's where the problem is. The newest MSVCRT.DLL on my system is from 2012, even when the updates were still installed, so messing with them won't help.
Ideally, MS will fix this, but if not, we're almost out of support anyway. Don't forget to disable automatic updates or the problem will come back.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I really need at least mvc 4.3 for my project because of migrations, but cannot find any tutorial or tool. What could be the steps to take and what to download, install, execute?
Based on your comment I assume you are referring to Entity Framework.
If you are currently using EF 4.x (where x < 3) in your project and you want to use the latest version of Entity Framework, you can simply update Entity Framework using the NuGet package manager. Most projects will upgrade smoothly (all of mine did).
You may wish to search the web and/or stack overflow for "upgrade entity framework 4 to 5" to identify edge cases that may apply to you.
Make sure you have checked everything into source control before doing the upgrade so that you can easily recover if something does go wrong.
NOTE: Your comment says that EF is not listed in the NuGet upgrade list. If you are not on EF 5, it should be listed. You can start an upgrade from the package manager command line by entering:
Install-Package EntityFramework -Version 5.0.0
If that produces any error messages, suggest you open a new question with the errors it lists.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
Our team is starting to use Vagrant for development on Mac OS X machines so we can better simulate our Red Hat Enterprise Linux production environment. Our operations group says our Red Hat License only covers instances being run on our VMWare cluster. How do other people deal with RHEL licensing using Vagrant?
We were in the same situation and decided to use CentOS on our developer boxes. https://www.centos.org/
I downloaded basic rhel server I found online and built a vagrant box with Packer for use in Vagrant/Test Kitchen. I'm forced to use various other repositories (CentOS/EPEL/RPMFusion etc) instead of the RHN repos which I don't have access to without licensing. I actually wrote a small chef cookbook to write all the custom /etc/yum.repos.d/*.repo files after initial install. It definitely works for a dev environment. If you have access to different ISOs then you can built whatever versions of rhel that you need with Packer.
http://dtucker.co.uk/hack/creating-a-vagrant-base-box-for-rhel-with-bento.html
https://github.com/xacaxulu/packer-boxes/blob/master/README.md <----a box to use if you want.
Have you tried this?
https://access.redhat.com/downloads/content/293/ver=1/rhel---7/1.0.0/x86_64/product-downloads
Have you also checked the developer subscriptions?
https://access.redhat.com/support/offerings/developer/
There is a blog specifying how to use vagrant with RHEL... but I can't post 3 links :(
Here is a proposal (I am using this approach since I am also working with rhel vagrant boxes for running ansible scripts)
Create a red hat developers account here (click on register).
Download an rhel vagrant box from here (you will have to log in with your previously created account.
Fire up your box and ssh into it.
Follow these instructions to register your vm
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I'm new to SVN but I managed to install a server on my server and get it to load the respositories from the web (using uberSVN) but when I try to connect to it in eclipse using Subversive I keep getting am error reading "svn: handshake failed, received: ' " For my url I'm using "svn://mydomain.com:3690/svn" I have no problem connecting to the server through TortoiseSVN so I know the problem is not with the server. I know this is a noob question, but any help is greatly appreciated :)
Make sure the svn client used in Eclipse is compatible with the svn version for the server. Also check TortoiseSVN version and compare with what you got in Eclipse. Per my experience, there are some major incompatibilities between SVN 1.4.x and 1.6.x.