> [CODE] > IOError: [Errno 2] No such file or directory: '/base/data/home/apps/ > warlock24/1.337586579904043005/pages/home.html' > [/CODE]
> where are my files? :(
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.
> 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 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.
On Nov 8, 5:20 am, warlock24 <warloc...@gmail.com> wrote:
> how do i set file permissions? Something i must do in YAML file?
> On 8 Lis, 02:29, OvermindDL1 <overmind...@gmail.com> 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 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.
> On Nov 8, 5:20 am, warlock24 <warloc...@gmail.com> wrote:
>> I found my file :D
>> how do i set file permissions? Something i must do in YAML file?
>> On 8 Lis, 02:29, OvermindDL1 <overmind...@gmail.com> 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.
On Mon, Nov 9, 2009 at 7:06 AM, Wooble <geoffsp...@gmail.com> 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/"
> > how do i set file permissions? Something i must do in YAML file?
> > On 8 Lis, 02:29, OvermindDL1 <overmind...@gmail.com> 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.
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 <hge...@gmail.com> wrote:
> On Mon, Nov 9, 2009 at 7:06 AM, Wooble <geoffsp...@gmail.com> 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/"
> > > how do i set file permissions? Something i must do in YAML file?
> > > On 8 Lis, 02:29, OvermindDL1 <overmind...@gmail.com> 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.