v6 windows allinone installer pg_path not define
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
| Odoo Server (MOVED TO GITHUB) |
Fix Released
|
Low
|
OpenERP's Framework R&D |
Bug Description
Hi,
when I install allinone installer, server+2 clients+postgresql, in server\
The consequence is that in the menu, when I try to use backup or import database, there is a simpne message "could not backup/retore database". A good thing would be to verify if pg_path is different of None, and if not to display a message which says to define the install path for pg_path (in the case where the server is installed as a standalone package).
Bye
Related branches
- Olivier Dony (Odoo): Approve on 2011-09-19
- Naresh(OpenERP) (community): Approve on 2011-08-24
-
Diff: 11 lines (+1/-0)1 file modifiedsetup.nsi (+1/-0)
Changed in openobject-server: | |
assignee: | nobody → Stephane Wirtel (OpenERP) (stephane-openerp) |
importance: | Undecided → Low |
status: | New → Confirmed |
GEM (nimp3) wrote : | #1 |
GEM (nimp3) wrote : | #2 |
Hi,
don't forget to restart openerp server after writting in conf file :
WriteIniStr "$INSTDIR\
nsExec::Exec "net stop openerp-server-6.0"
sleep 2
nsExec::Exec "net start openerp-server-6.0"
sleep 2
bye
Changed in openobject-server: | |
assignee: | Stephane Wirtel (OpenERP) (stephane-openerp) → OpenERP's Framework R&D (openerp-dev-framework) |
Changed in openobject-server: | |
status: | Confirmed → Fix Committed |
Olivier Dony (Odoo) (odo-openerp) wrote : | #3 |
The fix in setup.nsi has landed in trunk at revision 3623 revid: <email address hidden>
Thanks for helping improving the windows support in OpenERP, as usual! :-)
Changed in openobject-server: | |
milestone: | none → 6.1 |
status: | Fix Committed → Fix Released |
Hi,
to solve the problem when postgresql is installed with installer (no previous install for postgresql)
change line 295 :
SectionEnd
by
WriteIniStr "$INSTDIR\ Server\ openerp- server. conf" "options" "pg_path" " $INSTDIR\ PostgreSQL\ bin"
SectionEnd
bye