Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
xinfg2133 #1
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
-
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... -
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... -
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... -
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.... -
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... -
cf_menace #2
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
-
Kronin555 #3
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



Reply With Quote

