I am going to be moving my application off of the Google App Engine cloud.
I liked some of the things that app engine did for www.noobmusic.com, but
it
is clear that I will end up spending an ass load of money trying to host a
resource hog like noobmusic.com. I plan to put it on a dedicated
I apologize to you on behalf of the web2py community. I don't think
anybody meant to bash you, only Internet Explorer. You're 100% right
about large companies using ancient browsers. I work for a very large
fortune 500 company, and we are still using IE7 with no sign of an
upgrade in the works.
I am looking for a web2py/google app engine partner. All good
websites have them. I have completely created noobmusic.com myself. I
am burried in things to do and don't have time to do some of the added
features the site desperately needs. Basically I just want to ask the
community if anybody is
Thanks Anthony.
{{=LOAD('controller_name','function',ajax=True)}}
if so, where would I put it?
I am trying to grab that variable on the page that is being loaded.
Hope this makes sense I am completely worn out.
Chris
BTW, Joseph thank you for the advice of updating my meta author, and
Annet you were right, it is in the model/menu.py file. I could not
figure out why those meta tags were showing up like that. The fix
will be updated tonight.
Thanks for pointing that out, this is probably a stupid question, but
where do I change the metadata author? I put in my own meta tags,
but the defaults that come with the app are showing up instea. I kept
wondering why facebook would say "a cool new app" when trying to
include it in a comment.
I just checked it out again, the forum looks great!
Your footer should follow the same layout as the nav bar, meaning 100%
width across the screen.
I cant really see the forum without signing up first.
Your copyright symbol is not showing up.
It looks okay, but I will let some more technical members give their
comments.
Okay, turns out I am not able to click on the anchor for this post or
another post I just put up myself. Google is giving me a 404 error
page. The problem appears to be on my end.
Sorry,
Apparently none of the links to leave Google groups are working.
Your link is not working :(
It seems that you are not querying right,
last = db().select(db.distributors.ALL)
it seems it should be,
## this is how I usually grab the entire table ##
last = db(db.distributors.id>0).select()
then display your object in the view like this,
{{for i in last:}}
{{=i.upline_id}}
Some of the sites on the "gallery of sites" look good, but are not
being actively updated it seems. Ourway looks good, but what does it
do, and why does it seem like it is not finished?
Web2py is the best framework out there, but it seems that some of our
pages are not representing it well enough
Thanks for the reply. Sorry about the duplicate post and incorrect
spelling, I was not trying to spam or bump the post, i was using a
stupid smartphone and it kept stating the post was not going
through. So far I have experienced no slowdowns with a controller
file over 7 mb. I am using the Goo
What is the largest advisable size for a controller file using Google
apparently engine?
What is the largest advisable size for a controller file using Google
apparently engine?
What is the largest advisable size for a controller file using Google
apparently engine?
What is the largest advisable size for a controller file using Google
apparently engine?
I have my db.py file setup this way
## configure email
mail=Mail()
mail.settings.server="gae"
mail.settings.sender="myaddress.com"
mail.settings.login="username:password"
I have been trying this for hours, I get no errors, when i call
functions to send emails they return true
I recently registered updated my custom domain to display in the url
instead of the my google.appspot domain. However the appspot.domain
still shows up on google searches, and i want them to show the custom
url.
it is probably best just to check the site.
if you type the url:
www.noobmusic.com
Massimo,
This seems to be a GAE file size issue. i checked the error log and
even though the file is under 1 mb it was saying that it was too
large. Maybe the dimensions of the photo were too large as opposed to
the actual disk space of the file? Either way it is not a problem with
Web2py, just
et a "unrecoverable error message" after
submission. I checked the db admin for GAE and it shows that all info
was received including the blob. When i try form submission leaving
the upload field blank it works fine. At first i thought that the
image files were too big, but they are all under a 1mb.
chawk
. Does anybody have a suggestion on how I could
go about having a user upload a profile image through auth_user
without causing problems with app engine db?
chawk
ld a game changing application that puts Web2py
at the top of the list for web frameworks. alright.. back to work
now.
chawk
Thanks Anthony!
I must have skimmed over this part of the book. I got it now.
chawk
"" > Note, the 'requires' argument to Field sets validators for form
submissions
> -- it does not affect regular insert() or update() methods on the table.
> The validate_and_ins
at is happening is that my controller inputs
the form.vars.name even if it is already in the database. I know
that i can use the SQLFORM, but i am practicing the lower level form
stuff to get a better understanding of forms and databases.
Thanks in advance for any help,
Chawk
p.s. Should
Thanks Anthony!
that was the problem, i was not aware that python 2.5 comes with the
standard web2py version.
i downloaded the source and the problem is solved.
I don't understand, i am using windows 7, python 2.7, python is added
to my enviroment variables, I even downloaded another copy of web2py,
extracted it to the c directory, i cd into web2py directory, i ran the
exact thing shown and i get the error:
python: cant open file 'web2py.py' : [Errno 2
I must be missing something, i have always run web2py by downloading
and extracting to a directory. i then double click the web2py.exe and
it starts the server, but i cannot ever get the shell to work, so that
i can practice with the DAL. is there more to installing it then
this?
I have tried to start the shell through windows dos prompt by typing:
python web2py.py -s test -m
and i get this: python cant open file web2py.py no such file or
directory
not sure why i cannot get this working.
Oh, thank you.There is a typo in the book, but that was retarded
of me for not trying settings though. :)
((book))
There a number of ways to customize auth. The simplest way is to add
extra fields:
# after auth = Auth(db)
auth.setting.extra_fields['auth_user']= [
Field('address'),
Field('city'),
Field('zip'),
Field('phone')]
# before auth.define_tables(username=True)
((my db.py file looks li
db.define_table('discussion',
Field('comment', 'text'))
def comment():
form = SQLFORM(db.discussion, _class='test1')
if form.process().accepted:
redirect(URL('comment_results'))
return dict(form=form)
def comment_results():
items = db(db.discussion.id==db.d
34 matches
Mail list logo