looking for an app to view various github repositories within a django powered site

2013-01-21 Thread garagefan
I'm looking to build a website to collaborate on some open source projects. I'd like to set up discussions based on git repositories, and maybe even allow folks to contribute/fork/submit issues, etc. I could handle this on my own, but its more of a side fun project for myself and I'd rather

get all objects that are related to current, reverse look up

2011-07-11 Thread garagefan
simply put, here's my code class ContentBlock(Orderable, Displayable): location = models.ManyToManyField(ContentBlockLocation, blank=True, null=True, help_text="list of locations to display content block") page = models.ManyToManyField(Page, blank=True, null=True, help_text="list of pages to

Re: Sidebars

2011-06-28 Thread garagefan
This sounds like too much work, every time you want a new option in the sidebar you're adding another if, right? I'm planning on building a template tag to handle side content like that. I am using mezzanine as my base so i have the luxury of having every url resolve to their Page model. So i'm

Re: how to list all model classes within admin that extends another model?

2011-05-15 Thread garagefan
that gets a foreign field relationship to Client On May 15, 8:29 pm, garagefan <monkeygar...@gmail.com> wrote: > yeah, i've changed things around just slightly and included a > tabularinline > > however, now i need to modify the template to display a link to each > of the items pag

Re: how to list all model classes within admin that extends another model?

2011-05-15 Thread garagefan
yeah, i've changed things around just slightly and included a tabularinline however, now i need to modify the template to display a link to each of the items pages, b/c as is it only allows one to update the name of the clientobject, which is now: class ClientObject(models.Model): client =

how to list all model classes within admin that extends another model?

2011-05-15 Thread garagefan
building a client management application for myself in one application model, called client_management, i have class Client(models.Model): active = models.BooleanField(_('active client'), default=False) name = models.CharField(max_length=250) logo = models.ImageField(upload_to="logos")

Re: better options for hosting multiple django based websites?

2011-03-14 Thread garagefan
ay, March 14, 2011 4:27:19 PM UTC-4, garagefan wrote: > > > I've got a server hosting multiple websites. Currently its not a big > > deal to add another virtual host entry to apache2. Now, i'm using a > > bad habit and using an http.conf instead of learning about, and &

better options for hosting multiple django based websites?

2011-03-14 Thread garagefan
I've got a server hosting multiple websites. Currently its not a big deal to add another virtual host entry to apache2. Now, i'm using a bad habit and using an http.conf instead of learning about, and setting up "available sites". I'm using mod_wsgi as well. Now, in consideration of using

new project settings file not found

2011-02-28 Thread garagefan
this is a first for me. i set up a project like i normally do and get things set up... run syncdb for the first time for the project. Havent had this happen before and things seem to be working on other projects just fine. I've even go so far as to comment out the handful of apps. I presume there

Re: thumbnails and rackspace files

2011-01-19 Thread garagefan
easy thumbnails certainly does a decent job of creating thumbnails. I'm not too fond of having a template tag do that though... it basically does what i'm think of doing, but in a different area. it also doesn't send the thumbnail over to cloudfiles, which is really what i'm wanting to do, and

thumbnails and rackspace files

2011-01-19 Thread garagefan
setting up django-storages was simple... using rackspace's python API to send an image to my container... met with some troubles (broken pipe error on code that worked). however... on the save of my gallery application i'm creating thumbnails. this is easy to do with my custom field... normally.

Re: image servers?

2011-01-11 Thread garagefan
gt; > On Jan 10, 2011, at 4:55 PM, garagefan wrote: > > > > > > > > > > > so i bit the hype and got myself a rackspace cloud account. i also got > > a rackspace file account for image serving. i would like to write > > something that overrides where all

Re: image servers?

2011-01-11 Thread garagefan
MEDIA_ROOT = '/mnt/rackspace/' > > and MEDIA_URL > > MEDIA_URL = 'my.rackspace.domain' > > On Jan 10, 6:55 pm, garagefan <monkeygar...@gmail.com> wrote: > > > > > > > > > so i bit the hype and got myself a rackspace cloud account. i also got > >

