Ask a Question related to Coldfusion Database Access, Design and Development.
-
bamboostar #1
Newbie Access DB not accessible on production server
As an absolute newbie, I'd REALLY appreciate any solutions to this as I need to
role this site out today for the client.
I am probably missing some fundamental step in linking the db to the app on
the production server. This works fine on my dev server. Please help!
Thanks!!
Here's the beginning of the script I'm using :
<cfparam name="URL.logout" default="0">
<cfparam name="invalid_login" default="0">
<cfset dsource = "ivydanny">
<cfif structKeyExists(form,"username")>
<cfquery name="check_user" datasource="#dsource#">
SELECT UserLogin, Password, Admin
FROM Contacts
WHERE UserLogin = '#FORM.username#' and Password =
'#FORM.password#'
</cfquery>
bamboostar Guest
-
Server cannot access application directory ... The directory does not exist or is not accessible because of security settings
If you are using Windows XP in a Workgroup, rather than a Domain, then by default "Simple Filesharing" is turned on, and you won't see a security... -
Server cannot access application directory... The directory does not exist or is not accessible because of security settings.
Hi, I have this issue with the error below. Let me explain my goal and my server environement: Goal: To have 3 separate web servers reading... -
newbie: access db & server 2003
Hi! I'm a newbie creating my first site with a database and am experiencing the following problem. I have created the site in FrontPage. When... -
deploying from Windows 2003 staging server to remote production server
What do you guys use to deploy from your staging servers to your remote production servers in team environments? Normally I FTP the files myself,... -
newbie - copying from test to production
If the objects are the same, then drop them in your 9i instance and export/import from 8 to 9i. If your database is not too large, then this way... -
Neculai Macarie #2
Re: Newbie Access DB not accessible on production server
> As an absolute newbie, I'd REALLY appreciate any solutions to this as I
need toon> role this site out today for the client.
>
> I am probably missing some fundamental step in linking the db to the appYou need to have a datasource created on the production server that point to> the production server. This works fine on my dev server. Please help!
> Thanks!!
>
> Here's the beginning of the script I'm using :
> <cfparam name="URL.logout" default="0">
> <cfparam name="invalid_login" default="0">
>
> <cfset dsource = "ivydanny">
>
>
> <cfif structKeyExists(form,"username")>
>
> <cfquery name="check_user" datasource="#dsource#">
> SELECT UserLogin, Password, Admin
> FROM Contacts
> WHERE UserLogin = '#FORM.username#' and Password =
> '#FORM.password#'
> </cfquery>
the Access file. You can use the drivers from CF admin or setup the
datasource from the ODBC admin and then link it up with ODBC Socket in CF
admin.
--
<mack />
Neculai Macarie Guest
-



Reply With Quote

