Re: Downloading database tables

2011-02-20 Thread Rob Voyle

Irvin and Azadi

Navicat was just what I was looking for.
Thanks
Rob

On 18 Feb 2011 at 16:40, Irvin Gomez wrote:

 
 Navicat has scheduled, automated backups (any frequency).
 
 Works flawlessly.
 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342454
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Multiple applications with a single codebase issues

2011-02-20 Thread Pete Ruckelshaus

OK, I have a single, but major, issue remaining.  I have all of my variable
issues resolved, and I have confirmed that the issue I am seeing is not an
IIS issue (at least I'm pretty darned sure it's not), but rather seems to be
a ColdFusion issue.

I am using a common directory path for each site's root: i.e.
c:\inetpub\wwwroot\app\core\ is set as the root path for site1, site2, and
site3.

Each site than has a unique directory set as the /site mapped directory,
i.e. site1 has C:\inetpub\wwwroot\site1\ mapped as /site, site2
has C:\inetpub\wwwroot\site2\ mapped as /site, etc.

The problem is with the look-and-feel template for each site.  I'm using a
custom tag to set the user interface.  At the top of each page contained in
the core site (the code that is common across all sites), I use cfimport to
link (for lack of a better term) to the custom tag directory:

cfimport taglib=/site/extensions/custom_tags/ prefix=site

I then call the UI template thusly:

site:uitemplate

for the top of the template, and /site:uitemplate for the bottom of
the template.