image servers?

2011-01-10 Thread garagefan
so i bit the hype and got myself a rackspace cloud account. i also got a rackspace file account for image serving. i would like to write something that overrides where all images are saved, regardless of the model that requests the save. what would this be? would i make this a middleware? I

Re: How to get a web development job (i.e. Django/Python) if someone is an amateur programmer?

2010-12-17 Thread garagefan
I was once in your shoes. No real resume experience to show... no sites to display my knowledge. My advice... makes more friends. It's all in who you know. Met some at an intro html course at a community college, ended up being good friends. He was a developer already, but a few years later he

Re: signal locations

2010-12-01 Thread garagefan
1, 3:28 pm, Daniel Roseman <dan...@roseman.org.uk> wrote: > On Dec 1, 5:29 pm, garagefan <monkeygar...@gmail.com> wrote: > > > > > > > > > > > Now, i've read the thread in regards to putting the import in the > > __init__.py > >

signal locations

2010-12-01 Thread garagefan
Now, i've read the thread in regards to putting the import in the __init__.py here is my structure website_project - > signals - - > signals.py (and an __init__.py) - > shared_apps (link to numerous apps shared amongst other projects) - - > gallery application my signals.py looks like this

user defined settings via the admin

2010-11-18 Thread garagefan
having an application specific settings.py is a nice idea, in our world. In the real world websites seem to be managed by non-technical people... and ultimately we're not just building these applications for technologically "gifted" people. Settings should be defined with the admin for certain

Re: multiple views function in a single URL specification

2010-10-19 Thread garagefan
seems like you're over thinking... you want a single url to handle multiple pieces of information? you can assign a single view function to a url. but you can define multiple functions within that view and merely pass them through to the template as part of the response. Or take a look at

Re: drupal and django being friends

2010-07-02 Thread garagefan
and mod_php as stated > here:http://docs.djangoproject.com/en/dev/howto/deployment/modpython/?from... > > > > >reply to message: > >date: 02.07.2010 10:39:26 > >from: "garagefan" <monkeygar...@gmail.com> > >to: "Django users" <dja

UnicodeDecodeError

2010-05-24 Thread garagefan
hey all, was wondering if my following error is a result of copying django-tagging and markdown from my windows XP machine onto my server via FTP and then moving them into the appropriate directory. http://kennethdavid.net/blog/2010/may/24/test-1/ just going through the webmonkey tutorial to

Re: pyfacebook, No module named facebook.djangofb...

2009-08-27 Thread garagefan
doh, forgot that i never installed python-devel, der... everything works now, nothing to see here... no novice server users here >_> On Aug 27, 11:36 am, garagefan <monkeygar...@gmail.com> wrote: > i've taken the project directly from github and attempted to run > python setup.

Re: pyfacebook, No module named facebook.djangofb...

2009-08-27 Thread garagefan
ownloaded from google it may be outdated. > The installation is much more simpler than what the tutorial says, so i > recommend to download fromhttp://github.com/sciyoshi/pyfacebook/tree/master > > HTH, > > Matias. > > > > > > On Wed, Aug 26, 2009 at 9:58 PM, garagefan

pyfacebook, No module named facebook.djangofb...

2009-08-26 Thread garagefan
steps followed here: http://wiki.developers.facebook.com/index.php/PythonPyFacebookTutorial page with error is here: http://kennethdavid.net/fbapp/fbsample/ obviously, python.conf is setup correctly to call the correct settings file. facebook is a link (ln -s) to /pyfacebook/facebook, as per

for the thousandth time... No module named django.core.handlers.modpython

