I am very new to plone. I have a project folder in eclipse. I have imported it from the cvs project. I have zope as server and I start zope with ./bin/instance restart
. When I make changes in my folder, I cannot see the changes in the development website. I can't seem to find what is happening. I even restarted zope after making changes in python. Can anyone help me with this?
相关问题
- Flush single app django 1.9
- How to stop a dbus gobject loop
- Python's difflib SequenceMatcher speed up
- Getting 'Missing required field: member' w
- What can be the maximum “POST” size I can have?
相关文章
- Is there a size limit for HTTP response headers on
- Does there exist empty class in python?
- ImportError: No module named twisted.persisted.sty
- Get a header with Python and convert in JSON (requ
- python unit testing methods inside of classes
- Requiring tensorflow with Python 2.7.11 occurs Imp
- Generate Fortran subroutine with SymPy codegen for
- Python - What is a lazy property?
Make sure you start your Zope server with
bin/instance fg
, most likely the name of the script if you used the Plone universal installer buildout.To see changes in python code you'll either need to restart the server (CTRL-C then start again) or use something like
plone.reload
to request a reload of changed code.When starting your server with the
fg
command, it is automatically running in debug mode and any templates, resources and skin items are reloaded automatically. Start the server withconsole
orstart
and it'll run in production mode and templates and such are loaded from disk only once.See the Plone.org documentation on buildout for more information.
The
bin/instance
command has a built-in help command, try:for a list of supported commands or run:
to get help on a specific command; the above example will print the help on the
console
command.