Quantcast
Channel: Adobe Community : Popular Discussions - ColdFusion
Viewing all 14291 articles
Browse latest View live

Flex app calling CF cfc to download file gets "Channel disconnected" fault

$
0
0

I am a newbie with ColdFusion and Flex. I am trying to implement file download/streaming functionality in my Flex 4.5 application and I am running ColdFusion 9 as my back end. More specifically, I have a component in my Flex app that displays a list of files - some of these files can be available for opening (or "previewing") via the client. I want the client to be able to click a button and download the file from the ColdFusion server, after the appropriate security checks are performed (also in ColdFusion). Right now I am just trying to get the basic download functionality to work with a very simple cfc. Here is the cfc code:

 

<cfcomponent displayname="Preview Document"

     output="false">

     <cffunction name="streamFile" access="remote" returntype="any">

          <cfargument name="filename" displayName="Filename" type="string" required="true" />

          <cfheader name="Content-Disposition" value="attachment;filename=#filename#" >

          <cfcontent type="application/unknown" file="c:\myserverpath\#filename#">

     </cffunction>

</cfcomponent>

 

When I try this via a cfm, it works fine (I get a File Download window where I can choose to either open or save the file). But when I try to use this in my Flex app, I get an error.

 

In my Flex app, I have a RemoteObject to access my cfc and a CallResponder:

 

<s:RemoteObject id="PreviewDocument"
   source="PreviewDocument"
   destination="ColdFusion"
   showBusyCursor="true"/>
 
  <s:CallResponder id="PreviewDocumentResult"
    fault="Alert.show('CallResponder PreviewDocumentResult: ' +
    event.fault.faultString + '\n' + event.fault.faultDetail)"
    result="PreviewDocumentResult_resultHandler(event)"/>

 

Then I created a button whose click even executes the following line:

 

PreviewDocumentResult.token = PreviewDocument.streamFile(

"myfile.pdf");

 

When I run my app, I get the following fault:

 

faultCode = "Client.Error.DeliveryInDoubt"

faultString = "Channel disconnected"

faultDetail = "Channel disconnected before an acknowledgement was received"

 

I have tried many different approaches and searched online for help with this fault, but I could not find any helpful clue to where I can start investigating this.

 

Can anyone help with why I am getting this fault?

 

Thanks in advance.


Struct of functions [dispatch table]

$
0
0

Hello, all,

I am waiting for a customer to respond to a request, and thought I'd play around, for a bit, while waiting.  (Sometimes, these waits can go for days.)

I was thinking about something I had learned in Javascript a long time ago, and wondered if I could do the same thing in CF:  a dispatch table.

Here is an example of a JS dispatch table:

 

<a href="javascript:void(0);" alt="This is title one." id="title1" class="test">One</a>

<a href="javascript:void(0);" alt="This is title two." id="title2" class="test">One</a>

<a href="javascript:void(0);" alt="This is title three." id="title3" class="test">One</a>

<div id="testText"> </div>

<script> // Pretend I'm loading jQuery

    $(".test").click(function(){

        var divAlign = {

            title1:function(){$("#testText").css('textAlign','left');},

            title2:function(){$("#testText").css('textAlign','center');},

            dflt:function(){$("#testText").css('textAlign','right');}

            }

        var alignIt = function(doWhat){

            var doWhat = divAlign.hasOwnProperty(doWhat) ? doWhat : 'dflt' ;

            divAlign[doWhat]();

            };

        alignIt($(this).attr('id'));

        $("#testText").html($(this).attr('alt'));

        });</script>

 

Click a link, change the text in the div to the value of the alt attribute, and align the text based upon which one is clicked.  Slightly faster than a switch/case.

 

I'm trying to do the same in CFSCRIPT (but show alerts instead of changing the DOM), and I'm banging my head into a wall.  I have essentially the same code in CFSCRIPT, but I get an error:

"Element doWhat is undefined in divAlign"

 