2009-06-29 Thread garagefan
http://kennethdavid.net/admin error page: MOD_PYTHON ERROR ProcessId: 9659 Interpreter:'kennethdavid.net' ServerName: 'kennethdavid.net' DocumentRoot: '/home/kdwadmin' URI:'/admin' Location: '/' Directory: None Filename: '/home/kdwadmin/admin'

Re: "SuspiciousOperation" Error While Deleting an Uploaded File

2009-02-20 Thread garagefan
Apache permissions must be set on the directory. I was having the same issue before I set the directory group to be Apache and gave it RWX privileges On Feb 20, 2:21 pm, Ty wrote: > When I login to the administration and try to delete a file I get a >

Re: Problem outputting date in template as timestamp

2009-02-20 Thread garagefan
server date incorrect? I asked a similar question a while ago... turns out the server i'm using from godaddy was set for Arizona and was an additional 20 some minutes off... On Feb 20, 11:49 am, Sean Brant wrote: > I am trying to render a timestamp in my template with

Re: Dhango help

2009-02-18 Thread garagefan
i'm just kinda wondering how you're going to be showing a demo of django when you don't know anything about it, nor how to set it up. On Feb 18, 10:19 am, "s.sudharsan siva" wrote: > Hii am new to Django we are planning to show a demo on Django on FOss > conf09.. can

Re: Django and php can they mix?

2009-02-17 Thread garagefan
The easiest solution i can consider is having php request a url from the django project that would return a dynamically created xml file that you could then parse via php, set variables from, display, etc. You could theoretically run the site in django, and the admin and all that goodness, but

Re: Optional m2m relationships in Admin

2009-02-04 Thread garagefan
check out django-tagging. It looks like they're using a custom Manager that is handling the creation of new tags based off of an object that is using "tags" listing new tags. On Feb 4, 3:04 pm, GeneralMean wrote: > >On 4 Lut, 20:52, koenb

Re: Optional m2m relationships in Admin

2009-02-04 Thread garagefan
g >             tag = Tags.objects.get(pk=1) >             #associate tag with newly created object >             obj.tag.add(tag) > > admin.site.register(Game) > admin.site.register(Tag) > > On 4 Lut, 19:15, garagefan <monkeygar...@gmail.com> wrote: > > > Not totally sure thi

Re: Optional m2m relationships in Admin

2009-02-04 Thread garagefan
Not totally sure this will help with your error, as i haven't come across it yet. But for fields that may be empty I also have a blank = True and null = True. This is to tell the DB that it is acceptable to have no value in the field. ie, i'm using the following to choose add users to a private

Re: how to check manytomany field in filter?

2009-02-02 Thread garagefan
well... that worked... to be 100% honest... i didn't expect it to. Guess i'm still underestimating the framework thanks :) On Feb 2, 9:28 pm, Martin Conte Mac Donell <refl...@gmail.com> wrote: > On Tue, Feb 3, 2009 at 12:21 AM, garagefan <monkeygar...@gmail.com> wrote: >

how to check manytomany field in filter?

2009-02-02 Thread garagefan
Trying to test a manytomany field in a model that will be user names. Building that is simple enough in the model, and so is selecting the users in the admin. the problem is filtering a query to test the current logged in user with the manytomany field to ensure they are listed. ie:

Re: views, templates, render and groups

2009-01-29 Thread garagefan
a simple logic issue... but i can't seem to figure out what i'd need to do On Jan 19, 1:50 pm, garagefan <monkeygar...@gmail.com> wrote: > pretty vague title i know... > > Can I return a query set via  foo.object.filter() where in filter i > check a manytomany field in foo against

views, templates, render and groups

2009-01-19 Thread garagefan
pretty vague title i know... Can I return a query set via foo.object.filter() where in filter i check a manytomany field in foo against the group field for a user? I guess a way to use a group as a permission? IE: An article that would normally appear with a ton of other articles, in a

Re: Standard way to treat temporary data which must be validated manually (by an admin)

