Reputation: 11
I have several .cfm pages that make up my ColdFusion website.
In one of the .cfm page there is a variable/function used. This variable/function is named "RECREATE". I have checked that the current .cfm page does not have "RECREATE" defined. So, my question is how do I identify which cfm page is "RECREATE" defined??
Upvotes: 1
Views: 115
Reputation: 29870
Do a search in your source code for "recreate". Or if you have only "several" .cfm pages in the site... just look at them!
Your code, btw, should be engineered coherently enough that you can infer the location of code by what the code does, and how it is called. Sounds like you could do with some replanning / reorganisation?
Upvotes: 2