I've even tried setting a variable called "doWhat" prior to creating the divAlign struct, and same error message.

 

What am I missing, here?

 

V/r,

 

^ _ ^

 

 

CF 10 errors show Error 500 instead of normal error message

$
0
0

Hi,

 

Strangely, our CF 10 server has started to show "500 - Internal server error" whenever a CF error occurs, instead of the normal error message. The error is logged, but the front end shows the error 500 and nothing else. Normally, we'd see the error message and stack trace etc.

 

How would I troubleshoot that?

 

EDIT: This is a CF10 on IIS 8 Windows 2012 server, with update 11.

 

Regards,

Mark

 

Message was edited by: tribule

CFDatefield not working in FF

$
0
0
This has never happened to me: something actually works in IE and NOT in FF!

Current version of FF is 3.06. The CFdatefield input does not function in any Mozilla-based browser and throws a Javascript error: Error: "_f is undefined"
"Source File: http://localhost:8500/CFIDE/scripts/ajax/package/cfcalendar.js"

This points to a line in the JS:

"ColdFusion.Calendar.setUpCalendar=function(_6,_7,_8,_9,_a,_b,_c){
var _d=ColdFusion.DOM.getElement(_6+_b+"_cf_button",_b);
var _e=ColdFusion.DOM.getElement(_6,_b);
var _f=null;
var _10=null;
if(_e.value!=""){
_f=_e.value;
_10=_f.split("/");
}
"
Where the last two lines seem to have a problem.

Can anyone help? This appears to be either a new issue (with a new release of FF maybe) or it's a local issue with my code (everything is possible I guess :).

Robert


Uploaded filename, before CFFile

$
0
0
Hi,

I'm doing some form data validation and would like to add rules for files (size and type). Ideally I want to avoid CFFile as the validation shouldn't have anything to do with moving the file anywhere.

I know that when ColdFusion processes an upload, it stores it in a temporary directory and filename. This is stored in the form field (e.g. form.file = c:\sometempdirectory\blahxxx.tmp) and I can use that to do a GetFileInfo and find out the filesize. Awesome.... except it's called blahxxx.tmp :(

I want to know the real filename, not the temp filename but I can't find it anywhere. ColdFusion must know it, probably hidden along with its other darkest secrets, as it'll use it when we do a CFFile action="upload". So where is it being hidden? Any ideas?

I have seen suggestions of using an extra hidden field plus some javascript, but to be honest, I don't like trusting something like that as it's possible to abuse it. I've also gone hunting inside "getPageContext().getRequest()" but not being any good with Java I haven't a clue where to start.

Please help :)
Ta,
Dave

CFHTTP to get response variable

$
0
0
Hi all,

I am integrating the HSBC CPI to a site at the moment, and am having some difficulty in getting the value of the CPI hash. I am attempting to use CFHTTP to post form variables to a page to get the variables converted to a hash then returned to my page to submit.

I am using the following code:

<!--- GET ORDER --->
<cfinvoke component="cfc.shoppingCart" method="getSavedOrder" returnvariable="getSavedOrder">

