That's not a permissions error; that one is where he's trying to read from his application directory (which is allowed), but the file's not there. Almost certainly it's specified as a static file in app.yaml; these are not copied to the application directory but are served from different servers.
On Nov 9, 10:17 pm, Gezim Hoxha <[email protected]> wrote: > On Mon, Nov 9, 2009 at 7:06 AM, Wooble <[email protected]> wrote: > > > You didn't find your file. You're trying to read /pages at the root > > of the filesystem, and you don't have permission to read anything > > above your application directory. The error isn't telling you that > > you don't have permission to read it, it's that you don't even have > > permission to check for its existence. > > Why then would he be getting this error in the other scenario with an > absolute URL: > "IOError: [Errno 2] No such file or directory: '/base/data/home/apps/" > > Gezim Hoxha (aka Gizmo)http://www.gizmobooks.com-- buy/sell your textbooks > > > > > On Nov 8, 5:20 am, warlock24 <[email protected]> wrote: > > > I found my file :D > > > > but got another problem :/ > > > > pageContent = open(pageUrl, 'r').read() > > > IOError: [Errno 13] Permission denied: '/pages/home.html' > > > > how do i set file permissions? Something i must do in YAML file? > > > > On 8 Lis, 02:29, OvermindDL1 <[email protected]> wrote: > > > > > I would think that would work, but I cook everything in myself; you > > > > might just try using a relative directory access instead of absolute, > > > > I have heard that works best in GAE. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" 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/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
