Hi all. I'm baffled and am looking for ideas about what to check.
We are running TS 6.7.2 SP2 on Windows 2003.
I'm testing the tagging/submission of "large" numbers of files.
I just experienced a weird error. If I select 1500 files and select File->Tag, the tagging interface comes up and I can tag the files.
If I select those same 1500 files and just click Submit, it cranks for a while and then comes back with "Internal Server Error". None of the log files were updated, so I have nothing to look at.
It worked with 10, 100, 500, and 1000 files, but not with 1500. The intent is for this to work with up to 5000 files.
The first step in the WF is invoking the tagging like this:
[PHP]
owner="__INSERT__($strTeamSiteUser);"
description="Tag files"
immediate="t"
readonly="f"
start="t" >
__INSERT__("");
if (
@submit_file != 0) {
for (my $i=0; $i <
@submit_file; ++$i) {
__INSERT__("");
}
}
]]>
[/PHP]
I see iwgetfilejobs.exe running and then is gone after the error happens. That would seem to be running against each file in the WF to see if it is already in a WF. Makes sense that it wouldn't be there when the error happens.
Any ideas on what I can look at, or how to get better debug logging and/or more info on what is behind the "Internal Server Error" that pops up from Apache?