My App Engine isn't loading my css, javascripts, or images. My index.php and login.php are the only files that I've been able to find so far however my other files use sessions to prevent unauthorized access so I'm not sure I'll be able to get to them without logging in first.
Directory Structure is from the app.yaml file to the corresponding files.
I'm using Google's App Engine with PHP and my YAML code is below
handlers:
- url: /index.php
script: content/home/index.php
- url: /login.php
script: content/home/login.php
- url: /control.php
script: content/home/control.php
- url: /admin.php
script: content/home/admin.php
- url: /logout.php
script: content/home/logout.php
- url: /checkaccess.php
script: content/home/checkaccess.php
- url: /register.php
script: content/home/register.php
- url: /managemodule.php
script: content/home/managemodule.php
- url: /manageuser.php
script: content/home/manageuser.php
- url: /update.php
script: content/home/update.php
- url: /.*
script: content/home/index.php
- url: /images
script: images
- url: /stylesheets
static_dir: system/templates/stylesheets
- url: /includes
script: system/templates/includes
- url: /scripts
script: system/templates/javascript
I tried to use static_dir: as well as script: for the stylesheets, javascript, and images. The includes oddly enough works fine with no issues but I cannot get my images, css, or scripts to work correctly.
I tried to inspect the files and they're not found but I know they've uploaded via appcfg.py. In my logs it states "No handlers matched this URL."
If anyone has a great readme or any other information regarding YAML I'd greatly appreciate it. I've read the YAML description from Google a few times and checked the YAML website I feel like I'm doing it right. I tried with another project (a lot simpler) and it worked with no issues.