Note that there are some explanatory texts on larger screens.

plurals
  1. POMy website I just hosted on Google Cloud shows blank
    text
    copied!<p>I just put up my website files and database on Google cloud.</p> <p>When i access it via website.appspot.com, it shows a blank page. Also I cant access the static resources such as website.appspot.com/images/features.png</p> <p>When I view log, I see only these:</p> <pre><code>2013-11-14 20:41:12.107 /favicon.ico 200 61ms 0kb Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0 AlexaToolbar/alxf-2.19 module=default version=1 41.203.69.6 - - [14/Nov/2013:11:41:12 -0800] "GET /favicon.ico HTTP/1.1" 200 0 - "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0 AlexaToolbar/alxf-2.19" "gcdc2013-myworkset.appspot.com" ms=61 cpu_ms=0 app_engine_release=1.8.7 2013-11-14 20:41:11.549 / 404 142ms 0kb Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0 AlexaToolbar/alxf-2.19 module=default version=1 41.203.69.6 - - [14/Nov/2013:11:41:11 -0800] "GET / HTTP/1.1" 404 26 - "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0 AlexaToolbar/alxf-2.19" "gcdc2013-myworkset.appspot.com" ms=142 cpu_ms=0 cpm_usd=0.000003 loading_request=1 app_engine_release=1.8.7 instance=00c61b117ceec79a7aa048437e41f62f131610 I 2013-11-14 20:41:11.548 This request caused a new process to be started for your application, and thus caused your application code to be loaded for the first time. This request may thus take longer and use more CPU than a typical request for your application. </code></pre> <p>This is the content of my app.yaml</p> <pre><code>application: gcdc2013-myworkset version: 1 runtime: php api_version: 1 handlers: - url: /favicon\.ico static_files: favicon.ico upload: favicon\.ico - url: .* script: index.php - url: / script: index.php - url: /index\.php script: index.php - url: /features script: features/index.php - url: /about script: about/index.php - url: /oauth2callback/? script: signup.php - url: (.*)\.[\d]{10}\.(css|js) static_files: $1.$2 upload: (.*).(.*) - url: /css static_dir: css - url: /js static_dir: js </code></pre> <p>What exactly am I missing?</p> <p>NEW APP.YAML</p> <pre><code>application: gcdc2013-myworkset version: 1 runtime: php api_version: 1 handlers: - url: /favicon\.ico static_files: favicon.ico upload: favicon\.ico - url: /features script: features/index.php - url: /about script: about/index.php - url: /css static_dir: css - url: /images static_dir: images - url: /js static_dir: js - url: / script: index.php - url: /index.php script: index.php - url: (.*).php script: $1.php - url: /oauth2callback/? script: signup.php #- url: (.*)\.[\d]{10}\.(css|js) # static_files: $1.$2 # upload: (.*).(.*) </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload