ColdFusion Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming Languages - MoreColdFusion Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old October 13th, 2005, 03:15 PM
fortunato fortunato is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2005
Posts: 33 fortunato User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 17 h 36 m 52 sec
Reputation Power: 4
Fusebox 4.1 problem fusebox.xml not found

Hello. I have been using fusebox for years, and I am publishing my first fusebox 4.1 application. We have several Fusebox 4.0 applications running happily on our production server.

Problem is when I published this fusebox 4.1 application I get the error: 'missing fusebox.xml' 'the file fusebox.xml could not be found'. (yet the file can be addressed successfully through a url)

We do have an uncommon setup for our server (IIS on a different box then CF), and in the exception log I see the error:

"Error","jrpp-4","10/13/05","15:45:59","sow2_pma299","missing fusebox.xmlThe file 'fusebox.xml' could not be found. The specific sequence of files included or processed is: \\pma-299-1\sow2\index.cfm "

Now (not to bias your input), but I wonder if the file reference to \\pma-299-1\ is causing problems for the new version of fusebox? I see it uses udf_canonicalpath, and udf_relativepath in the fusebox root, and that these are both new (though I have not tried to decipher what they do, or how they work. Perhaps the problem is somewhere in there?

We are running CFMX 6.1 Enterprise on Win2K Advanced server.

Any ideas/input? Please help!

Reply With Quote
  #2  
Old October 13th, 2005, 04:22 PM
kiteless kiteless is offline
Moderator
Dev Shed Expert (3500 - 3999 posts)
 
Join Date: Jun 2002
Location: Raleigh, NC
Posts: 3,648 kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 1 Week 4 Days 12 h 8 m 8 sec
Reputation Power: 53
Can you post your index.cfm file? If you have centralized core files then you need to set the FUSEBOX_APPLICATION_PATH to tell the cores the path to your application's fusebox.xml file.
__________________
Ask if you have a question, but also help answer questions that you have knowledge of! Thanks, Brian.
How to Post a Question in the Forums

Reply With Quote
  #3  
Old October 13th, 2005, 05:45 PM
fortunato fortunato is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2005
Posts: 33 fortunato User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 17 h 36 m 52 sec
Reputation Power: 4
Sure, I am not using centralized core files. the value is blank.
Also, the application does work on my development machine, on which I have IIS and CFMX 6.1 local on Win XP.
--------------
<cfsilent>
<cfapplication
name="sow2_pma299"
sessionmanagement="Yes"
sessiontimeout="#CreateTimeSpan(0,0,60,0)#"
clientmanagement="Yes">
</cfsilent>
<cfset FUSEBOX_APPLICATION_PATH = "">
<cfinclude template="fusebox4.runtime.cfmx.cfm">
-------------------------

Reply With Quote
  #4  
Old October 13th, 2005, 08:16 PM
kiteless kiteless is offline
Moderator
Dev Shed Expert (3500 - 3999 posts)
 
Join Date: Jun 2002
Location: Raleigh, NC
Posts: 3,648 kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 1 Week 4 Days 12 h 8 m 8 sec
Reputation Power: 53
And your fusebox.xml file is in the same directory as this index.cfm file?

Reply With Quote
  #5  
Old October 14th, 2005, 07:19 AM
fortunato fortunato is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2005
Posts: 33 fortunato User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 17 h 36 m 52 sec
Reputation Power: 4
Yes, below is a list of the files in the root directory of the application...

Application.cfm
changelog.txt
circuit.dtd
fusebox.dtd
fusebox.xml.cfm
fusebox4.loader.cfmx.cfm
fusebox4.parser.cfmx.cfm
fusebox4.runtime.cfmx.cfm
fusebox4.transformer.cfmx.cfm
index.cfm
udf_canonicalpath.cfm
udf_relativefilepath.cfm

Reply With Quote
  #6  
Old October 14th, 2005, 12:03 PM
fortunato fortunato is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2005
Posts: 33 fortunato User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 17 h 36 m 52 sec
Reputation Power: 4
Ok, it seems the "fb_canonicalpath" udf was hosing things up for the application by taking webroot which should have been: "\\pma299-1\sow\" , and creating a webroot valued: "\pma-299-1\sow\".

It is working fine now, had to edit the core files unfortunately.
Any input would be appreciated. Im not even sure exactly what that udf is 'supposed' to do? maybe take care of "..\" references?

Reply With Quote
  #7  
Old October 22nd, 2005, 04:54 PM
kiteless kiteless is offline
Moderator
Dev Shed Expert (3500 - 3999 posts)
 
Join Date: Jun 2002
Location: Raleigh, NC
Posts: 3,648 kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level)kiteless User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 1 Week 4 Days 12 h 8 m 8 sec
Reputation Power: 53
It translates relative paths into absolute paths.

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreColdFusion Development > Fusebox 4.1 problem fusebox.xml not found


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway