Slackbot
08/15/2022, 3:55 PMDave Merrill
08/16/2022, 5:28 PMTEMann
08/16/2022, 7:23 PMmike42780
08/16/2022, 9:33 PMsthornton1978
08/18/2022, 2:15 AM<https://secure.au1.adobesign.com/public/oauth/v2?redirect_uri=https://localhost/testsign/redirect.cfm&response_type=code&client_id=myclient> id goes here&scope=user_login:self+agreement_write:account&state=S6YQD7KDA556DIV6NAU4ELTGSIV26ZNMXDSF7WIEEP0ZLQCLDQ89OYG78C3K9SROC8DXCGRVSGKU1IT1
but when I attempt to call the command with CFHTTP it never really works:
<cfhttp result="result" method="post" charset="utf-8" url="<https://secure.au1.adobesign.com/public/oauth/v2>">
<cfhttpparam
type="FORMFIELD"
name="response_type"
value='code'
/>
<cfhttpparam
type="FORMFIELD"
name="client_id"
value='myclient id goes here'
/>
<cfhttpparam
type="FORMFIELD"
name="redirect_uri"
value="<https://localhost/testsign/redirect.cfm>"
/>
<cfhttpparam
type="FORMFIELD"
name="scope"
value='user_login:self+agreement_write:account'
/>
<cfhttpparam
type="FORMFIELD"
name="state"
value='S6YQD7KDA556DIV6NAU4ELTGSIV26ZNMXDSF7WIEEP0ZLQCLDQ89OYG78C3K9SROC8DXCGRVSGKU1IT1'
/>
</cfhttp>
When I dump cfhttp.FileContent it contains HTML basically saying Invalid_request
Hopefully I am doing something obviously incorrect that someone can point out easily? Or better yet a working example!
Thanks,Dean Lawrence
08/18/2022, 1:46 PMgsr
08/18/2022, 2:41 PMDave Merrill
08/18/2022, 6:51 PMTo enhance security for the ColdFusion server on Windows, restrict access to the following files to selected ColdFusion users:
/cfusion/lib/seed.properties
/cfusion/lib/password.properties
/cfusion/lib/license.properties
/cfusion/bin/passwordreset.bat
/cfusion/bin/cf-passwordreset.jar
My understanding is that in general, the user CF runs under needs full access to the files in the ColdFusion install.
• Is that right?
• But these files are an exception?
• I ignorantly assume CF needs to read them at least, yes?
• So are they saying CF should have read permissions only, to those files, only, but full access to the rest of the CF directory?Jim Partin
08/18/2022, 6:53 PMfolkychris
08/19/2022, 11:30 AMDave Merrill
08/19/2022, 3:18 PMHTTP Error 404.5 - Not Found
The request filtering module is configured to deny the URL sequence.
That comes from the 404-5.htm file in the error pages location.
Can I not override that error page for some reason?John Wilson
08/19/2022, 3:31 PMDave Merrill
08/19/2022, 7:24 PMfman
08/20/2022, 8:56 AMadeptdeveloper
08/20/2022, 6:52 PMjakobward
08/22/2022, 12:49 AMTim
08/22/2022, 8:55 PMFormiko
08/22/2022, 9:13 PMMark S.
08/22/2022, 9:41 PMpegarm
08/22/2022, 11:00 PMsunnispoon
08/22/2022, 11:03 PMpegarm
08/22/2022, 11:07 PMgsr
08/23/2022, 5:33 PMgsr
08/24/2022, 7:49 PMcf_scripts/scripts/error.cfm
directory and now it can seem to find it in cfadmin as site wide error handler, for cf2021gsr
08/24/2022, 7:49 PMDaniel Mejia
08/24/2022, 9:31 PMcomponent {
this.name = "test";
public boolean function onApplicationStart(){
application.uniqueid = createUUID();
return true;
}
}
drewnathanson
08/24/2022, 10:13 PMif ( structKeyExists(url, 'reload') )
{
// Lock the scope
lock scope='application' type='exclusive' timeout=10
{
// Call onApplicationStart() to reload
onApplicationStart();
}
}
johnbarrett
08/25/2022, 7:40 PMEzra Christensen
08/25/2022, 7:51 PMgsr
08/25/2022, 9:16 PM