<cfhttp method="get" redirect="yes" url="OrderHash.cfm">
<cfhttpparam type="formfield" name="OrderId" value="#getSavedOrder.orderRef#">
<cfhttpparam type="formfield" name="TimeStamp" value="">
<cfhttpparam type="formfield" name="CpiReturnUrl" value="https://www.mysite.com/results.cfm">
<cfhttpparam type="formfield" name="CpiDirectResultUrl" value="https://www.mysite.com/results.cfm">
<cfhttpparam type="formfield" name="StorefrontId" value="UK12345678GBP">
<cfhttpparam type="formfield" name="OrderDesc" value="Online Shop">
<cfhttpparam type="formfield" name="PurchaseAmount" value="#replace(decimalFormat(getSavedOrder.orderTotal), ".", "", "All")#">
<cfhttpparam type="formfield" name="PurchaseCurrency" value="826">
<cfhttpparam type="formfield" name="TransactionType" value="Auth">
<cfhttpparam type="formfield" name="UserId" value="">
<cfhttpparam type="formfield" name="Mode" value="T">
<cfhttpparam type="formfield" name="MerchantData" value="">
<cfhttpparam type="formfield" name="BillingFirstName" value="#getSavedOrder.uFirstName#">
<cfhttpparam type="formfield" name="BillingLastName" value="#getSavedOrder.uLastName#">
<cfhttpparam type="formfield" name="ShopperEmail" value="">
<cfhttpparam type="formfield" name="BillingAddress1" value="#getSavedOrder.billAddr1#">
<cfhttpparam type="formfield" name="BillingAddress2" value="#getSavedOrder.billAddr2#">
<cfhttpparam type="formfield" name="BillingCity" value="#getSavedOrder.billAddr3#">
<cfhttpparam type="formfield" name="BillingCounty" value="">
<cfhttpparam type="formfield" name="BillingPostal" value="#getSavedOrder.billPoco#">
<cfhttpparam type="formfield" name="BillingCountry" value="826">
<cfhttpparam type="formfield" name="ShippingFirstName" value="#getSavedOrder.delFirstName#">
<cfhttpparam type="formfield" name="ShippingLastName" value="#getSavedOrder.delLastName#">
<cfhttpparam type="formfield" name="ShippingAddress1" value="#getSavedOrder.delAddr1#">
<cfhttpparam type="formfield" name="ShippingAddress2" value="#getSavedOrder.delAddr2#">
<cfhttpparam type="formfield" name="ShippingCity" value="#getSavedOrder.delAddr3#">
<cfhttpparam type="formfield" name="ShippingCounty" value="">
<cfhttpparam type="formfield" name="ShippingPostal" value="#getSavedOrder.delPoco#">
<cfhttpparam type="formfield" name="ShippingCountry" value="826">
</cfhttp>

To post to a page that consumes tyhose fields to create a hash.

How can I return the hash to my page using cfhttp? Is it possible?

TIA,
Paul

ColdFusion 2018 vulnerabilities

$
0
0

Hi,

 

After scanning our new development ColdFusion 2018, we found following vulnerabilities: How can we fix this issues? Did ColdFusion installed node.js?

 

Thank you.

 

 

Apache Tomcat Default FilesThe remote web server contains default files.The default error page, default index page, example JSPs,
and/or example servlets are installed on the remote Apache
Tomcat server. These files should be removed as they may
help an attacker uncover information about the remote Tomcat
install or host itself.
Node.js - JavaScript run-time environment is affected by multiple vulnerabilities.The version of Node.js installed on the remote host is
6.x prior to 6.15.0, 8.x prior to 8.14.0 or 10.x prior to 10.14.0 or
11.x prior to 11.3.0.
Therefore, it is affected by multiple vulnerabilities.

   - OpenSSL Timing vulnerability in DSA signature generation
     (CVE-2018-0734).

   - OpenSSL Timing vulnerability in ECDSA signature generation
     (CVE-2018-0735).

   - OpenSSL Microarchitecture timing vulnerability in ECC scalar
     multiplication (CVE-2018-5407).

   - Debugger port 5858 listens on any interface by default
     CVE-2018-12120).

   - Denial of Service with large HTTP headers (CVE-2018-12121).

   - Slowloris HTTP Denial of Service (CVE-2018-12122).

   - Hostname spoofing in URL parser for javascript protocol
     (CVE-2018-12123).

   - HTTP request splitting (CVE-2018-12116).

cfexchangecalendar is now adding 6 hours to my event

$
0
0

Something has changed with how the cfexchangecalendar tag interacts with the Exchange server but I don't know what!

 

Up until last week if I passed in a structure like this to the Exchange server everything looked good:

Structure.PNG

 

