Difference between revisions of "Reset ADF"

From ADF Docs
Jump to: navigation, search
(Created page with '== Reset ADF == Two reset commands are built into the ADF. Add these URL parameters to any URL. '''You must be logged into a site to reset the ADF.''' 1. ADF Server Reset ?r…')
 
(Reset ADF)
 
(6 intermediate revisions by the same user not shown)
Line 3: Line 3:
  
 
'''You must be logged into a site to reset the ADF.'''
 
'''You must be logged into a site to reset the ADF.'''
 +
 +
To reset both the ADF Server and Site you can run a single URL parameter (only with ADF v1.5 or greater)
 +
 +
<source lang="cfm">
 +
?resetADF=1
 +
</source>
 +
 +
To reset the ADF server and site individually each URL parameter will need to be used (required for ADF v1.0)
  
 
1. ADF Server Reset
 
1. ADF Server Reset
  ?resetServerADF=1
+
<source lang="cfm">
 +
?resetServerADF=1
 +
</source>
  
 
2. ADF Site Reset
 
2. ADF Site Reset
  ?resetSiteADF=1
+
<source lang="cfm">
 +
?resetSiteADF=1
 +
</source>
  
 
'''Note:''' Both URL parameter resets can be used at the same time.  Just make sure the the server reset is before the site reset.
 
'''Note:''' Both URL parameter resets can be used at the same time.  Just make sure the the server reset is before the site reset.
  ?resetServerADF=1&resetSiteADF=1
+
<source lang="cfm">
 +
?resetServerADF=1&resetSiteADF=1
 +
</source>
  
 
'''Note: Resetting the ADF server might affect all sites implementing the ADF.'''  If an error occurs, this could cause sites to go down.  Needless to say, updates to the ADF Bean Configs and config files should be done in a controlled development environment (not on production servers!).
 
'''Note: Resetting the ADF server might affect all sites implementing the ADF.'''  If an error occurs, this could cause sites to go down.  Needless to say, updates to the ADF Bean Configs and config files should be done in a controlled development environment (not on production servers!).

Latest revision as of 16:40, 3 January 2012

Reset ADF

Two reset commands are built into the ADF. Add these URL parameters to any URL.

You must be logged into a site to reset the ADF.

To reset both the ADF Server and Site you can run a single URL parameter (only with ADF v1.5 or greater)

?resetADF=1

To reset the ADF server and site individually each URL parameter will need to be used (required for ADF v1.0)

1. ADF Server Reset

?resetServerADF=1

2. ADF Site Reset

?resetSiteADF=1

Note: Both URL parameter resets can be used at the same time. Just make sure the the server reset is before the site reset.

?resetServerADF=1&resetSiteADF=1

Note: Resetting the ADF server might affect all sites implementing the ADF. If an error occurs, this could cause sites to go down. Needless to say, updates to the ADF Bean Configs and config files should be done in a controlled development environment (not on production servers!).