~openerp/openobject-client-web/trunk

« back to all changes in this revision

Viewing changes to doc/README.txt

  • Committer: ame (Tiny)
  • Date: 2010-01-04 10:41:58 UTC
  • Revision ID: ame@tinyerp.com-20100104104158-92jypyicgh56twq8
[REF] openerp-web => openobject-web (project name changed)
[REF] openerp => openobject (namespace changed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
for OpenERP Web. In that case, just download the source package and do the 
53
53
following...
54
54
 
55
 
    $ cd /path/to/openerp-web/lib
 
55
    $ cd /path/to/openobject-web/lib
56
56
    $ ./populate.sh
57
57
    $ cd ..
58
58
 
68
68
 
69
69
OpenERP Web:
70
70
 
71
 
    $ sudo easy_install -U openerp-web
 
71
    $ sudo easy_install -U openobject-web
72
72
    
73
73
    all other dependencies will be installed automatically by setuptools...
74
74
    
75
75
Configuration:
76
76
 
77
 
    Locate the `config/openerp-web.cfg` in the installed `EGG`, and make 
 
77
    Locate the `config/openobject-web.cfg` in the installed `EGG`, and make 
78
78
    appropriate changes, especially:
79
79
 
80
 
    [openerp]
 
80
    [openobject]
81
81
    server = "localhost"
82
82
    port = 8070
83
83
    protocol = "socket"
88
88
    port is the OpenERP server port...
89
89
    protocol is the protocol to be used (socket, http or https)
90
90
 
91
 
Now start the web server with `openerp-web` command:
 
91
Now start the web server with `openobject-web` command:
92
92
 
93
 
    $ openerp-web
 
93
    $ openobject-web
94
94
 
95
95
If you see message showing `IOError: Port 8080 not free on '0.0.0.0'` make
96
96
sure no other application is running on the specified port (8080 is default).
97
97
 
98
98
You can change port by changing `server.socket_port` value in
99
 
`config/openerp-web.cfg`.
 
99
`config/openobject-web.cfg`.
100
100
 
101
101
If everything is fine, open your favourite web browser and type 
102
102
http://localhost:8080/, and your can see welcome page with login screen.
114
114
 
115
115
This has been tested on `ubuntu` only.
116
116
 
117
 
    $ sudo cp /path/to/openerp_web-5.0.2-py2.5.egg/scripts/openerp-web /etc/init.d/
118
 
    $ sudo cp /path/to/openerp_web-5.0.2-py2.5.egg/config/openerp-web.cfg /etc/
119
 
 
120
 
edit `/etc/init.d/openerp-web`:
121
 
 
122
 
    USER="openerp"
123
 
 
124
 
and `/etc/openerp-web.cfg`:
125
 
 
126
 
    log.access_file = "/var/log/openerp-web/access.log"
127
 
    log.error_file = "/var/log/openerp-web/error.log"
 
117
    $ sudo cp /path/to/openobject_web-5.0.2-py2.5.egg/scripts/openobject-web /etc/init.d/
 
118
    $ sudo cp /path/to/openobject_web-5.0.2-py2.5.egg/config/openobject-web.cfg /etc/
 
119
 
 
120
edit `/etc/init.d/openobject-web`:
 
121
 
 
122
    USER="openobject"
 
123
 
 
124
and `/etc/openobject-web.cfg`:
 
125
 
 
126
    log.access_file = "/var/log/openobject-web/access.log"
 
127
    log.error_file = "/var/log/openobject-web/error.log"
128
128
    
129
129
Now run following command to start the OpenERP Web automatically on system startup.
130
130
 
131
 
    $ sudo mkdir /var/log/openerp-web
132
 
    $ sudo chown -R openerp /var/log/openerp-web
133
 
    $ sudo update-rc.d openerp-web
 
131
    $ sudo mkdir /var/log/openobject-web
 
132
    $ sudo chown -R openobject /var/log/openobject-web
 
133
    $ sudo update-rc.d openobject-web
134
134
 
135
135
Start the deamon:
136
136
 
137
 
    $ sudo /etc/init.d/openerp-web start
 
137
    $ sudo /etc/init.d/openobject-web start
138
138
 
139
139
-------------------------------------------------------------------------------
140
140
4. WINDOWS INSTALLATION
163
163
 
164
164
OpenERP Web:
165
165
 
166
 
    > easy_install -U openerp-web
 
166
    > easy_install -U openobject-web
167
167
 
168
168
Configuration:
169
169
 
221
221
 
222
222
    This method only works if you want your OpenERP Web application at the 
223
223
    root of your server (https://www.example.com). OpenERP Web currently can't 
224
 
    be deployed under a subdirectory, e.g. http://www.example.com/openerp.
 
224
    be deployed under a subdirectory, e.g. http://www.example.com/openobject.
225
225
 
226
226
    To overcome with the issue you can go with `subdomain`, like:
227
227
 
228
 
        https://openerp.example.com
 
228
        https://openobject.example.com
229
229
 
230
 
    See: http://openerp.org/wiki/index.php/InstallationManual/WebClientHTTPS
 
230
    See: http://openobject.org/wiki/index.php/InstallationManual/WebClientHTTPS
231
231
 
232
232
-------------------------------------------------------------------------------
233
233
6. WEB BROWSER COMPATIBILITIES