Skip to content Skip to sidebar Skip to footer

Plone Change In Code Not Visible In Development Site

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

Solution 1:

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 with console or start 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:

bin/instance help

for a list of supported commands or run:

bin/instance help console

to get help on a specific command; the above example will print the help on the console command.

Post a Comment for "Plone Change In Code Not Visible In Development Site"