500 internal server error

Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default 500 Internal Server Error

    Hi all,

    Just wondering if you could possibly check this site for me - [url]www.gtfasteners.co.uk[/url] . I am getting a 500
    Internal Server Error message every time I try to log in, however I have set all file permissions related to
    the login as read,write and execute.

    Username = user
    Password = fasteners2003

    I don't know all that much about ASP yet as I am learning, but I have managed to get the site working fine on
    my localhost using IIS. But when the site is uploaded to the remote server, 1&1 Microsoft package, I get the
    errors.

    Any help is much appreciated.

    --
    Regards,
    Chris.

    [url]http://www.chrisf.has.it[/url]
    [url]http://www.lascoronas10.has.it[/url]
    [url]http://www.boro.rules.it[/url]



    [Chris F] Guest

  2. Similar Questions and Discussions

    1. Internal Server Error
      I have just brought up a web site using an MDB file on a Win 2003 system and I am getting the message: HTTP 500 - Internal server error Internet...
    2. HTTP 500 - Internal Server Error
      Hi. I'm getting an Internal Server Error on the following page All other pages on the site are working fine any and all help will be...
    3. (500) Internal Server Error in a ASP.NET WebService
      Gerardo Palazuelo via .NET 247 <anonymous@dotnet247.com> wrote in news:OJkHIsUWFHA.2448@TK2MSFTNGP12.phx.gbl: Turn off friendly messages and try...
    4. Internal Server Error (500)
      I just installed Visual Studio 2003 and tried to create a Web Service project. I received HTTP/1.0 500 Internal Server Error. I confirmed that...
    5. Internal Server Error 500
      I keep getting IIS 500 internal error from the SOAP post rather than the details of the error. I have an XMl doc as <?xml version="1.0"...
  3. #2

    Default 500 Internal Server Error

    Hi all,

    Just wondering if you could possibly check this site for me - [url]www.gtfasteners.co.uk[/url] . I am getting a 500
    Internal Server Error message every time I try to log in, however I have set all file permissions related to
    the login as read,write and execute.

    Username = user
    Password = fasteners2003

    I don't know all that much about ASP yet as I am learning, but I have managed to get the site working fine on
    my localhost using IIS. But when the site is uploaded to the remote server, 1&1 Microsoft package, I get the
    errors.

    Any help is much appreciated.

    --
    Regards,
    Chris.

    [url]http://www.chrisf.has.it[/url]
    [url]http://www.lascoronas10.has.it[/url]
    [url]http://www.boro.rules.it[/url]
    [url]http://www.chrisfuni.has.it[/url]


    [Chris F] Guest

  4. #3

    Default Re: 500 Internal Server Error

    Julian,

    Thanks for your reply, will take a look and try to sort it.
    --
    Regards,
    Chris.

    [url]http://www.chrisf.has.it[/url]
    [url]http://www.lascoronas10.has.it[/url]
    [url]http://www.boro.rules.it[/url]



    [Chris F] Guest

  5. #4

    Default Re: 500 Internal Server Error

    You probably have invalid connection string to your database or you did not
    declare a system dsn on server, so the machine can not find your database.


    Pappas Mike Guest

  6. #5

    Default Re: 500 Internal Server Error

    John Toop wrote:
    >
    > MM_GTFasteners_STRING = "Driver={Microsoft Access Driver
    > (*.mdb)};DBQ=gtfasteners.mdb"
    >
    >
    Aargh - don't use ODBC - you're creating an extra software layer. Use the
    native Jet OLEDB provider instead! [url]www.connectionstrings.com[/url]

    Bob Barrows


    Bob Barrows Guest

  7. #6

    Default Re: 500 Internal Server Error

    Thanks for all replies,

    I have taken the advice you have given me and I am going to try to figure out how to get it set up and
    running.
    It is a bit hard when your a novice at ASP.
    A question - John, you suggested that my database shouldn't be in the root folder of the site - where abouts
    should I place it, in a folder of its own?

    --
    Regards,
    Chris.

    [url]http://www.chrisf.has.it[/url]
    [url]http://www.lascoronas10.has.it[/url]
    [url]http://www.boro.rules.it[/url]



    [Chris F] Guest

  8. #7

    Default Re: 500 Internal Server Error

    Hi Chris,

    If it's your server put the file somewhere completely out of the tree like
    C:\InetPub or really anywhere you like. If it's an ISP, then FrontPage
    suggests a fpdb directory under the root directory you are using now.
    FrontPage will install files to prevent the file from being loaded
    directly - I'm guessing that you are not using it though. Not many people
    use it these days.

    Try a "for i=1 to 1000" on the creation of the connection object and see if
    it's faster using the OLEDB than using ODBC connection strings.

    JT

    "[Chris F]" <c.fegan@ntlworldANTISPAM.com> wrote in message
    news:uD9McB6TDHA.2460@TK2MSFTNGP10.phx.gbl...
    > Thanks for all replies,
    <snip>
    > A question - John, you suggested that my database shouldn't be in the root
    folder of the site - where abouts
    > should I place it, in a folder of its own?
    >

    John Toop Guest

  9. #8

    Default 500 internal server error

    I just recently began to use coldfusion and I have some basic problems for your
    programming skills. I was trying to use databases but everytime I use a search
    with a simple textbox with the criteria to look for on the db (and substitute
    the value on the where of the select) I get the 500 internal server error.

    Also I made this simple code... it seems to be right:
    test1.cfm
    <form action="test2.cfm" method="post">
    <p>
    <input name="cb1" type="checkbox" value="1" checked>
    </p>
    <p>
    <input type="checkbox" name="cb2" value="2">
    </p>
    <p>
    <input name="Submit" type="submit" value="Aceptar">
    </p>
    </form>

    test2.cfm
    <cfif #form.cb1#>
    Checkbox 1 checked
    <cfelse>
    Checkbox 1 unchecked
    </cfif>
    <cfif #form.cb2#>
    Checkbox 2 checked
    <cfelse>
    Checkbox 2 unchecked
    </cfif>

    But everytime the I leave a checkbox unchecked (any of both), I get the 500
    internal server error. Can anyone help me with this?

    LusanInc Guest

  10. #9

    Default Re: 500 internal server error

    Unfortunately the checkbox only gets passed to the next page if it is
    checked, so you need to change your code on test2 something like this:

    <cfif IsDefined("form.cb1")>
    Checkbox 1 checked
    <cfelse>
    Checkbox 1 unchecked
    </cfif>

    Of course if the checkbox is used more than once on the action page, it
    is better to set cfparam.

    Doug
    doug777 Guest

  11. #10

    Default Re: 500 internal server error

    Doug is correct, either use cfparam or radio buttons.
    kyle969 Guest

  12. #11

    Default Re: 500 internal server error

    thanx a lot ppl!!
    really appreciate it
    LusanInc Guest

  13. #12

    Default 500 Internal Server Error

    I have installed CF 7 on 6 new Win 2003 servers. Each server has the exact
    same problem.

    It appears the first visit to a .cfm page returns the 500 Internal Server
    Error. Refreshing the same page will return the actual page.

    This test page can be substituted with launching the CF Administrator. The
    same thing happens. The first visit is a 500 error, the second gets the
    Administrator login page.

    All 6 servers have the same behavior and all 6 were installed the same way.
    The only change to the default install was placing CFusion in a custom path
    instead of the default C:\CFUSIONMX7. The web root, etc. are all the default
    IIS settings.



    spartacustriumvirate Guest

  14. #13

    Default Re: 500 Internal Server Error

    This is for MX 6.1, but it applies to 7.0 as well.


    [url]http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=950218dc&pss=rss_jr[/url]
    un_950218dc

    I followed the solution and the web servers now server CF properly.

    Solution:

    To fix this issue, grant the Network Service user in the IIS Worker Process
    Group (IIS_WPG) read and write access to the jrun_root\lib\wsconfig directory,
    including the sub-folders and files. Restart the IIS Admin Service and the JRun
    services after making the permissions change.




    spartacustriumvirate Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139