Tagged Questions
2
votes
2answers
24 views
Django No Mini matches the given query
I wrote a link-shortener app that takes a regular long url, and creates a 10 character alphanumeric string that it uses for the redirection with Django-1.5.1.
The redirection link from the generated ...
1
vote
2answers
39 views
Scrapy:In a request fails (eg 404,500), how to ask for another alternative request?
I have a problem with scrapy.
In a request fails (eg 404,500), how to ask for another alternative request? Such as two links can obtain price info, the one failed, request another automatically.
1
vote
3answers
37 views
Django 1.4 serving media files works, but not static
I am using Django 1.4 and for some reason i am able to serve media files, but not the static ones...
Here is my code:
settings:
MEDIA_ROOT = os.path.join(BASE_DIR, 'media/')
MEDIA_URL = '/media/'
...
0
votes
1answer
113 views
I'm getting a 404 in google cloud endpoints on app engine
In my app, the app.yaml (the relevant part) looks like this:
handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /logs
script: logviewer.main.app
- url: ...
0
votes
1answer
53 views
Django — send 404 emails without referrer
From the Django 1.5 documentation:
Django can also be configured to email errors about broken links (404 “page not found” errors). Django sends emails about 404 errors when:
DEBUG is ...
0
votes
2answers
98 views
Checking a url for a 404 error scrapy
I'm going through a set of pages and I'm not certain how many there are, but the current page is represented by a simple number present in the url (e.g. "http://www.website.com/page/1")
I would like ...
0
votes
1answer
56 views
How to include links in HTTPNotFound errors in Pyramid?
One part of my site is a wiki engine. When a page does not exist I want to provide a custom 404 error page containing a link to create a new page. This custom 404 should only be seen in the context of ...
1
vote
1answer
87 views
Django: GET css returns 404?
I am developing a Django site and after a series of edits I ran my server again when suddenly - no css! The server still displays the html site, of course, but the css all across the site is throwing ...
0
votes
1answer
72 views
POST response varies between 200, 500, and 404 unpredictably
Trying to do some scraping of a site that returns a large number of search result. The problem is that the only way to navigate pages is via a __doPostBack method attached to the href argument of each ...
2
votes
1answer
95 views
pythonanywhere 404 error
I'm building an app in pythonanywhere using the Flask Mega Tutorial and it works fine when I run in on my pc. When I upload it to PA it gets a 404 error.
my structure
/microblog
/flask ...
0
votes
1answer
61 views
gae & python - setting different urls in yaml: 404 not found
I'm trying to map different urls to different python scripts.
This is my yaml
application: myApp
version: 99
runtime: python27
api_version: 1
threadsafe: yes
handlers:
- url: /favicon\.ico
...
0
votes
1answer
116 views
How to specify a custom 404 view for Django using Class Based Views?
Using Django, you can override the default 404 page by doing this in the root urls.py:
handler404 = 'path.to.views.custom404'
How to do this when using Class based views? I can't figure it out and ...
0
votes
2answers
86 views
which one is better to test a valid url in python
I want to check whether a particular url exists or not.
I came across two methods.
url = "http://www.google.com"
1.
import urllib2
response = urllib2.urlopen(url)
response.code # check what is ...
0
votes
2answers
508 views
Run python cgi script in browser w/o errors
I'm trying to run it on localhost.
A short introduction. Some links I've read before post:
How to run Python CGI script
...
1
vote
0answers
325 views
Python Flask getting 404 Not Found Error
I am designing this simple website using Flask. But I am getting a 404 error for my hello method. Whenever I click on the button "rate artists," it's giving me the error, but templates for home.html, ...
1
vote
1answer
371 views
Python Twitter Tools - Adding multiple users to a list fails (lists.members.create_all)
I am using Python Twitter Tools API to try to add multiple members to a list using lists.members.create_all of Twitter API v1.1 but I am getting this error:
Twitter sent status 404 for URL: ...
0
votes
1answer
133 views
Django local static files path puzzle
I'm trying to render static files locally in development. I have followed the rules and placed stylesheets in /static/ in my Django project folder, setting STATIC_URL = '/static/'. Using the {{ ...
0
votes
3answers
165 views
404 error for css file in media folder in django app
In my django app ,I have put these settings
settings.py
------------
MEDIA_ROOT = '/home/me/dev/python/django/myproject/myapp/media/'
MEDIA_URL = '/site_media/'
urls.py
--------
...
url(r'^myapp/', ...
0
votes
1answer
119 views
Python 3.2: Battle.net scraper gives 404 on certain URLs
I'm writing a battle.net screen scraper in python, and I want to scrape this page.
Problem is, I get a 404 when I try to download it using my script.
However, viewing it in a web browser works just ...
0
votes
2answers
157 views
404 error in django when visiting / Runserver returns no errors though
When I syncdb and runserver everything works correctly in Django, but when I try to visit the webpage that it is on http://127.0.0.1:8000/ it returns a 404 error.
Page not found (404)
Request ...
2
votes
2answers
151 views
python api - shopify.Variant 404 Error
Trying to create a new Variant using the python lib.
After creating a shopify session I simply try to create a Variant instance as per the docs
session = shopify.Session('<My Url>')
...
1
vote
1answer
669 views
Why am I getting 404 error in Flask?
I'm Django developer learning Flask. I'm pretty new to how things work in Flask. I'm getting a 404 with the following code when I visit localhost:5000. Could someone explain why I'm getting this:
The ...
2
votes
2answers
130 views
Django Http404 and DEBUG mode catch 22
I'm using the staticfiles app during development, which doesn't work unless DEBUG is turned on.
From the docs:
Warning This will only work if DEBUG is True.
That's because this view is ...
2
votes
1answer
612 views
How do I return 404 when tastypie is interfacing non-ORM sources?
I am using the facade-like pattern described here: http://django-tastypie.readthedocs.org/en/latest/non_orm_data_sources.html
def obj_get(self, request=None, **kwargs):
rv = ...
1
vote
1answer
149 views
Test written for django URL Dispatcher not working
I'm working on a simple webservice in django. This is my first web app in django/python so I wouldn't be surprised if I'm missing something obvious here, but...
I'm currently trying to test my logic ...
1
vote
1answer
2k views
Django get url path without using “request.path”
I am creating a 404.html page in django which will be called when i raise "Http404"
I dont know if 404.html will be passed a "RequestContext" object but can I generate the requested url path without ...
0
votes
1answer
247 views
Can web.py be set to use the server's 404 page?
I have a server (nginx) which is routing some urls to static directories, and others to a web.py wsgi app. The server's config also defines a 404 page, which is displayed when somebody tries to visit ...
0
votes
1answer
118 views
Accessing static file for window.open no longer works in appengine 1.6.3
This was working until I downloaded the new version. Now I get a 404 error.
app.yamp is:
application: gamekicks
version: 1
runtime: python27
api_version: 1
threadsafe: true
libraries:
- name: PIL
...
0
votes
1answer
862 views
Cherrypy mapping URL to function
I'm tying to use Cherrypy for a website, but I have some problem with mapping the url of the page I want to display with function in the python code.
Now I have this code
#!/usr/bin/env python
...
0
votes
2answers
555 views
My custom 404 page doesn't work (Pyramid framework)
I want to show my fancy 404 page in pyramid app, but can get it working. After reading various magic texts about the subject, I put something like this in my code:
cfg.add_view( ...
2
votes
1answer
717 views
Am I not setting up my Flask 404 handler correctly?
In my Flask app, I set up a 404 handler like this:
@app.errorhandler(404)
def page_not_found(e):
return render_template('404.html'), 404
However, when a user goes to an unrecognized url, the ...
1
vote
2answers
270 views
How should apache/nginx and django play nicely together in respect of 404 errors?
Here is a simplified version of our setup:
Nginx reverse proxy front end serving static files
Apache + mod_wsgi serving a django app in /store and wordpress for all other URLs
404 errors outside ...
2
votes
1answer
507 views
Redirect to a Page on 404 Error
Is it possible to redirect to a page on 404 and 500 instead of constructing a custom response? I tried-
class NotFoundPageHandler(webapp.RequestHandler):
def get(self):
#if 400
...
0
votes
2answers
145 views
Root html (/index.html) can't be fetched. Returns 404
The dir structure is-
MyApplication (Project Dir)
-static
--inside static, I got different dirs containing images, css, htmls, etc
-some other dirs
-app.yaml
-index.py
-index.html
The content ...
0
votes
3answers
3k views
Trouble with Twitter API using Python
I'm having some trouble in this python code:
import twitter
twitter_search = twitter.Twitter(domain="search.twitter.com")
trends = twitter_search.trends()
The error (404 page not found) is right ...
5
votes
1answer
2k views
Google App Engine Static Files GET 404
The following app.yaml works great on my local dev server.. but when I deploy it to production all static files throw 404. Server isn't able to locate any static files. Have been searching for hours ...
24
votes
5answers
16k views
Django staticfiles app help
I've having a little issue with Django's staticfiles app.
I have added
'django.contrib.staticfiles',
to my INSTALLED_APPS and have added
STATIC_URL = '/static/'
STATIC_ROOT = ...
2
votes
1answer
400 views
Pylons: How to write a custom 404 page?
So this question has been asked before, but not answered in great detail.
I want to override the default Pylons error page to make a nicer, custom one. I've got as far as overwriting the controller ...
0
votes
2answers
257 views
Django is returning RuntimeError instead of 404
In my Django project I am having RUntimeError when I'm supposed to get a 404. The description says:
Exception Value: maximum recursion depth exceeded
The error only occurs when I try to access a ...
2
votes
1answer
168 views
404 Response in Google Buzz API
I'm playing around with Google Buzz API from Python,
During the OAuth process when I reach the part of authorizing the token from browser, I go to this URL ...
4
votes
3answers
398 views
Django Admin Intermittently Returning 404 On Model Edit
We're using the Django Admin to maintain some data that's exported to a few of our sites. Sometimes when clicking through the standard changelist view to get a model edit form instead of being routed ...
6
votes
1answer
4k views
Including a Django app's url.py is resulting in a 404
I have the following code in the urls.py in mysite project.
/mysite/urls.py
from django.conf.urls.defaults import *
urlpatterns = patterns('',
(r'^gallery/$', include('mysite.gallery.urls')),
)
...
4
votes
1answer
336 views
setting url in yaml file for google app engin (page not found) problem
I am new to python and I am super excited to learn. I am building my first app on app engin and I am not totally understanding why my yaml file is not resolving to the url that I set up.
here is the ...
1
vote
2answers
284 views
Django throws 404 at generic views
I'm trying to get the generic views for a date-based archive working in django.
I defined the urls as described in a tutorial, but django returns a 404 error whenever I want to access an url with a ...
1
vote
1answer
240 views
Pylons - Changing the regular 404 Not Found page to a custom one
How do I change the regular 404 page generated by Pylons to my own custom-made 404 page?
Thanks in advance,
John
5
votes
2answers
2k views
Handle 404 throw by code in appengine
I manage the "real" 404 errors in this way:
application = webapp.WSGIApplication([
('/', MainPage),
#Some others urls
('/.*',Trow404) #I got the 404 page
],debug=False)
But in ...
6
votes
1answer
7k views
urllib2.urlopen() vs urllib.urlopen() - urllib2 throws 404 while urllib works! WHY?
import urllib
print urllib.urlopen('http://www.reefgeek.com/equipment/Controllers_&_Monitors/Neptune_Systems_AquaController/Apex_Controller_&_Accessories/').read()
The above script works ...
31
votes
7answers
15k views
Google App Engine and 404 error
I've setup a static website on GAE using hints found elsewhere, but can't figure out how to return a 404 error. My app.yaml file looks like
- url: (.*)/
static_files: static\1/index.html
upload: ...

