Using Ohloh’s PHP API
- Read more about Using Ohloh’s PHP API
- Log in to post comments
Running OpenERP 5.0.3 from sources on Ubuntu 8.10
$ bzr clone lp:openerp $ cd openerp $ ./bzr_set.py -r tag:5.0.3 ../5_0_3 $ cd ../5_0_3/Open one terminal for the server
$ cd server/bin/(make sure you have a "terp" user on your system, and that you're logged as this user, and that there is a "terp" database in your PosgtreSQL server)
$ sudo su terp
$ ./openerp-server.py --db_user=terp --db_host=localhostOpen another terminal for the web client
$ cd web/lib/
$ ./populate.sh(this will insta
Enhance your usage of Firefox
- Read more about Enhance your usage of Firefox
- Log in to post comments
When installing Ubuntu on one of the new machines we get from time to time, there's a common mechanism I repeat over and over with Firefox:
- install the Firebug extension
- install the Web Developer extension
- install the ShowIP extension
- install the GooglePreview extension
- change the link of the start bar icon to start Firefox, to "firefox -no-remote -ProfileManager %u" instead of "firefox %u"
Easily avoid using your password in an SSH connexion: ssh-copy-id
On Linux systems, there used to be a mildly complicated but tedious way to allow you to SSH another computer using your public key, which involved finding and copying your public key on the other host, then connecting to the host and putting this key into ~/.ssh/authorized_keys.
Now there is a much simpler way to do that... Just launch the following command (with your own data), enter your password, and that's it!
ssh-copy-id yourusername@remote.host.addressI love administrative simplification!
Java Applet Uploader bug in Gallery 2 + Firefox 3.0
This is a bug we've seen but have been unable to explain so far... for several people, all the Java-based Gallery 2 uploaders applets and apps are crashing the Firefox browser or putting it in an unstable state, preventing us from uploading pictures.
Apache doesn't log anything wierd. The Java console isn't very eloquent (but it reports a few exceptions), but the browser doesn't get to show the applications that allow uploading files this way.
There is, however, a solution, which is to have a *clean* Firefox getting to the uploader pages.
Quick Perl Regexp in VIM to format e-mails list
I have a list of e-mails that I extracted from MySQL as something like this:
name@example.com firstname lastname
name2@example.com firstname2 lastname2
name3@example.com firstname3 lastname3
and I want them to be in this format:
firstname lastname
firsntame2 lastname2
firstname3 lastname3
Using VIM, I can do:
:% s/^/ /
:% s/()s(w*)s(.*$)/2 3 1/
The last one is a bit more complex but uses the n-style references to parenthesed elements in the matching part.
ODBC and MSSQL under Debian/Ubuntu
- Read more about ODBC and MSSQL under Debian/Ubuntu
- 1 comment
- Log in to post comments
In just two days, I came up with two different reasons to point to Landure's technical doc's site.
http://howto.landure.fr/gnu-linux/ubuntu-dapper-drake/developpement-et-serveurs/installation-du-module-mssql-pour-php-5-sur-ubuntu-dapper-drake
This time, it was to setup a connection to a MSSQL server from a Debian server.
Creating multi-domain SSL certificates
The post is in French, but is certainly worth the effort of translation for people looking on how to do this:
http://howto.landure.fr/gnu-linux/debian-4-0-etch/creer-un-certificat-ssl-multi-domaines
If enough people ask for a good translation, I'll consider doing that here.
OpenERP 5 - Creating a chart of accounts - first draft
Following up on our permanent quest to harness the power of OpenERP, this article will consider the specific challenge of building a chart of accounts.
One of the most difficult things in OpenERP when customising it for a specific country is defining the chart of accounts.
Pagination
- Previous page
- Page 5
- Next page