Jump to content

sgjava

Members
  • Posts

    26
  • Joined

  • Last visited

Posts posted by sgjava

  1. I was unble to start a Ruby On Rails App named "sgj". When I'm clicking on the "Run" icon to start my app, I'm getting the message:

    The following ruby on rails app were start: sgj

    but when I'm getting back to the previous page after starting the app, I'm seeing the app status is "Not Running" as was before starting the app. I've tried to reload the page as mentioned on the heliohost wiki but, this time also I'm seeing that, the app status was not changed. So I want to know that, how to change my app status?

  2. I've created a DJango Project named "djangotest" and 2 DJango Apps named "admin_tools" and "test" (following HelioHost instructions). My "test" app is working but "admin_tools" app is showing the following error:

    Page not found (404)

    Request Method:

    GET

    Request URL: http://sgjava.tk/djangotest/dispatch.wsgi/

    Using the URLconf defined in urls, Django tried these URL patterns, in this order:

    1. ^admin_tools/

    The current URL, djangotest/dispatch.wsgi/, didn't match any of these. You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.

    The URL of the App: http://www.sgjava.tk/djangotest/

    Directories

    I've the following directories:

    + djangotest (projects dir)

    - admin_tools (app dir)

    - test (app dir)

    - __init__.py

    - dispatch.wsgi

    - settings.py

    - urls.py

    - .htaccess

    Contents of urls.py

    from django.conf.urls.defaults import *
    
    urlpatterns = patterns('',
    (r'^admin_tools/', include('admin_tools.urls')),
    )
    

    Please help me to solve the problem

  3. I've created a DJango Project named "djangotest" and 2 DJango Apps named "admin_tools" and "test" (following HelioHost instructions). My "test" app is working but "admin_tools" app is showing the following error:

    Page not found (404)

    Request Method:

    GET

    Request URL: http://sgjava.tk/djangotest/dispatch.wsgi/

    Using the URLconf defined in urls, Django tried these URL patterns, in this order:

    1. ^admin_tools/

    The current URL, djangotest/dispatch.wsgi/, didn't match any of these. You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.

    The URL of the DJango app: http://www.sgjava.tk/djangotest/

    Directories

    I've the following directories:

    + djangotest (projects dir)

    - admin_tools (app dir)

    - test (app dir)

    - __init__.py

    - dispatch.wsgi

    - settings.py

    - urls.py

    - .htaccess

    Contents of urls.py

    from django.conf.urls.defaults import *
    
    urlpatterns = patterns('',
    (r'^admin_tools/', include('admin_tools.urls')),
    )
    

    Please help me to solve the problem

  4. I've created a DJango Project named "djangotest" and 2 DJango Apps named "admin_tools" and "test" (following HelioHost instructions). My "test" app is working but "admin_tools" app is showing the following error:

    Page not found (404)

    Request Method:

    GET

    Request URL: http://sgjava.tk/djangotest/dispatch.wsgi/

    Using the URLconf defined in urls, Django tried these URL patterns, in this order:

    1. ^admin_tools/

    The current URL, djangotest/dispatch.wsgi/, didn't match any of these. You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.

    The URL of the DJango app: http://www.sgjava.tk/djangotest/

    Directories

    I've the following directories:

    + djangotest (projects dir)

    - admin_tools (app dir)

    - test (app dir)

    - __init__.py

    - dispatch.wsgi

    - settings.py

    - urls.py

    - .htaccess

    Contents of urls.py

    from django.conf.urls.defaults import *
    
    urlpatterns = patterns('',
    (r'^admin_tools/', include('admin_tools.urls')),
    )
    

    Please help me to solve the problem

  5. I've created a DJango Project named "djangotest" and 2 DJango Apps named "admin_tools" and "test" (following HelioHost instructions). My "test" app is working but "admin_tools" app is showing the following error:

    Page not found (404)

    Request Method:

    GET

    Request URL: http://sgjava.tk/djangotest/dispatch.wsgi/

    Using the URLconf defined in urls, Django tried these URL patterns, in this order:

    1. ^admin_tools/

    The current URL, djangotest/dispatch.wsgi/, didn't match any of these. You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.

    Directories

    I've the following directories:

    + djangotest (projects dir)

    - admin_tools (app dir)

    - test (app dir)

    - __init__.py

    - dispatch.wsgi

    - settings.py

    - urls.py

    - .htaccess

    Contents of urls.py

    from django.conf.urls.defaults import *
    
    urlpatterns = patterns('',
    (r'^admin_tools/', include('admin_tools.urls')),
    )
    

    Please help me to solve the problem

  6. I've created a DJango Project named "djangotest" and 2 DJango Apps named "admin_tools" and "test" (following HelioHost instructions). My "test" app is working but "admin_tools" app is showing the following error:

    Page not found (404)

    Request Method:

    GET

    Request URL: http://sgjava.tk/djangotest/dispatch.wsgi/

    Using the URLconf defined in urls, Django tried these URL patterns, in this order:

    1. ^admin_tools/

    The current URL, djangotest/dispatch.wsgi/, didn't match any of these. You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.

    The URL of the App: http://www.sgjava.tk/djangotest/

    Directories

    I've the following directories:

    + djangotest (projects dir)

    - admin_tools (app dir)

    - test (app dir)

    - __init__.py

    - dispatch.wsgi

    - settings.py

    - urls.py

    - .htaccess

    Contents of urls.py

    from django.conf.urls.defaults import *
    
    urlpatterns = patterns('',
    (r'^admin_tools/', include('admin_tools.urls')),
    )
    

    Please help me to solve the problem

  7. I've created a DJango Project named "djangotest" and 2 DJango Apps named "admin_tools" and "test" (following HelioHost instructions). My "test" app is working but "admin_tools" app is showing the following error:

    Page not found (404)

    Request Method:

    GET

    Request URL: http://sgjava.tk/djangotest/dispatch.wsgi/

    Using the URLconf defined in urls, Django tried these URL patterns, in this order:

    1. ^admin_tools/

    The current URL, djangotest/dispatch.wsgi/, didn't match any of these. You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.

    Directories

    I've the following directories:

    + djangotest (projects dir)

    - admin_tools (app dir)

    - test (app dir)

    - __init__.py

    - dispatch.wsgi

    - settings.py

    - urls.py

    - .htaccess

    Contents of urls.py

    from django.conf.urls.defaults import *
    
    urlpatterns = patterns('',
    (r'^admin_tools/', include('admin_tools.urls')),
    )
    

    Please help me to solve the problem

  8. Hi, I'm trying to install a database softwere but when visiting Softaculous, I'm getting the following error:

    License Inactive.

    Your license is not active or it has expired. If your license has expired, please renew it to continue using this Software.

    So, I'm requesting to Heliohost stuff to review and fix the problem.

  9. Sir, I know stevie's MySQL InnoDB engine was broken so I'm using johnny instead of stevie server because I need InnoDB engine. But today when I've executed a sql query structure with InnoDB engine I've got the same problem of stevie. So I want to know that, is Johnny's InnoDB engine was broken or not? If your answer is yes, then I need some help to do some changes on my script, which was created by me and my script has 10 InnoDB tables for now.

  10. I'm unable to install Drupal v7.34/6.34. When I'm trying to install, I'm getting the following error:

    The following errors were found : Could not make the query numbered : 6

    MySQL Error No : 2013

    MySQL Error : Lost connection to MySQL server during query

    I've two questions:

    1) Why I'm getting the error message?

    2) Can I install Drupal/Joomla?

  11. And one more thing sir, I'm getting the following error:

    Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/sgs/includes/code_highlighter.php:18) in /home/sgs/public_html/global/layouts/sgs2014.php on line 2
    Warning: session_start() [function.session-

    start]: Cannot send session cache limiter - headers already sent (output started at /home/sgs/includes/code_highlighter.php:18) in /home/sgs/public_html/global/layouts/sgs2014.php on line 2

    What does it means?

×
×
  • Create New...