Please, someone should help me.
I was doing an upgrade from 1.7.5 to 1.7.8 and ran into Prestashop error below:
Could not extract
vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/xml/profiler.xml
from backup, the destination might not be writable.
PHP is 7.4
Related
I have problems restarting ghost after updating to ghost 3.0. When I run the command ‘ghost version’ in the htdocs folder I get:
Ghost-CLI version: 1.13.1 Ghost version: 3.0.3 (at
/opt/bitnami/apps/ghost/htdocs)
But when I run ‘ghost start’ or similar commands I get the following message:
Ghost-CLI only works with Ghost versions >= 1.0.0. If you are trying
to upgrade Ghost LTS to 1.0.0, refer to
https://ghost.org/faq/upgrade-to-ghost-1-0/. Otherwise, run ghost
start again within a valid Ghost installation.
Did anybody have the same issue or maybe know a fix?
I try to install Sylius but i have an error after projet installed
"/vendor/sylius/sylius/src/Sylius/Bund
le/AdminBundle/Resources/config/grids/product_from_taxon.yml"
This must be something in the environment of installation. Since 99% of people who install Sylius lately do not encounter this YAML parsing problem.
This issue was already posted, we are investigating it :)
What commands you used? Also, do you have all the required tools installed? Composer, npm and so on?
I installed one yesterday and it worked just fine.
started with 4.0.1
in buildout.cfg
extends =
base.cfg
# versions.cfg
# http://dist.plone.org/release/4.1-latest/versions.cfg
http://dist.plone.org/release/4.2-latest/versions.cfg
4.0 -> 4.1 went fine
4.1 -> 4.2 gives zc.buildout version error I haven't figured out
bin/buildout
Error: There is a version conflict.
We already have: zc.buildout 1.4.4
but zc.recipe.egg 1.3.2 requires 'zc.buildout>=1.5.0'
http://buildoutcoredev.readthedocs.org/en/latest/issues.html
seems to suggest remedies:
"To fix, you have a couple options. First, you can force buildout to run with the version you already have installed by invoking the version tag. This tells your [Plone] bootstrap.py file to play nicely with the version that you already have installed."
In my case that would be
python bootstrap.py --version=1.4.4
However this doesn't help, same error as before,
the other suggestion, deleting the zc.buildout egg,
fails hard.
Suggestions?
Thanks,
Kent
That way will not work as zc.recipe.egg 1.3.2 requires zc.buildout 1.5+.
You can try to downgrade zc.buildout.egg to an older version (a version that do not require so recent zc.buildout, give it a try) or upgrade zc.buildout.
I suggest you to upgrade your zc.buildout, pinning a modern version:
[buildout]
...
[versions]
...
zc.buildout = 2.4.4
I try to install Redmine 3.0.4 in Ubuntu. I follow this guide:
https://www.phusionpassenger.com/documentation/Users%20guide%20Nginx.html#install_on_debian_ubuntu
but it still can not get it to work.
There is an error when I execute bundle install:
root#ubuntu:/home/hnb/redmine# bundle install
Redmine requires Bundler 1.5.0 or higher (you're using 1.3.5).
Please update with 'gem update bundler'.
I tried to perform the steps described in this StackOverflow question but didn't not work.
Finally , I install the install package - bitnami Redmine.
Here is the link : https://bitnami.com/stack/redmine.
I have RHEL 6.5 Server with an installation of R (3.1.1) & RStudioServer (0.98.1062)
I have postgresql-9.3 installed and handling a large database. In order to connect R to PostgreSQL, I have in the past used the RPostgreSQL (still do on my CentOS 7 Workstation). However, attempting to compile under RHEL 6.5 I get an error
In file included from RS-PQescape.c:7:
RS-PostgreSQL.h:23:26: error: libpq-fe.h: No such file or directory
The file is located on my system here:
/usr/pgsql-9.3/include/libpq-fe.h
Libpq is part of the Postgres installation, but RPostgreSQL cannot find it:
[root#server /]# yum list libpq*
Loaded plugins: product-id, refresh-packagekit, security, subscription-manager
Installed Packages
libpqxx.x86_64 1:4.0.1-1.rhel6 #pgdg93
libpqxx-debuginfo.x86_64 1:4.0.1-1.rhel6 #pgdg93
libpqxx-devel.x86_64 1:4.0.1-1.rhel6 #pgdg93
Is there any way to tell RPostgreSQL where to look (symbolic links?) or some other workaround? This should be simple, but I've wasted several hours on this already...
Followup info because I just had the same problem.
Installing yum install postgresql-devel resolves the error too.
I ended up looking into the RPostgreSQL configure file in the tarball, searched for the file name the script couldn't find and decided it was easiest to create an environmental variable:
export PG_INCDIR=/usr/pgsql-9.3/include/
Worked like a charm after that.
If you have sudo rights, you could also try:
yum install postgresql-devel