The problem is that after restarting the server, the first site loaded
(site1, for arguments' sake) displays its template just fine.  However, when
going to site2, those assets controlled by the paths in IIS (i.e. the
site-specific CSS that resides in /site/assets/global.css) are displayed
fine, but those assets that are specifically defined in the template (i.e.
images that are specific to the site and are defined in that site's UI
custom tag) are being displayed in the HTML as the template for site1 even
when trying to access site2.

Needless to say, this has me mystified and confused, and pulling my hair out
just a bit.  I turned off ALL caching in CF Administrator and restarted the
server, and the issue is still happening.

Any idea of what I'm doing wrong, or even just things I should be trying to
resolve this?  I've spent at least a day trying to get this figured out, to
no avail.

Thanks,

Pete


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342455
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Multiple applications with a single codebase issues

2011-02-20 Thread Michael David

In the CF Admin, do you have Cache web server paths checked?  If so, disable
that.


On Sun, Feb 20, 2011 at 11:35 AM, Pete Ruckelshaus
pruckelsh...@gmail.comwrote:


 OK, I have a single, but major, issue remaining.  I have all of my variable
 issues resolved, and I have confirmed that the issue I am seeing is not an
 IIS issue (at least I'm pretty darned sure it's not), but rather seems to
 be
 a ColdFusion issue.

 I am using a common directory path for each site's root: i.e.
 c:\inetpub\wwwroot\app\core\ is set as the root path for site1, site2, and
 site3.

 Each site than has a unique directory set as the /site mapped directory,
 i.e. site1 has C:\inetpub\wwwroot\site1\ mapped as /site, site2
 has C:\inetpub\wwwroot\site2\ mapped as /site, etc.

 The problem is with the look-and-feel template for each site.  I'm using a
 custom tag to set the user interface.  At the top of each page contained in
 the core site (the code that is common across all sites), I use cfimport to
 link (for lack of a better term) to the custom tag directory:

 cfimport taglib=/site/extensions/custom_tags/ prefix=site

 I then call the UI template thusly:

 site:uitemplate

 for the top of the template, and /site:uitemplate for the bottom of
 the template.

 The problem is that after restarting the server, the first site loaded
 (site1, for arguments' sake) displays its template just fine.  However,
 when
 going to site2, those assets controlled by the paths in IIS (i.e. the
 site-specific CSS that resides in /site/assets/global.css) are displayed
 fine, but those assets that are specifically defined in the template (i.e.
 images that are specific to the site and are defined in that site's UI
 custom tag) are being displayed in the HTML as the template for site1 even
 when trying to access site2.

 Needless to say, this has me mystified and confused, and pulling my hair
 out
 just a bit.  I turned off ALL caching in CF Administrator and restarted the
 server, and the issue is still happening.

 Any idea of what I'm doing wrong, or even just things I should be trying to
 resolve this?  I've spent at least a day trying to get this figured out, to
 no avail.

 Thanks,

 Pete


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342456
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Multiple applications with a single codebase issues

2011-02-20 Thread Pete Ruckelshaus

Yes, that was the first thing I disabled in CF Admin.

On Sun, Feb 20, 2011 at 11:57 AM, Michael David li...@michaeldavid.comwrote:


 In the CF Admin, do you have Cache web server paths checked?  If so,
 disable
 that.


 On Sun, Feb 20, 2011 at 11:35 AM, Pete Ruckelshaus
 pruckelsh...@gmail.comwrote:

 
  OK, I have a single, but major, issue remaining.  I have all of my
 variable
  issues resolved, and I have confirmed that the issue I am seeing is not
 an
  IIS issue (at least I'm pretty darned sure it's not), but rather seems to
  be
  a ColdFusion issue.
 
  I am using a common directory path for each site's root: i.e.
  c:\inetpub\wwwroot\app\core\ is set as the root path for site1, site2,
 and
  site3.
 
  Each site than has a unique directory set as the /site mapped directory,
  i.e. site1 has C:\inetpub\wwwroot\site1\ mapped as /site, site2
  has C:\inetpub\wwwroot\site2\ mapped as /site, etc.
 
  The problem is with the look-and-feel template for each site.  I'm using
 a
  custom tag to set the user interface.  At the top of each page contained
 in
  the core site (the code that is common across all sites), I use cfimport
 to
  link (for lack of a better term) to the custom tag directory:
 
  cfimport taglib=/site/extensions/custom_tags/ prefix=site
 
  I then call the UI template thusly:
 
  site:uitemplate
 
  for the top of the template, and /site:uitemplate for the bottom of
  the template.
 
  The problem is that after restarting the server, the first site loaded
  (site1, for arguments' sake) displays its template just fine.  However,
  when
  going to site2, those assets controlled by the paths in IIS (i.e. the
  site-specific CSS that resides in /site/assets/global.css) are displayed
  fine, but those assets that are specifically defined in the template
 (i.e.
  images that are specific to the site and are defined in that site's UI
  custom tag) are being displayed in the HTML as the template for site1
 even
  when trying to access site2.
 
  Needless to say, this has me mystified and confused, and pulling my hair
  out
  just a bit.  I turned off ALL caching in CF Administrator and restarted
 the
  server, and the issue is still happening.
 
  Any idea of what I'm doing wrong, or even just things I should be trying
 to
  resolve this?  I've spent at least a day trying to get this figured out,
 to
  no avail.
 
  Thanks,
 
  Pete
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342457
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Multiple applications with a single codebase issues

2011-02-20 Thread Russ Michaels

from what you have said it sounds like the CFIMPORT is getting the wrong set
of tags, either that or your tags are the right ones but are loading files
from the wrong path,

If you turn on the debugging output it should show you where the files are
being loaded from which will tell you whether it is the cfimport or not. If
it is not the cfimport then you need to look at your UI tags and see why
they are loading files formt he wrong site, where are the paths coming from
?

Russ

On Sun, Feb 20, 2011 at 5:15 PM, Pete Ruckelshaus pruckelsh...@gmail.comwrote:


 Yes, that was the first thing I disabled in CF Admin.

 On Sun, Feb 20, 2011 at 11:57 AM, Michael David li...@michaeldavid.com
 wrote:

 
  In the CF Admin, do you have Cache web server paths checked?  If so,
  disable
  that.
 
 
  On Sun, Feb 20, 2011 at 11:35 AM, Pete Ruckelshaus
  pruckelsh...@gmail.comwrote:
 
  
   OK, I have a single, but major, issue remaining.  I have all of my
  variable
   issues resolved, and I have confirmed that the issue I am seeing is not
  an
   IIS issue (at least I'm pretty darned sure it's not), but rather seems
 to
   be
   a ColdFusion issue.
  
   I am using a common directory path for each site's root: i.e.
   c:\inetpub\wwwroot\app\core\ is set as the root path for site1, site2,
  and
   site3.
  
   Each site than has a unique directory set as the /site mapped
 directory,
   i.e. site1 has C:\inetpub\wwwroot\site1\ mapped as /site, site2
   has C:\inetpub\wwwroot\site2\ mapped as /site, etc.
  
   The problem is with the look-and-feel template for each site.  I'm
 using
  a
   custom tag to set the user interface.  At the top of each page
 contained
  in
   the core site (the code that is common across all sites), I use
 cfimport
  to
   link (for lack of a better term) to the custom tag directory:
  
   cfimport taglib=/site/extensions/custom_tags/ prefix=site
  
   I then call the UI template thusly:
  
   site:uitemplate
  
   for the top of the template, and /site:uitemplate for the bottom
 of
   the template.
  
   The problem is that after restarting the server, the first site loaded
   (site1, for arguments' sake) displays its template just fine.  However,
   when
   going to site2, those assets controlled by the paths in IIS (i.e. the
   site-specific CSS that resides in /site/assets/global.css) are
 displayed
   fine, but those assets that are specifically defined in the template
  (i.e.
   images that are specific to the site and are defined in that site's UI
   custom tag) are being displayed in the HTML as the template for site1
  even
   when trying to access site2.
  
   Needless to say, this has me mystified and confused, and pulling my
 hair
   out
   just a bit.  I turned off ALL caching in CF Administrator and restarted
  the
   server, and the issue is still happening.
  
   Any idea of what I'm doing wrong, or even just things I should be
 trying
  to
   resolve this?  I've spent at least a day trying to get this figured
 out,
  to
   no avail.
  
   Thanks,
  
   Pete
  
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342458
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm