I have followed openproject.org and installed with latest version 12. But I want to check some feature in version 10. So I tried removing by sudo apt-get remove openproject and reinstalled with 10. While configure it getting an error like,
ActiveRecord::StatementInvalid: PG::UndefinedColumn: ERROR: column "updated_on" does not exist
LINE 1: SELECT MAX(updated_on) FROM "settings"
Not sure why this error is throwing. So I thought to remove openproject again completely. Please confirm the above command is enough to do this or anything else I need to do.
Related
Can't use brew on an other konsole (terminal) page.
Hi I'm here to ask for a help from you guys
I installed home brew so well. And it worked in the same konsole which I have done installation. But then, when I wanted to use it on an other terminal (new terminal page) I got error like zsh: correct 'brew' to 'free' [nyae]? and also zsh: command not found: brew . I don't know what to do, I tried a lot of things but still nothing changed than before.
For my project, I need to install a specific version of the icu4c package. I used to follow the instructions written in this answer and it was working. However, recently, when I needed to do the same, it failed with the following error
Error: icu4c: undefined method `cellar' for #<BottleSpecification:0x00007fa0d75096a8>
After some investigations, I concluded that brew has new style of .rb files and old versions may not be compatible. To fix it, I run brew style --fix icu4c.rb which seemed to fix the style issues. However, now, I got the following error:
Error: Failed to load cask: ./icu4c.rb
Cask 'icu4c' is unreadable: wrong constant name #<Class:0x00007fa68d2d9278>
Warning: Treating ./icu4c.rb as a formula.
==> Downloading https://ghcr.io/v2/homebrew/core/icu4c/manifests/67.1
#=#=#
curl: (22) The requested URL returned error: 404
Error: Failed to download resource "icu4c_bottle_manifest"
Download failed: https://ghcr.io/v2/homebrew/core/icu4c/manifests/67.1
I saw a number of places that this might be due to curl or xcode command line tools. I updated both of them but could not proceed further. Any help would be greatly appreciated.
When installing the alacritty terminal on debian with cargo I get this error:
And when running cargo install crossfont I get this error:
Please help. Oh yeah btw I am running debian just so you know.
Alright boys i got the solution:
You need to install rustup and update to the newest version
then just run it again and it works magically
I am not able to successfully install pods to my project. I am always getting this error:
This is my Podfile (I added FirebaseFirestoreSwift but even when I undo the changes, its still not working):
It was working fine a month ago.
You need to install the latest version of Xcode command line tools using xcode-select --install. If you already have an installed version, you might get an error similar to
xcode-select: error: command line tools are already installed, use "Software Update" to install updates
In that case, try removing the old command line tools from /Library/Developer/CommandLineTools and reinstall it again.
When I try to install PHP7 with Homebrew I get this error
Sorry, I cannot run apxs. Possible reasons follow:
1. Perl is not installed
2. apxs was not found. Try to pass the path using --with-apxs2=/path/to/apxs
3. Apache was not built using --enable-so (the apxs usage page is displayed)
The output of /usr/sbin/apxs follows:
apxs:Error: /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.12.xctoolchain/usr/local/bin/apr-1-config not found!.
configure: error: Aborting
And the command I've used to install it is :
brew install homebrew/php/php70
Here's a screenshot of my terminal:
Terminal Screen shot
Does any one have a solution for this, knowing that I've searching the web for a solution without any luck
Try this if you're upgrading:
brew reinstall php70 --without-apache
otherwise if you're installing php70 for the first time, try the following::
brew install home-brew/php/php70 --without-apache
Faced a similar issue, found it under this GitHub issue: https://github.com/Homebrew/homebrew-php/issues/3283