2009-01-15 Thread garagefan
why not have two TextFields for the app, one for the approved content, and one for the edited and unapproved content? Write a function that overwrites the content in the approved TextField with the item in the unapproved TextField and delete the unapproved TextField and tie that function to a

'datetime.datetime' object is unsubscriptable

2009-01-13 Thread garagefan
I'm attempting to install diamanda forum, and so far things are looking promising. however, i am receiving the above error, in the subject, at line 140 of dimandas.pages.feedupdate specifically, the line is: 'date': date[:10] located within a Context. This occurs on save of a new topic. w/o

Re: SuspiciousOperation error saving uploaded files under apache

2009-01-12 Thread garagefan
I ran across this issue. You need make the "group", for the folder you will be saving images into, Apache. And give groups RWX permissions for that folder On Jan 12, 3:43 am, raik wrote: > Hi there, > > I am using a FileField to store user-uploaded files on the server.

Re: Change name of imagefield files before they are saved

2009-01-05 Thread garagefan
I may be able to offer some assistance here :) i used the follow bit to create a thumbnail image and changed the name of the file to include _tn. def save(self): super(ImageUpload, self).save() if self.image: tsize = 150,150 path = settings.MEDIA_ROOT +

Re: Sort by foreignkey values

2009-01-04 Thread garagefan
http://docs.djangoproject.com/en/dev/topics/db/queries/#topics-db-queries i would use .filter and .order_by On Jan 4, 8:30 pm, Patrick wrote: > Ok, I will rephrase that with a concrete example: > I have those to models: > > class Modelo(models.Model): >     nome =

Re: python.conf question, multiple sites on same server?

2009-01-04 Thread garagefan
as there is no django apps in the directory it is looking for them in. Graham, thanks for all your help. On Jan 4, 6:32 pm, garagefan <monkeygar...@gmail.com> wrote: > will do, going through now... i did find this: > > # UseCanonicalName: Determines how Apache constructs self-refer

Re: python.conf question, multiple sites on same server?

2009-01-04 Thread garagefan
ling mod_python inside of VirtualHost. Duplicate > NameVirtualHost directives is only thing I can think of that could be > an issue. > > BTW, do you have an images directory in the carclubhub DocumentRoot. > Ie., should it be found by the browser? > > Graham > > On Jan

Re: python.conf question, multiple sites on same server?

2009-01-04 Thread garagefan
no changes is there possibly something else that needs to be set up for the VirtualHost to work? On Jan 4, 5:44 pm, Graham Dumpleton <graham.dumple...@gmail.com> wrote: > On Jan 5, 8:54 am, garagefan <monkeygar...@gmail.com> wrote: > > > > > Starting httpd: Syntax error

Re: python.conf question, multiple sites on same server?

2009-01-04 Thread garagefan
r site is showing anything, then all I can guess is that the > configuration isn't even being used in the first place. > > Graham > > garagefan wrote: > > i do appreciate all your assistance and am growing to understand the > > server side a bit more. you're right about the documentation being... &

Re: python.conf question, multiple sites on same server?

2009-01-04 Thread garagefan
wrote: > On Jan 4, 3:11 pm, garagefan <monkeygar...@gmail.com> wrote: > > > > > this is rather aggravating as i'm unsure what exactly I need to give > > you to help me :/ this isn't your fault at all, as i'm an > > unexperienced with working with servers, mod_python,

Re: python.conf question, multiple sites on same server?

2009-01-03 Thread garagefan
ch website? and have :80 for one and :81 for the other and would that allow me to create two VirtualHosts? one for each port? On Jan 3, 10:21 pm, Graham Dumpleton <graham.dumple...@gmail.com> wrote: > On Jan 4, 1:39 pm, garagefan <monkeygar...@gmail.com> wrote: > > > there

Re: python.conf question, multiple sites on same server?

