id,summary,reporter,owner,description,type,status,priority,component,severity,resolution,keywords,cc,release 2221,IniAdmin Plugin Apply changes button bug,anonymous,Alec Thomas,"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... {{{ #!python # 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))"" ",defect,closed,highest,IniAdminPlugin,blocker,fixed,,,0.11