
November 10th, 2003, 08:59 PM
|
|
Junior Member
|
|
Join Date: Sep 2003
Posts: 7
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Custom Tag Problems
I have recently moved my web site from a CF5 server to a CFMX server (shared hosting). The site was working fine on CF5. Now when my web page calls a Custom Tag I receive the following error:
Cannot find CFML template for custom tag cartweaver. ColdFusion attempted looking in the tree of installed custom tags but did not find a custom tag with this name.
The error occurred on line 22.
I have my custom tags in the same subdirectory as when the site was on the CF5 server. Also, I have tried moving the custom tag to the same directory as the calling page and still I receive the same error.
I am using "cf_customtag" notation and I've tried all the various other alternatives (e.g., CFMODULE TEMPLATE). I've specified the exact path/location of the custom tag and still an error. The error changes somewhat, but it's the same basic error.
Does anyone know what might be causing this? I've tried everything I know to remedy this to no end. I'm starting to believe that the problem is not my code, but some other issue with the cf server and its setup. If so, what do I tell my hosting provider? They believe the issue is with my coding.
Any assistance is appreciated.
Here is the code that throws the error:
<cfif IsDefined ("FORM.SKU") >
<cf_cartweaver action="add"
sku="#FORM.SKU#"
quantity="#FORM.quantity#"
itemid="#FORM.ItemID#"
name="#FORM.Name#"
unitprice="#FORM.UnitPrice#"
descrip="#FORM.Descrip#"
>
</cfif>
|