2009-01-03 Thread garagefan
need to be applied? On Jan 3, 9:22 pm, Graham Dumpleton <graham.dumple...@gmail.com> wrote: > On Jan 4, 12:53 pm, garagefan <monkeygar...@gmail.com> wrote: > > > no, as then i would need to use, for example...www.website.net/mysite/* > > instead ofwww.website.net/*f

Re: python.conf question, multiple sites on same server?

2009-01-03 Thread garagefan
how they site with respect to each other and the VirtualHost > in the configuration. > > Graham > > On Jan 4, 12:47 pm, Graham Dumpleton <graham.dumple...@gmail.com> > wrote: > > > On Jan 4, 12:17 pm, garagefan <monkeygar...@gmail.com> wrote: > > >

Re: python.conf question, multiple sites on same server?

2009-01-03 Thread garagefan
. would i change server name to be an ip address? as each website on my server has a unique address, while having the same port? since 80 is the open port for apache On Jan 3, 8:47 pm, Graham Dumpleton <graham.dumple...@gmail.com> wrote: > On Jan 4, 12:17 pm, garagefan <monkeygar.

python.conf question, multiple sites on same server?

2009-01-03 Thread garagefan
I've read the documentation, and it doesn't seem clear enough, or provide a fully working example? i've copied what i have in my python.conf file, keep in mind that i have removed site specific names and have made them generic NameVirtualHost *:80 ServerName www.website.net

Re: one server, multiple sites...

2008-12-30 Thread garagefan
mysite.settings PythonOption django.root /mysite PythonDebug On PythonPath "['/home/site'] + sys.path" SetHandler None SetHandler None On Dec 30, 8:14 pm, garagefan <monkeygar...@gmail.com> wrote: > and i don't want one

one server, multiple sites...

2008-12-30 Thread garagefan
and i don't want one to access another's django installation... and the following doesn't seem to work NameVirtualHost * ServerName www.website.net SetHandler python-program PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE

Re: working with a returned object inside another class

2008-12-29 Thread garagefan
Thanks, that worked perfectly. right now i can lose the data as i'm still learning this all. I will have to look into editing the DB via the shell for future fixes On Dec 29, 11:20 pm, Daniel Roseman <roseman.dan...@googlemail.com> wrote: > On Dec 29, 11:04 pm, garagefan <monkeygar.

Re: working with a returned object inside another class

2008-12-29 Thread garagefan
com> wrote: > On Dec 29, 9:02 pm, garagefan <monkeygar...@gmail.com> wrote: > > > > > below is the code... the first def doesn't return anything... (def > > get_gal_teaser(self)) > > i'm using a custom tag to return the Gallery class to the base > >

working with a returned object inside another class

2008-12-29 Thread garagefan
below is the code... the first def doesn't return anything... (def get_gal_teaser(self)) i'm using a custom tag to return the Gallery class to the base template file, which works... so calling the method get_gal_teaser works as well... and returns an object? when the second e =

custome tags, single model, multiple classes

2008-12-28 Thread garagefan
I've got a gallery model, with a Gallery class, and an ImageUpload class. in my custom tag i'm pulling in the Gallery to display a list of galleries in a side bar. this works fine. But, i want to randomly display an image associated with that gallery, which would be accessed through ImageUpload

Re: displaying correct image url

2008-12-27 Thread garagefan
the ability to edit posts would be nice :) i figured out the issue and am now displaying relative urls to the images. now, to edit the delete function to remove the thumbnails as well... On Dec 27, 1:21 pm, garagefan <monkeygar...@gmail.com> wrote: > currently, self.image.name

displaying correct image url

2008-12-27 Thread garagefan
currently, self.image.name displays the absolute server path... i want to change this so that when i call it, it either display the relative path, or an absolute path for the website itself. so instead of displaying /home/site/mysite/images/gallery/ imagename.jpg it will display

Re: setting the proper file permisions chmod

2008-12-15 Thread garagefan
fantastic that worked amazingly well. thank you On Dec 15, 12:23 pm, Brian Neal <bgn...@gmail.com> wrote: > On Dec 15, 10:53 am, garagefan <monkeygar...@gmail.com> wrote:> how would i > make the group include apache? > > Not sure what you are asking. I look in /e

Re: setting the proper file permisions chmod

2008-12-15 Thread garagefan
how would i make the group include apache? On Dec 15, 11:32 am, Brian Neal <bgn...@gmail.com> wrote: > On Dec 15, 9:51 am, garagefan <monkeygar...@gmail.com> wrote: > > > Just wondering if anyone else has experience with setting the write > > permissions for apa

Re: setting the proper file permisions chmod

2008-12-15 Thread garagefan
Just wondering if anyone else has experience with setting the write permissions for apache using mod_python w/ django. On Dec 11, 6:01 pm, Graham Dumpleton <graham.dumple...@gmail.com> wrote: > On Dec 12, 9:07 am,garagefan<monkeygar...@gmail.com> wrote: > > > whi

generating an image?

2008-12-11 Thread garagefan
Is it possible to generate an image, to save it on my server, of a web page by passing through the url only? say perhaps I want to link to a few sites from mine, and i'd like to include a thumbnail of the site... and instead of taking a screen capture, and uploading it, i pass through the url of

Re: setting the proper file permisions chmod

2008-12-11 Thread garagefan
this little issue. is there really a safety concern? or is there another way around this? On Dec 11, 4:59 pm, Graham Dumpleton <graham.dumple...@gmail.com> wrote: > On Dec 12, 8:52 am, garagefan <monkeygar...@gmail.com> wrote: > > > this is my first time working this closely

Re: setting the proper file permisions chmod

2008-12-11 Thread garagefan
On Dec 12, 8:32 am, garagefan <monkeygar...@gmail.com> wrote: > > > I figured out my issue with the "access denied, suspicious operation" > > bull... > > > apparently the only way the admin side of my site can upload an image > > to a directory is by havin

setting the proper file permisions chmod

2008-12-11 Thread garagefan
I figured out my issue with the "access denied, suspicious operation" bull... apparently the only way the admin side of my site can upload an image to a directory is by having "other" set to have full rwx set... ie chmod **7 I'm not so sure this is a good thing to keep set as that would give

Re: image uploading via admin, and an error...

2008-12-10 Thread garagefan
alright, managed to work my way around and get the jpeg uploading to work... expect i'm still getting that suspicious operation error On Dec 10, 4:49 pm, Brian Neal <[EMAIL PROTECTED]> wrote: > On Dec 10, 2:20 pm, garagefan <[EMAIL PROTECTED]> wrote: > > > getting t

Re: image uploading via admin, and an error...

2008-12-10 Thread garagefan
I attempted this with a png and was greeted with a success... but then python/server denying access to the directory due to "suspicious operation"... so i've got two things to fix... I suppose i need to set up some kind of write access to the server? On Dec 10, 3:20 pm, garagef

image uploading via admin, and an error...

2008-12-10 Thread garagefan
getting this error: "Upload a valid image. The file you uploaded was either not an image or a corrupted image." tried with a gif and with a jpg. I've got PIL installed... it probably has to do with my models.vi. from django.db import models from django.core.files.storage import

Re: issue with django tagging

2008-12-10 Thread garagefan
http://code.google.com/p/django-tagging/issues/detail?id=110 On Dec 10, 9:19 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > thanks > after I imported tagging,the errors is following: > Traceback (most recent call last): >   File "", line 1, in >     import tagging >   File

Re: time it takes django to read database?

2008-12-09 Thread garagefan
haha yeah, i just submitted a ticket to godaddy. They're usually really good with getting back. On Dec 9, 6:31 pm, "Colin Bean" <[EMAIL PROTECTED]> wrote: > On Tue, Dec 9, 2008 at 3:22 PM, garagefan <[EMAIL PROTECTED]> wrote: > > > ok, server time is 2 hours a

Re: time it takes django to read database?

2008-12-09 Thread garagefan
date "time" crap and was told the procedure was not allowed, i assume this is due the server being a virtual server. what would the best way to fix this? the detail.html does not use latest however On Dec 9, 4:40 pm, garagefan <[EMAIL PROTECTED]> wrote: > awesome,

Re: time it takes django to read database?

2008-12-09 Thread garagefan
awesome, i will take a look at the server date. It is possible that it is off. On Dec 9, 3:57 pm, "Colin Bean" <[EMAIL PROTECTED]> wrote: > On Tue, Dec 9, 2008 at 12:16 PM, garagefan <[EMAIL PROTECTED]> wrote: > > > Server is Red Hat 7, set up by godaddy, its

Re: time it takes django to read database?

2008-12-09 Thread garagefan
as the templates in there. The part that is working instantly is the "secondary" section located in the base.html template that the other two blog templates extend thanks for lookin On Dec 9, 2:58 pm, "Colin Bean" <[EMAIL PROTECTED]> wrote: > On Sun, Dec 7, 2008

Re: issue with django tagging

2008-12-09 Thread garagefan
I had the same issue... you need to do two things... copy this into the setup.py from django.conf import settings settings.configure() and make sure you have python-devel installed On Dec 9, 8:24 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > hi > I got it from trunk,and the version is

Re: time it takes django to read database?

2008-12-09 Thread garagefan
sure thing: from django.conf.urls.defaults import * from mysite.blog.models import Entry from tagging.views import tagged_object_list info_dict = { 'queryset': Entry.objects.filter(status=1), 'date_field': 'pub_date', } urlpatterns = patterns('django.views.generic.date_based',

Re: time it takes django to read database?

2008-12-08 Thread garagefan
I've not set anything up... On Dec 8, 1:48 am, "Alex Koshelev" <[EMAIL PROTECTED]> wrote: > Do you use caching? > > On Mon, Dec 8, 2008 at 07:34, garagefan <[EMAIL PROTECTED]> wrote: > > > ok... i've been able to figure out how long it takes based on

Re: time it takes django to read database?

2008-12-07 Thread garagefan
ok... i've been able to figure out how long it takes based on the time stamp... an hour and a half for a new object to have come in. It appears that the item is not readable by the two templates, one of which using {%for object in latest $} and then another template that doesn't use it at all.

time it takes django to read database?

2008-12-07 Thread garagefan
following another tutorial to build a blog (webmonkey.com's) at it was rather frustrating to see nothing show up after creating a new blog... the admin section seems to see these right away, as they are there as soon as you hit save. But it seems to take the one section 10-20(or more?) minutes

Re: ImportError: Could not import settings 'djangoblog.settings' (Is it on sys.path? Does it have syntax errors?): No module named djangoblog.settings

2008-12-05 Thread garagefan
nevermind. I've borked the server messing around again :) On Dec 5, 4:19 pm, garagefan <[EMAIL PROTECTED]> wrote: > http://www.kennethdavid.net/djangoblog/admin/ > getting this error on my admin page. just started working w/ > webmonkey.com's > tutorialhttp://www.webm

ImportError: Could not import settings 'djangoblog.settings' (Is it on sys.path? Does it have syntax errors?): No module named djangoblog.settings

2008-12-05 Thread garagefan
http://www.kennethdavid.net/djangoblog/admin/ getting this error on my admin page. just started working w/ webmonkey.com's tutorial http://www.webmonkey.com/tutorial/Install_Django_and_Build_Your_First_App this is occurring after installing the tagging module... which including me needing to

issues with .96 tutorial

2008-12-03 Thread garagefan
I've recently set up a virtual server w/ godaddy and followed http://www.howtoforge.com/how-to-install-django-on-fedora9-apache2-mod_python to install django. I'm following the tutorial and am up to setting up the admin section and configuring the urls.py for the polls model. this is what is