This week however when I pass in a structure like this 6 hours is added to the start and end time of the event.  That and the message is displayed as text and is no longer rendered in HTML.  Any ideas as to where to look for what changed?

 

My code to invoke the exchange connection looks like this:

 

<CFEXCHANGECONNECTION ACTION="open" USERNAME="#MyName#" PASSWORD="#MyPwd#" SERVER="#MySrvr#" MAILBOXNAME="#MyMailbox#" PROTOCOL="HTTPS" PORT="443" SERVERVERSION="2010" CONNECTION="MyConn"><CFEXCHANGECALENDAR Action="create" Connection="MyConn" event="#MyStruct#" result="theUID"><CFEXCHANGECONNECTION action="close" connection="MyConn" />

 

 

The structure being passed in is shown above...  but I'll bet you noticed that.

 

As a band-aid, when I create my structure I could just subtract 6 hours from the start and end times but once the problem is resolved then my code breaks again.  I'd much rather try to figure out what has changed but don't know where to look.

 

 

Any thoughts???


JVM Path - Error loading jvm.dll

$
0
0

I am performing a new installation on the following:

Windows 2008 R2 service pack 1

CF Enterprise 9.0.2

Single Web Server installation using IIS

SQL Server

 

I am getting an 'Error loading: C:\Program Files\Java\jdk1.7.0_06\jre\bin\server\jvm.dll' when trying to replace the delivered JRE with a more recent version that I have downloaded and installed from Oracle.

 

I have verified the location is correct, and have escaped the backward slashes correctly -

java.home=C:\\Program Files\\Java\\jdk1.7.0_06\\jre.

 

I believe I have the Windows permissions correct to the location of the C;\program files location (same as to the location of the Coldfusion9 folders).

 

Any thoughts?

Thanks in advance.

 

Libby H.

Cache, ColdFusion (11,0,18,314030)

$
0
0

I use cache throughout my site. I am using CachePut, CacheGet,... Since I updated to update 17 I can see that cache gets flushed every couple of minutes even I have set it up for day or longer. Cache is getting created on first call and after refreshing the page content is written from cache. But after couple of minutes cache is flushed and everything starts from beginning. Not sure if there ia any settings that I missed. The code didn't change and it was working for years. I updated to update 18 restarted the server but the issue is still there. What can caused the cache to be flushed? Thanks. Slaven

Installation error

$
0
0

Hello all!

 

I'm tryin to reinstall coldfusion 10 x64 on windows 2008 R2 64 after uninstall.

The installer show me this warning and error.

 

error.JPG

 

 

I manualy delete installation folder and all registry entries.

 

 

 

Colud you help me?

Element server is undefined in GETSETUP

$
0
0

Getting this error, not sure where to begin troubleshooting. I'm trying to fix a website for a friend but I am a bit lost on where to start. Hoping one of you could shed some light on what exactly this error means.

 

Undefined.JPG

The web site you are accessing has experienced an unexpected error.

$
0
0

The web site you are accessing has experienced an unexpected error.
Please contact the website administrator.

The following information is meant for the website developer for debugging purposes.

 

Error Occurred While Processing Request

File not found: /PTE/DWA/index.cfm

 

 

 

 

Resources:

Browser 

Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; Win64; x64; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

Remote Address 

127.0.0.1

Referrer 

 

Date/Time 

26-Jul-10 02:35 PM

 

Stack Trace (click to expand)

 

coldfusion.runtime.TemplateNotFoundException: File not found: /PTE/DWA/index.cfm
        at coldfusion.filter.PathFilter.invoke(PathFilter.java:89)
        at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
        at coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:74)
        at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
        at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
        at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
        at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
        at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
        at coldfusion.CfmServlet.service(CfmServlet.java:175)
        at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
        at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
        at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)
        at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
        at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
        at jrun.servlet.FilterChain.service(FilterChain.java:101)
        at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
        at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
        at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:284)
        at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
        at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
        at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
        at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
        at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
        at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

 

 

 

