Re: [google-appengine] GAE Static files not working locally on windows

2014-01-04 Thread Google Tasks Backup Moderator
On my Windows system running GAE Python, I found that any absolute URLs
were mapped to the equivalent absolute folder on my hard drive. For example
  href=/static/favicon.ico
is mapped to
  c:\static\favicon.ico

I worked around this by creating a symbolic link, by issuing the following
command from an administrator command prompt
  mklink /d \static C:\path\to\my\gae\project\static


Another alternative is to ensure that your application only ever uses
relative URLs.

Hope this helps




On 2 January 2014 01:39, Manish Patel manishtpa...@gmail.com wrote:

 Hi All,

 I am writing my first app for GAE and golang. I am trying to serve static
 files using app.yaml. but having no luck. It returns 404. I am running GAE
 SDK Locally on windows 7 x64.

 Here is my app.yaml. I am trying to serve static files out of my
 /static/images folder under my app folder

 application: myApp
 version: 1
 runtime: go
 api_version: go1

 handlers:
 - url: /images
   static_dir: static/images

 - url: /.*
   script: _go_app

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to google-appengine+unsubscr...@googlegroups.com.
 To post to this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [google-appengine] GAE Static files not working locally on windows

2014-01-03 Thread Vinny P
On Wed, Jan 1, 2014 at 8:39 AM, Manish Patel manishtpa...@gmail.com wrote:

 I am writing my first app for GAE and golang. I am trying to serve static
 files using app.yaml. but having no luck. It returns 404. I am running GAE
 SDK Locally on windows 7 x64.




What error is the dev server reporting? You noted that the browser is
reporting a 404 error, but the dev server should also be recording an error
(it'll say something similar to *Errno #, [reason-explanation]*).


-
-Vinny P
Technology  Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.