You need revisit your project urls.py and also verify your project
settings.py.
Does your urls.py somewhat resemble the following:
from django.conf.urls.defaults import *
from django.contrib import admin
from django_apps.blog.models import Post
urlpatterns = patterns('',
(r'^contact/', include('contact_form.urls')),
(r'^blog/', include('django_apps.blog.urls')),
(r'^admin/', include(admin.site.urls)),
)
Also make sure you read the
http://docs.djangoproject.com/en/dev/intro/tutorial02/#intro-tutorial02
Cheers,
_Mario
On Nov 13, 8:07 am, Zeynel <
azeyn...@gmail.com> wrote:
> Yes, finally the support decided to install it. The process was a
> nightmare. I don't know if this is the same with other hosting places.
> The documentation was horrible and just outlining the process for
> people who are experts, not for newbies. And now they installed the
> project in 2 different directories: /home/zeynel/sw1 and /home/webapps/
> django/sw1.
>
> I kept changing the settings.py in /home/sw1 DEBUG = False, and
> resetting the server, and nothing was happening. I found that I needed
> to change the settings.py here: /home/webapps/django/sw1
>
> So that's done and hopefully that removes the debug admin page, I
> think this is what the django documentation advises.
>
> I have a simple database in admin but I realized that to reach the
> admin a username and pw is needed. I haven't figured how to translate
> the functionality I have in admin (database, and search) to a public
> webpage. If you can help I'd appreciate it.
>
> On Nov 13, 3:43 am, Francois Verbeek <
franc...@verbeek.name> wrote:
>
> >
http://www.swimswith.com/wkw1/returnssomething (SwimsWith: A Legal Who-Knows-Who)... from the admin debug page, this is the only url defined in your urls.py.