I have a Classic ASP site that uses "crontab" to invoke a process every hour.
"1.php" (Linux) is run hourly (via crontab) and invokes "2.php" (Windows) which invokes (via curl) "3.asp" (Windows) which creates and invokes (via ASP's Server.Transfer) "4.php" (Windows) which invokes a REST API.
Everything works great until the Server.Transfer to "4.php" -- it doesn't!
There are no "echo" (Linux) or "Response.Write" (Windows) statements. Processing involves database and file system access.
I know that I had to use "curl" (or "wget") to invoke a page from a "cron" job because it isn't running within a browser.
I thought I could use Server.Transfer (not Response.Redirect) within ASP. Apparently, Server.Transfer can only be used to transfer to another ASP page.
Might someone suggest a solution? Thank you in advance.