发自我的 iPhone
在 2013-6-16,21:42,[email protected] 写道: > Today's Topic Summary > Group: http://groups.google.com/group/django-users/topics > > How to create screen capture of website [1 Update] > Django 1.4 tutorial part 1 seems broken at the superuser creation stage. [1 > Update] > A really simple hosting for my Django app? [4 Updates] > Importing the user.id in form. [1 Update] > Newbie with Demo issues [2 Updates] > How to create screen capture of website > codingdaddy <[email protected]> Jun 16 04:04AM -0700 > > Hi, > > I am sorry if this is the wrong place to ask this question. > But basically, I would like to create social bookmarking site in Django. > > That is why I have this question "How do I create a png image of a website > given url". > > Would anyone give me a pointer as to how I can do this? > Thanks for your time in advance. > > codingdaddy > > > Django 1.4 tutorial part 1 seems broken at the superuser creation stage. > Ed <[email protected]> Jun 16 12:06AM -0700 > > Hello Dear Django Group. > > My first day with Django, I just got it installed on my computer, and am > trying to follow along with the first > tutorial: https://docs.djangoproject.com/en/1.4/intro/tutorial01/ > > I have Django's development server up, and I'm able to see the "It worked!" > Django welcome page. Where I ran into the dead end is at the following > section: > > "The > syncdb<https://docs.djangoproject.com/en/1.4/ref/django-admin/#django-admin-syncdb> > command looks at the > INSTALLED_APPS<https://docs.djangoproject.com/en/1.4/ref/settings/#std:setting-INSTALLED_APPS> > setting and creates any necessary database tables according to the > database settings in your settings.py file. You’ll see a message for each > database table it creates, and you’ll get a prompt asking you if you’d like > to create a superuser account for the authentication system. Go ahead and > do that." > > Up to this point, I've followed the tutorial line by line. However, after I > ran the command "python manage.py syncdb", I got the error message below, > and it seems to be an internal error to Django. Has anyone else encountered > this issue, and how did you resolve it? Any feedback or insight is > appreciated. Thank you! > > > $ python manage.py syncdb > > Creating tables ... > Creating table auth_permission > Creating table auth_group_permissions > Creating table auth_group > Creating table auth_user_user_permissions > Creating table auth_user_groups > Creating table auth_user > Creating table django_content_type > Creating table django_session > Creating table django_site > > You just installed Django's auth system, which means you don't have any > superusers defined. > Would you like to create one now? (yes/no): yes > Traceback (most recent call last): > File "manage.py", line 10, in <module> > execute_from_command_line(sys.argv) > File > "/usr/local/lib/python2.7/site-packages/django/core/management/__init__.py", > line 443, in execute_from_command_line > utility.execute() > File > "/usr/local/lib/python2.7/site-packages/django/core/management/__init__.py", > line 382, in execute > self.fetch_command(subcommand).run_from_argv(self.argv) > File > "/usr/local/lib/python2.7/site-packages/django/core/management/base.py", > line 196, in run_from_argv > self.execute(*args, **options.__dict__) > File > "/usr/local/lib/python2.7/site-packages/django/core/management/base.py", > line 232, in execute > output = self.handle(*args, **options) > File > "/usr/local/lib/python2.7/site-packages/django/core/management/base.py", > line 371, in handle > return self.handle_noargs(**options) > File > "/usr/local/lib/python2.7/site-packages/django/core/management/commands/syncdb.py", > > line 110, in handle_noargs > emit_post_sync_signal(created_models, verbosity, interactive, db) > File > "/usr/local/lib/python2.7/site-packages/django/core/management/sql.py", > line 189, in emit_post_sync_signal > interactive=interactive, db=db) > File > "/usr/local/lib/python2.7/site-packages/django/dispatch/dispatcher.py", > line 172, in send > response = receiver(signal=self, sender=sender, **named) > File > "/usr/local/lib/python2.7/site-packages/django/contrib/auth/management/__init__.py", > > line 73, in create_superuser > call_command("createsuperuser", interactive=True, database=db) > File > "/usr/local/lib/python2.7/site-packages/django/core/management/__init__.py", > line 150, in call_command > return klass.execute(*args, **defaults) > File > "/usr/local/lib/python2.7/site-packages/django/core/management/base.py", > line 232, in execute > output = self.handle(*args, **options) > File > "/usr/local/lib/python2.7/site-packages/django/contrib/auth/management/commands/createsuperuser.py", > > line 70, in handle > default_username = get_default_username() > File > "/usr/local/lib/python2.7/site-packages/django/contrib/auth/management/__init__.py", > > line 105, in get_default_username > default_username = get_system_username() > File > "/usr/local/lib/python2.7/site-packages/django/contrib/auth/management/__init__.py", > > line 85, in get_system_username > return getpass.getuser().decode(locale.getdefaultlocale()[1]) > TypeError: decode() argument 1 must be string, not None > $ > > > A really simple hosting for my Django app? > thomaaaas <[email protected]> Jun 15 12:32PM -0700 > > Hi there! > > I just finished my first Django app that's working great locally. I have a > PHP background, and I'm already a big fan of Django :) > Now I'm looking to host my new app online, but where and how? > > My only requirement: I want something *really simple*. > I'm not a sysadmin, and I'm usually pretty bad at playing with the command > line to install/configure stuff. > That's why I'm looking to something extremely simple. Something like "drag > and drop your app folder here, and it's done" would be great. > > Does a really simple Django hosting solution exist? > Thanks for your help! > > > "Jonathan D. Baker" <[email protected]> Jun 15 01:48PM -0600 > > Check out webfaction. They have a ton of documentation, great support and > it's only $10/mo. > > Sent from my iPhone > > > > "Enyert Viñas" <[email protected]> Jun 15 03:28PM -0430 > > On 06/15/2013 03:18 PM, Jonathan D. Baker wrote: > > To post to this group, send email to [email protected]. > > Visit this group at http://groups.google.com/group/django-users. > > For more options, visit https://groups.google.com/groups/opt_out. > > My recommendation is: https://www.openshift.com/ > <https://www.openshift.com/> > > > m1chael <[email protected]> Jun 15 11:30PM -0400 > > amazon aws micro instance is free for 1 year i believe > > > > > Importing the user.id in form. > shashank sandela <[email protected]> Jun 15 10:42AM -0700 > > That worked. Thanks alot. > > > Newbie with Demo issues > Tom Evans <[email protected]> Jun 14 02:42PM +0100 > > > Exception Value: > > > Reverse for 'detail/' with arguments '(2L,)' and keyword arguments '{}' > > not found. > > > What name did you give the url in your urls.py? Was it "detail/" or > was it "detail". > > Cheers > > Tom > > > Sithembewena Lloyd Dube <[email protected]> Jun 14 06:41PM +0200 > > Hi Strat, > > Tom is right - the issue is the name of the view in your template. Reverse > takes the name of your view and builds it's url. In this case, you are > calling the view 'detail/' (with a trailing slash) instead of 'detail'. > > Cheers, > Lloyd > > > > -- > Regards, > Sithu Lloyd Dube > > > You received this message because you are subscribed to the Google Group > django-users. > You can post via email. > To unsubscribe from this group, send an empty message. > For more options, visit this group. > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/django-users. > For more options, visit https://groups.google.com/groups/opt_out. > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. For more options, visit https://groups.google.com/groups/opt_out.

