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

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

2010-11-03 Thread Robbington
Well my friend, I have quickly looked into hosting a django project via blue host and this is what the django site has to say: Similar setup as Dreamhost. Django is listed as unsupported, but with some pain it does work, and has a good price..

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/

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

2010-11-03 Thread Robbington
Personally I dont bother creating symlinks to my admin media, I just copy the media folder over to my project directory. Anyway: If you think that your settings.py is right: MEDIA_ROOT = '/var/www/django/project/media/' MEDIA_URL = 'media/' ADMIN_MEDIA_PREFIX = '/media/' or its a permissions

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

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

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

2010-10-26 Thread Giancarlo Razzolini
So I did the right thing... nice! Giancarlo Razzolini http://lock.razzolini.adm.br Linux User 172199 Red Hat Certified Engineer no:804006389722501 Verify:https://www.redhat.com/certification/rhce/current/ Moleque Sem Conteudo Numero #002 OpenBSD 4.5 Ubuntu 9.04 Jaunty Jackalope 4386 2A6F FFD4

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

2010-10-26 Thread Daniel Roseman
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 > the admin site that is instaled with django. Something like this: > > admin ->

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

2010-10-26 Thread Giancarlo Razzolini
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 the admin site that is instaled with django. Something like this: admin -> /usr/share/pyshared/django/contrib/admin/media/ Of course, this would only work

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

2010-10-26 Thread rebus_
On 26 October 2010 06:48, marcoarreguin wrote: > 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

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