Tip of the day: Web Edition on Windows with xampp
orcouldn't create child process 720003
To fix this, please open the cgi created by Real Studio and look for the first line. This line is normally "#!/usr/bin/perl -w" and called the shebang line. It tells apache where to find the application to run this script. But on Windows, there is a no folder usr on the hard disc usually, so you get the errors above.couldn't spawn child process
You can fix it easily and add your path. For example for us it is "#!c:\xampp\perl\bin\perl.exe -w". With the modified version of the cgi, the web app does now start. As the cgi is the same for all Real Studio Web Apps of a given Real Studio version, you can simply reuse it for all your projects.