Debugging Information

ColdFusion Server Enterprise

8,0,0,176276

Template

/PTE/DWA/index.cfm

Time Stamp

26-Jul-10 02:35 PM

Locale

English (US)

User Agent

Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; Win64; x64; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

Remote IP

127.0.0.1

Host Name

127.0.0.1


Execution Time

No top level page was found.


Exceptions

14:35:19.019 - coldfusion.runtime.TemplateNotFoundException - in : line -1

            File not found: /PTE/DWA/index.cfm
            

Scope Variables

CGI Variables:
AUTH_PASSWORD=
AUTH_TYPE=
AUTH_USER=
CERT_COOKIE=
CERT_FLAGS=
CERT_ISSUER=
CERT_KEYSIZE=
CERT_SECRETKEYSIZE=
CERT_SERIALNUMBER=
CERT_SERVER_ISSUER=
CERT_SERVER_SUBJECT=
CERT_SUBJECT=
CF_TEMPLATE_PATH=\\hyfs001\tetools\ttc_old\PTE\DWA\index.cfm
CONTENT_LENGTH=0
CONTENT_TYPE=
CONTEXT_PATH=
GATEWAY_INTERFACE=CGI/1.1
HTTPS=off
HTTPS_KEYSIZE=
HTTPS_SECRETKEYSIZE=
HTTPS_SERVER_ISSUER=
HTTPS_SERVER_SUBJECT=
HTTP_ACCEPT=image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-ms-application, application/vnd.ms-xpsdocument, application/xaml+xml, application/x-ms-xbap, */*
HTTP_ACCEPT_ENCODING=gzip, deflate
HTTP_ACCEPT_LANGUAGE=en-us
HTTP_CONNECTION=Keep-Alive
HTTP_COOKIE=CFADMIN_LASTPAGE_ADMIN=%2FCFIDE%2Fadministrator%2Fsettings%2Fmappings%2Ecfm
HTTP_HOST=localhost
HTTP_REFERER=
HTTP_USER_AGENT=Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; Win64; x64; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
PATH_INFO=/PTE/DWA/index.cfm
PATH_TRANSLATED=\\hyfs001\tetools\ttc_old\PTE\DWA\index.cfm
QUERY_STRING=
REMOTE_ADDR=127.0.0.1
REMOTE_HOST=127.0.0.1
REMOTE_USER=
REQUEST_METHOD=GET
SCRIPT_NAME=/PTE/DWA/index.cfm
SERVER_NAME=localhost
SERVER_PORT=80
SERVER_PORT_SECURE=0
SERVER_PROTOCOL=HTTP/1.1
SERVER_SOFTWARE=Microsoft-IIS/6.0
WEB_SERVER_API=
Cookie Variables:
CFADMIN_LASTPAGE_ADMIN=/CFIDE/administrator/settings/mappings.cfm

 

accdb with CF9 under Win2008 R2 64bit

sql add blank row to result

$
0
0
Hi,

I currently use a temporary table to add a blank row to the top/beginning of my query results. I'm moving to MS SQL stored procedures and wanted to know if it's possible to add a blank row right into my SQL so I can eliminate the temporary table solution.

Any thoughts on this are appreciated!

cfwild

Coldfusion session timing out too soon?

$
0
0

I have coldfusion 10 installed as our main server. I am using sessions to store some information and have set sessiontimeout=#CreateTimeSpan(0,0,45,0)# in the application file but for some reason the session is timing out way before 45 mins - around 10 mins. Is there a reason for this? I thought having the timeout in the application file would overwrite anything set in the coldfusion admin. Is this not true?

 

Thanks

Strange behaviour cfinclude with CF11 and Yosemite

$
0
0

Hello,

 

I have a strange problem with my includes, if i save my file with changes, CF can't find them anymore.

 

Example:

 

<cfincludetemplate="views/file.cfm">

 

Is working fine, when i change something and save file.cfm, I receive the following error 'Could not find the included template views/file.cfm.' which is strange, because the filename and location did not change.

 

Changing the the cfinclude and the filename into 'file1.cfm' does work. Which made me think it had something to do with caching, but clearing the cache and restarting CF did not work.

 

Do anyone have an idea?

 

Thanks,

G.

 

Running

OSX 10.10

CF 11 Upd 2. Dev

ColdFusion 2018 Release 3 mod_jk24.so connector error

$
0
0

Hi,

I've updated our ColdFusion 2018 from update 1 -> to update 3 sucessfully, the instances are running and working.

 

The instructions for this update said to recreate the apache mod_jk24.so so I recreated the connector by following these instructions manually

ColdFusion Apache manual connector configuration

I've used the /cfdisk/coldfusion2018/cfusion/runtime/lib/wsconfig/connectors/apache/intel-win64/prebuil t/mod_jk24.so

 

However I'm getting apache error when I tried to test the apache

 

[admin@cfserver1 1]$ apachectl -t

httpd: Syntax error on line 358 of /etc/httpd/conf/httpd.conf: Syntax error on line 2 of /etc/httpd/conf/mod_jk.conf: Cannot load /cfdisk/coldfusion2018/config/wsconfig/1/mod_jk24.so into server: /cfdisk/coldfusion2018/config/wsconfig/1/mod_jk24.so: invalid ELF header

 

so I reverted the mod_jk24.so to the earlier version (ColdFusion 2018 Release 1)

 

We are running CentOS Linux release 7.5.1804 (Core), httpd x86_64 version 2.4.6 Release 80.el7.centos.1, Coldfusion 2018 Release 3 and we are using mod_jk connector mod_jk24.so, no SeLinux.

 

I've followed the same connector instructions when I updated CF 2016 -> CF 2018

 

Is there a difference with installing the connector with the supplied wsconfig tool vs manually?

Any ideas what might be wrong?

Could the issue be incompatible mod_jk with current apache version, if so how to I verify comparability?

 

Should I report a bug?

 

Thanks

Dejan

Java heap space null error

$
0
0

Hello,

 

We have a process that parses a large xml file from a web service. The xml data has recently gotten a little larger, and now we are running into this error:

Java heap space null <br>The error occurred on line -1.

 

Is this a configuration issue? how do we get around this problem?

Tomcat ISAPI_redirect.log errors - normal?

$
0
0

Hi,

 

We have a mixture of CF10 and CF11 servers running on Windows 2012, IIS 8/8.5. On one CF10 server we have these errors consistently throughout the day in the isapi_redirect.log file:

 

[Tue Nov 18 08:58:50.130 2014] [10776:11284] [error] isapi_write_client::jk_isapi_plugin.c (1400): WriteClient failed with 1229 (0x000004cd)

[Tue Nov 18 08:58:50.281 2014] [10776:11284] [info] ajp_process_callback::jk_ajp_common.c (2089): Writing to client aborted or client network problems

[Tue Nov 18 08:58:50.356 2014] [10776:11284] [info] ajp_service::jk_ajp_common.c (2795): (cfusion) sending request to tomcat failed (unrecoverable), because of client write error (attempt=1)

[Tue Nov 18 08:58:50.416 2014] [10776:11284] [info] HttpExtensionProc::jk_isapi_plugin.c (2603): service() failed because client aborted connection

 

The connector is set to debug level INFO, yet we see INFO, WARN and ERROR status messages. We had this issue on CF10 update 12 and update 14.

 

Appreciate it someone could check their isapi_redirect.log log to see if they get these errors too. Are the errors normal (people closing connections with ESC key etc) or is there tuning to do, or is there a problem? Curiously, some of our servers have no such errors at all, except for the ISAPI connector starting up and shutting down and showing the number of connections etc. The only significant difference between the website with the errors and the ones without is that it uses more AJAX requests. Be grateful for any pointers.

Viewing all 14291 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>