On Fri, Jul 3, 2009 at 01:48, Francois
(Jersey)<[email protected]> wrote:
>
>
> tried to install the spreadsheet application, but I have the following
> error message: unable to install application spreadsheet.
>
> It is possible to download the file, but I believe file is corrupt

This error is shown when this block of code generates an exception:

    try:
        upfile = open(upname, 'wb')
        upfile.write(fobj.read())
        upfile.close()
        path = apath(app, request)
        os.mkdir(path)
        did_mkdir = True
        w2p_unpack(upname, path)
        if extension != 'tar':
            os.unlink(upname)
        fix_newlines(path)

So, probably you don't have permission to open upname (file that was
uploaded), write in app file, mkdir to new app etc.

-- 
 Álvaro Justen
 Peta5 - Telecomunicações e Software Livre
 21 3021-6001 / 9898-0141
 http://www.peta5.com.br/

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py Web Framework" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to