IniAdmin? Plugin version 0.11
modifiy some settings and click Apply changes button.
404 file not found.
(apache error log, File does not exist C:/Program Files/Apache Group/Apache2/htdocs/trac/exampleproject/admin/tracini/trac)
solution...
# Apply changes
if req.method == 'POST':
options = [option.name for (section, _), option in
Option.registry.iteritems() if section == page]
modified = False
for option, value in req.args.iteritems():
if option in options:
if self.env.config.get(page, option) != value:
self.env.config.set(page, option, value)
modified = True
if modified:
self.env.log.debug("Updating trac.ini")
self.env.config.save()
#req.redirect(self.env.href.admin(cat, page))
I comment out "req.redirect(self.env.href.admin(cat, page))"