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 would like to know the correct steps to setup Diazo in a Plone 4.0.7 installation.
Thanks in advance.
Alano
plone.app.theming is not supported on Plone 4.0. You should use Plone 4.1.
First, upgrade to Plone 4.1.
Then you can use plone.app.theming if you add the KGS to your buildout:
http://good-py.appspot.com/release/plone.app.theming/1.0b8?plone=4.1rc3
In practice, that means editing your buildout.cfg file as follows. Add plone.app.theming to your instance eggs:
[instance]
eggs += plone.app.theming
And update the [versions] section as follows. Either include all the version pins:
# Known good set for plone.app.theming version 1.0b8
# The latest version can be found at
# http://good-py.appspot.com/release/plone.app.theming/1.0b8?plone=4.1rc3
[versions]
AccessControl = 2.13.4
Acquisition = 2.13.7
ClientForm = 0.2.10
DateTime = 2.12.6
…
Or extend the good-py config:
[buildout]
extends = http://good-py.appspot.com/release/plone.app.theming/1.0b8?plone=4.1rc3
versions = versions
Then follow the plone.app.theming and diazo instructions:
http://pypi.python.org/pypi/plone.app.theming/1.0b8
http://diazo.org
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I installed the maker-bundle like this:
composer require symfony/maker-bundle
I forgot to add --dev so it only installs for the dev environment. How can I fix that? Is it as easy installing it again like this?
composer require symfony/maker-bundle --dev
Or something like in composer.json move this into the "require-dev" section?
"symfony/flex": "^1.2",
"symfony/maker-bundle": "^1.20"
I'm not sure how to fix this? Thanks.
What you should probably do, is remove the bundle, and then install it again with --dev.
Removing:
composer remove symfony/maker-bundle --update-with-dependencies
Installing:
composer require symfony/maker-bundle --dev
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
NGINX was built from source using the latest stable build on a debian 9 server. sudo nginx command cannot be found. The NGINX install is located in /usr/local/nginx. How can I configure my server to follow the standard sudo nginx [command] rules? I have tried adding PATH=/usr/sbin/:$PATH which did not work since NGINX is not located in sbin. Thanks
Run echo $PATH Does it contain /usr/local/sbin?
If not then add PATH=/usr/sbin/:$PATH to your .profile file.
Also, check that nginx is installed in /usr/local/sbin, by going into this directory.
If not then install it by using following commands:
sudo apt update
sudo apt install nginx
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Just started using meteor and built the first app using the to-do app tutorial.
Now I plan to use meteor for a project with bootstrap, is there a standard boilerplate available for this which gives me a file structure to work with ?
My app has a small to medium level of sophistication.
You could use Yeoman, a web scaffolding tool, to generate your Meteor projects.
Run npm install -g yo to install Yeoman.
Run npm install -g generator-meteor to install the Meteor generator.
Run mkdir new-meteor-project && cd $_ to create a new project directory.
Finally, run the Yeoman Meteor generator: yo meteor.
This generator is able to include Iron Router and Bootstrap:
$ yo meteor
_-----_
| | .--------------------------.
|--(o)--| | Welcome to Yeoman, |
`---------´ | ladies and gentlemen! |
( _´U`_ ) '--------------------------'
/___A___\
| ~ |
__'.___.'__
´ ` |° ´ Y `
? Shall we include Iron Router? Yes
? Shall we include Bootstrap? Yes
create client/client.js
create client/lib/subscriptions.js
create client/views/home.js
create client/views/home.html
create client/views/common/loading.html
create lib/collections.js
create public/robots.txt
create server/publications.js
create server/server.js
create server/security.js
create .meteor/.gitignore
create .meteor/release
create .gitignore
create .jshintrc
create .travis.yml
create .editorconfig
create LICENSE
create README.md
create client/routes.js
create client/views/layout.html
create client/styles/theme.css
create .meteor/packages
If this generator does not meet your needs, you may want to search for another one.
Hello I'm trying to install PloneBooking Product into my Plone 4.3.3 by using buildout.cfg like this
eggs =
Products.PloneBooking
Products.PloneFormGen
Products.ZMySQLDA
Plone
Pillow
Automatically I can see the PloneFormGen into my plugins page but no sign of PloneBooking, It could've be a version issue. I've already tried using mr.developer and using the github version, but the documentation is confusing since there's no [eggs] into my buildout.cfg in this link http://plone.org/documentation/kb/installing-add-ons-quick-how-to
. How can I proceed from this point?
Thanks already.
Looks like there's a python version problem in some modules, so I've just installed a different version of PloneBooking into my [versions] section, like:
Products.PloneBooking = 3.0.0a2
no need for mr.developer or anything.
This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
PHP - Is there a portable version of PHPUnit?
On a Red Hat Linux machine, without root privileges, so can not use pear.
Manual download leads to https://github.com/sebastianbergmann/phpunit/, but this seems a windows version since the executable is a phpunit.bat.
Is there a way to install PHPUnit on Linux without PEAR?
I have made an installer for this: https://github.com/kblomqvist/gitinstall-phpunit
Further down on the same page, it says how to install PHPUnit from a git checkout:
PHPUnit from a git checkout