Jump to content

sistyN

Members
  • Posts

    5
  • Joined

  • Last visited

sistyN's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. HI , sometimes I find some unwanted files (like .smiles folder or some php files in cgi-bin folder) in my root directory . every time i remove them they will show up again , what is the problem ? am I hacked ? is it a virus ? it's really annoying !!!
  2. Hi, i made a subdomain and it is activated now . what must i do to use it ? what changes i must do to htaccess file ?
  3. Hi , I want to add a captcha to my form with django-simple-captcha package but it's not in python path , how install it on stevie ? is there be other package for captcha ?
  4. To what you said: dear Krydos I didn't make any mistake (I just typed it wrong here ;p , look images ) , I just removed my .htaccess file (leaved it blank like you said in other thread ) right now it work's , and i even deleted this line environ['PATH_INFO'] = environ['SCRIPT_NAME'] + environ['PATH_INFO'] from my dispatch.wsgi . is it ok to leave .htaccess file blank and delete that line ? ty
  5. Hi , I did all things in tutorial but it doesn't show me welcome Django page , I even downloaded djangotest and uploaded it , but nothing changed . It just give me a 500 Internal Server Error http://exshinigami.heliohost.org/djangotest/dispatch.wsgi my username : sistyn my dispatch.wsgi file (0755 perm.) in /home/sistyn/public_html/djangotest: [/color] import os, sys sys.path.append("/home/sistyn/public_html/djangotest"); ### EDIT LINE ABOVE TO YOUR SITE ### os.environ['DJANGO_SETTINGS_MODULE'] = 'settings' os.environ['PYTHON_EGG_CACHE'] = '/home/sistyn/.python_egg_cache' ### YOU NEED TO CREATE THE DIRECTORY ABOVE ### import django.core.handlers.wsgi _application = django.core.handlers.wsgi.WSGIHandler() def application(environ, start_response): environ['PATH_INFO'] = environ['SCRIPT_NAME'] + environ['PATH_INFO'] return _application(environ, start_response) my .htaccess file (0644 perm.) in /home/sistyn/public_html: RewriteEngine On RewriteBase / RewriteRule ^(media/.*)$ - [L] RewriteRule ^(admin_media/.*)$ - [L] RewriteRule ^(dispatch\.wsgi/.*)$ - [L] RewriteRule ^(.*)$ djangotest/dispatch.wsgi/$1 [QSA,PT,L] and I created .python_egg_cache (0777 perm.) directory in /home/sistyn/public_htmli it's kinda ridiculous , what is the problem ? I'm rookie and getting a bit confused
×
×
  • Create New...