[google-appengine] Some people can't access to my app.

2009-10-06 Thread arbi

Hi,

I could not find any answer in the forum, if there is, tell me plz.
My app : http://www.comeego.com/
Some people can't access to it (around 30% of the people I guess), and
I don't know why. It is run by appengine.

The pb they have : Cannot find http://www.comeego.com; - DNS-error,
server cannot be found.
Is it due to Appengine or not at all ?
That's bad, thx if you can help.

Romain
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] newbie : Template does not exist error

2009-03-13 Thread arbi

Hi,

I took some hours now to find out the solution to my pb. I didn't find
the solution on app engine forum, so I post it.
When running localy : no pb (expect the media css is not loaded, I
don't know why).
But when I want to update it to server, there is a raise
TemplateDoesNotExist, name.  TemplateDoesNotExist: 404.html

Hre is the traceback :

Exception in request:
Traceback (most recent call last):
  File /base/data/home/apps/antrivecov/1.332050104410580633/common/
zip-packages/django.zip/django/core/handlers/base.py, line 113, in
get_response
return callback(request, **param_dict)
  File /base/data/home/apps/antrivecov/1.332050104410580633/common/
zip-packages/django.zip/django/views/defaults.py, line 13, in
page_not_found
t = loader.get_template(template_name) # You need to create a
404.html template.
  File /base/data/home/apps/antrivecov/1.332050104410580633/common/
zip-packages/django.zip/django/template/loader.py, line 80, in
get_template
source, origin = find_template_source(template_name)
  File /base/data/home/apps/antrivecov/1.332050104410580633/common/
zip-packages/django.zip/django/template/loader.py, line 73, in
find_template_source
raise TemplateDoesNotExist, name
TemplateDoesNotExist: 404.html

Why doesn't he find the template ?
My settings are :

TEMPLATE_CONTEXT_PROCESSORS = (
'django.core.context_processors.auth',
'django.core.context_processors.media',
'django.core.context_processors.request',
)

TEMPLATE_DIRS = (
os.path.join(os.path.dirname(__file__), 'templates'),
)

GLOBALTAGS = (
'ragendja.templatetags.ragendjatags',

And the template i want to load is very simple : test_template.html
with p hello! /p content.

Thanks for helping, i want so much to see my app on app engine!

Arbi
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: 'module' object has no attribute 'Charfield'

2009-03-13 Thread arbi

Thanks I got it, I forgot a Charfield instead of StringProperty in
my models... i could not see it for hours.

On 12 mar, 18:35, Jeff S j...@google.com wrote:
 HiArbi,

 It looks like David Webb answered a similar issue in this thread:

 http://groups.google.com/group/google-appengine/browse_thread/thread/...

 Did that resolve it?

 Thank you,

 Jeff

 On Mar 11, 2:33 pm,arbiarbin...@gmail.com wrote:

  Hi,
  I am a beginner, because I think it is a simple issue :

  class 'django.core.exceptions.ViewDoesNotExist': Tried start_page in
  module routes.views. Error was: 'module' object has no attribute
  'CharField'

  In my routes.views I have the start_page def :

  def start_page(request):
          return render_to_response ('routes/index_search_template.html')

  Did I forget to import something? Is it a problem linked to template?
  Thanks a lot

 Arbi
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] problem with import django

2009-03-11 Thread arbi

Hi,
While making google's tutorial (google-app-engine-django), I had
exactly the same problem as mentioned here :
http://groups.google.fr/group/google-appengine/browse_thread/thread/7b2445428b8115c2#.
I create a new post to make my pb visible.

It is an  importing django error. The warning I got is :

[WARNING:root:Blocking access to skipped file /Users/brouard/
mysite/.google_appengine/lib/django/django/foo]
The problem comes from the . in the path : /.google_appengine/ that
causes the no module named Django error.

I have the 1.1.9 version of appengine. The SDK folder
(google_appengine) is already in /usr/local.
But I don't understand what Brett said in the forum :

The fix should be not use the Django helper's little trick of keeping
your SDK in .google_appengine but instead actually install it, or at
least keep it outside of your app directory. That should prevent the
skipped file blocking from interfering with your imports.

How can I fix this pb? (I am kind of newb)
Thx
Arbi

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: problem with import django

2009-03-11 Thread arbi

Thanks for your answer :)
But finally I did it with the django patch instead of django helper.


On 11 mar, 19:05, WallyDD shaneb...@gmail.com wrote:
 What command are you using to call Django in your code?

 On Mar 11, 7:57 am, arbi arbin...@gmail.com wrote:

  Hi,
  While making google's tutorial (google-app-engine-django), I had
  exactly the same problem as mentioned here 
  :http://groups.google.fr/group/google-appengine/browse_thread/thread/7
  I create a new post to make my pb visible.

  It is an  importing django error. The warning I got is :

  [WARNING:root:Blocking access to skipped file /Users/brouard/
  mysite/.google_appengine/lib/django/django/foo]
  The problem comes from the . in the path : /.google_appengine/ that
  causes the no module named Django error.

  I have the 1.1.9 version of appengine. The SDK folder
  (google_appengine) is already in /usr/local.
  But I don't understand what Brett said in the forum :
  
  The fix should be not use the Django helper's little trick of keeping
  your SDK in .google_appengine but instead actually install it, or at
  least keep it outside of your app directory. That should prevent the
  skipped file blocking from interfering with your imports.
  
  How can I fix this pb? (I am kind of newb)
  Thx
  Arbi
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] 'module' object has no attribute 'Charfield'

2009-03-11 Thread arbi

Hi,
I am a beginner, because I think it is a simple issue :

class 'django.core.exceptions.ViewDoesNotExist': Tried start_page in
module routes.views. Error was: 'module' object has no attribute
'CharField'

In my routes.views I have the start_page def :

def start_page(request):
return render_to_response ('routes/index_search_template.html')

Did I forget to import something? Is it a problem linked to template?
Thanks a lot

Arbi
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] geopy (Django module) supported on app engine?

2009-03-09 Thread arbi

Hi,

I would like to know whether geopy's Django module (to geocode
addresses) is supported on app engine. Does anyone know? How to know?

If not supported, is there any solution to bring geopy to the
server?

Thx a lot

Arbi

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---