Installing PyBB

2012-11-20 Thread Yogev Metzuyanim
Hi
I intalled PyBB with easy install, after adding it to the INSTALLED_APPS, i 
run syncdb and get the following error:
AtrributeError: 'Settings' object has no attribute 'PYBB_DEFAULT_MARKUP'.
Does anyone know what did I do wrong?
Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/8thfxI89evQJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: django admin site

2012-11-20 Thread Yogev Metzuyanim
What database are you using?

On Tuesday, November 20, 2012 5:49:40 PM UTC+2, Valentin Rozescu wrote:
>
> I am going step by step in the tutorial "Writing your first Django app" (
> https://docs.djangoproject.com/en/dev/intro/tutorial01/) but in the part 
> 2, step creating admin site, I'm blocked because of the fact that I cannot 
> login to the administration site.
>
> I create a superuser with manage.py createsuperuser but I receive 
> continuously the error about wrong username or password.
>
> Please give me some advise in this respect. I want to evaluate Django and 
> I am exited about the features and posible benefits by using it.
>
> I am looking forward for your answer.
> Best regards,
> Valentin
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/AJp0TD0P6BgJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django web app pages not displaying

2012-11-20 Thread Yogev Metzuyanim
Thanks, I needed to add this line: from pybb.settings import * to my 
settings file.
But now I have another problem, as I follow the instruction from the link 
you gave me, I'm trying to run this command: manage.py 
pybb_created_related_objects
and i get the following error: TypeError: get_db_prep_value() got an 
unexpected keyword argument 'connection'
I google it and apparently it happens because the move from django 1.3 to 
1.4, but I don't know what to do to fix it.

On Tuesday, November 20, 2012 8:56:54 PM UTC+2, coded kid wrote:
>
> I just deployed my django website, I tried visiting some pages on the 
> site and it's not displaying. I have three web browsers on my PC, I 
> tried visiting those pages through the other two web browsers but the 
> pages are not displaying. I asked a friend of mine in Poland to check 
> those pages out, he said the pages are displaying. 
>
> Before I deploy, everything is running fine on my local server. But 
> after I deployed some pages are not showing. and django didn't send me 
> any error mail concerning the site. 
>
> How can I go about solving this problem? Would be glad to hear your 
> opinion on this. 
>
> Thanks. 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/au8S5-UlWbwJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Installing PyBB

2012-11-20 Thread Yogev Metzuyanim
Thanks, I needed to add this line: from pybb.settings import * to my 
settings file.
But now I have another problem, as I follow the instruction from the link 
you gave me, I'm trying to run this command: manage.py 
pybb_created_related_objects
and i get the following error: TypeError: get_db_prep_value() got an 
unexpected keyword argument 'connection'
I google it and apparently it happens because the move from django 1.3 to 
1.4, but I don't know what to do to fix it.

On Tuesday, November 20, 2012 9:10:40 PM UTC+2, sacrac wrote:
>
> read de documentation 
> http://packages.python.org/pybb/<http://packages.python.org/pybb/#feature-list>
>   
> or send mail for the author :/
>
> cheers
>
> On Tue, Nov 20, 2012 at 11:15 AM, Yogev Metzuyanim 
> 
> > wrote:
>
>> Hi
>> I intalled PyBB with easy install, after adding it to the INSTALLED_APPS, 
>> i run syncdb and get the following error:
>> AtrributeError: 'Settings' object has no attribute 'PYBB_DEFAULT_MARKUP'.
>> Does anyone know what did I do wrong?
>> Thanks.
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msg/django-users/-/8thfxI89evQJ.
>> To post to this group, send email to django...@googlegroups.com
>> .
>> To unsubscribe from this group, send email to 
>> django-users...@googlegroups.com .
>> For more options, visit this group at 
>> http://groups.google.com/group/django-users?hl=en.
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/vzjn6vaTMmYJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: django admin site

2012-11-21 Thread Yogev Metzuyanim
Try to delete the db file and syncdb again

On Tuesday, November 20, 2012 5:49:40 PM UTC+2, Valentin Rozescu wrote:
>
> I am going step by step in the tutorial "Writing your first Django app" (
> https://docs.djangoproject.com/en/dev/intro/tutorial01/) but in the part 
> 2, step creating admin site, I'm blocked because of the fact that I cannot 
> login to the administration site.
>
> I create a superuser with manage.py createsuperuser but I receive 
> continuously the error about wrong username or password.
>
> Please give me some advise in this respect. I want to evaluate Django and 
> I am exited about the features and posible benefits by using it.
>
> I am looking forward for your answer.
> Best regards,
> Valentin
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/a8UuE2ta3bsJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Installing forum on django 1.4

2012-11-28 Thread Yogev Metzuyanim
Hi,
Did someone here managed to install a working forum on django 1.4, I tried 
all these and I got  all kinds of errors:
PyBB
django-forum
django-forumbr
askbot
snapboard
and more...

Some of them i figured out and then i got another error until I reached a 
dead end in every single one of them.
If anyone had installed one of the above or some other forum on django 1.4 
and it worked, please let me know how you did it.
Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/mHwrRL1bsXEJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.