Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie

Actually, I used the qrcode package. It generates a qrcode which is a PIL object.

Then I want to save the qrcode image to the disk through the save() method.

With the code "img.save('abc.png')" (img is a variable of PIL object).

And odoo returned me "IOError: [Errno 13] Permission denied: 'abc.png'".

But I have already used the command "chmod -R 777 openerp/" and "chown -R odoo:odoo openerp/" to open the permission. Also the home directory of the linux user odoo who run the odoo service. But it seems didn't take effect. 

And I tried the code in the SHELL:

=========================================================

odoo@finn-virtual-machine:~$ python

Python 2.7.9 (default, Nov 11 2015, 17:17:16)

[GCC 4.8.4] on linux2

Type "help", "copyright", "credits" or "license" for more information.

>>> import qrcode

>>> img = qrcode.make('something')

>>> img.save('abc.png')

>>>

==========================================================

It can save the qrcode to the home directory of the linux user odoo successfully.

I have no idea about what's wrong with my developing module.

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
0
lip 24
949
3
sie 20
5782
0
maj 19
8672
1
cze 18
7198
1
lut 18
4229