Coldfusion MX migration from windows to lunix

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Coldfusion MX migration from windows to lunix

    Hello, Any one did migration of Coldofusion MX from windows to Linux. What are
    the requirements. Is anybody know online tutorials so I can read it. How
    diffcult it is to migrate from windows to linux and what changes i need to
    make. I know little bit about linux and which web server i have to use.
    Thanks, TOM

    xinfg2133 Guest

  2. Similar Questions and Discussions

    1. Coldfusion services stop working when windows 2000hotfix patches are installed on the windows 2000 operatingsystem
      The following windows 2000 hotfix patches were installed on windows 2000 operating system - KB917537 KB917159 KB914388 Coldfusion service...
    2. MS SQL 2000 Data Migration w/ ColdFusion
      We've recently started work on a website where the SQL datasources reside on a drive without much space. We therefore want to migrate the all the...
    3. Windows to Unix migration - custom tag problems
      Greetings: I am in the process of moving our website from a Windows Server 2003 environment over to RedHat ES 4.0. For the most part, the...
    4. Coldfusino MX migration from windows to Linux
      Hello, Any one did migration of Coldofusion MX from windows to Linux. What are the requirements. Is anybody know online tutorials so I can read it....
    5. database migration from Windows DB2 to Linux DB2
      We need to migrate a database (basically all the 300+ tables along with the data) from a Windows UDB instance to a Linux UDB instance. What is the...
  3. #2

    Default Re: Coldfusion MX migration from windows to lunix

    Linux is case-sensitive, therefore:

    1. "Application.cfm" not "application.cfm" and "OnRequestEnd.cfm" not
    "onrequestend.cfm"

    2. Custom tag files must be all lowercase, even though you can call them as
    mixed case: i.e. statelist.cfm can be called as <cf_StateList>

    3. Database and database talbe names are tied to the file system and are
    therefore case-sensitive. database column names are not.

    4. SQL aliases are case-sensitive too:

    SELECT a.someID, a.someLabel
    FROM someTable A

    throws an error since the alias "a" is not defined.

    5. Permissions are law. If you're going to upload files to a folder, that
    folder needs to be owned by the Cold Fusion Server user (usually "nobody").

    I think the only other thing you really have to deal with are links to files
    that don't match the case of the filename on the system.

    HTH

    cf_menace Guest

  4. #3

    Default Re: Coldfusion MX migration from windows to lunix

    Originally posted by: cf_menace
    3. Database and database talbe names are tied to the file system and are
    therefore case-sensitive. database column names are not.

    4. SQL aliases are case-sensitive too:

    SELECT a.someID, a.someLabel
    FROM someTable A

    throws an error since the alias "a" is not defined.

    These 2 depend on the database. Neither of these apply to PostgreSQL.



    Kronin555 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