Admin without template (no colors, no css, just simple html)

2010-10-26 Thread marcoarreguin
I'm starting with Django and I have a bluehost, yesterday I have been installing all the stuff, I found a tutorial about how to install django in bluehost, so I'm using fcgi. My problem is that when I uncomment the necesary things to run my admin, it runs, but it hasn't a layout like the images in

Re: Admin without template (no colors, no css, just simple html)

2010-11-02 Thread marcoarreguin
How can I create that symbolic link? :S __ On Oct 26, 7:07 am, Daniel Roseman wrote: > On Oct 26, 1:25 pm, Giancarlo Razzolini wrote: > > > I had this same problem when hosting it with apache. I solved the > > problem by creating a symbolic link inside my media folder pointing to > > th

Re: Admin without template (no colors, no css, just simple html)

2010-11-02 Thread marcoarreguin
I have made somthing like: ln -s $HOME/.local/lib/python2.6/site-packages/django/contrib/admin/ media $HOME/.public_html/media And this create a folder with three folders more in my public_html (js, css, images) but it still don't working. also I do: ln -s $HOME/.local/lib/python2.6/site-packa

Re: Admin without template (no colors, no css, just simple html)

2010-11-03 Thread marcoarreguin
Thanks Robbington! Hey, Im watching that you mention "your project directory". But I have my django and my project in another patch, actually, out of www directory, but I have the fastcgi file right there, only that file. So, Where is my project directory in my shared hosting myuser/ home/.l

Re: Admin without template (no colors, no css, just simple html)

2010-11-03 Thread marcoarreguin
I made it!!! Robbington I'm So glad with you and I want to share how I made it. I have a bluehost, and after the pain that was to run django finally via FastCGI, I had a new problem: The media of the admin. I try with a symlink but it was kind of complicated for me, and don't understand exactly

more than one querys LIKE in the same field

2010-12-14 Thread marcoarreguin
Hi friends! I mean do something like this: SELECT * FROM table WHERE tags LIKE '%candy%' AND tags LIKE '%milk%' I've tried: table.objects.filter(tags__icontains='candy', tags__icontains='milk') I've tried too: list = ['candy', 'milk'] table.objects.filter(tags__icontains=list And nothing

A browser of tags (very difficult... unless for me)

2010-12-15 Thread marcoarreguin
Hi, I have a big problem, I'm doing a browser, but I'm using a lot of things kind itertools and pyparsing and combinations like nCm to combine tags and make a lot of search. I think the problem is about combining querysets to show one result. I'll show you the algorithm, this is my view, and as y

Developing a search engine

2010-12-15 Thread marcoarreguin
I'm trying to make a search engine with my database, parsing de text that the user write in the textbox to make a list with the cleaned words, in just one table of the DB in the fields: title, descripcion and tags, I have something like this but I don't know how to finish it: from django.http imp

Developing a search engine

2010-12-15 Thread marcoarreguin
I'm trying to make a search engine with my database, parsing de text that the user write in the textbox to make a list with the cleaned words, in just one table of the DB in the fields: title, descripcion and tags, I have something like this but I don't know how to finish it: from django.http imp

Full text search with PostgreSQL and Django

2010-12-17 Thread marcoarreguin
Hi!! I need to implement a search engine with full text search, I'm using postgreSQL and Django, I have searched in google ( http://barryp.org/blog/entries/postgresql-full-text-search-django/ ) but isn't there a more simple way ?? Or just another way? -- You received this message because you ar