](dowalk) 871: Can't exec - Help!

Post Reply
alex_toussaint
Posts: 1
Joined: Thu Mar 14, 2002 1:07 am

](dowalk) 871: Can't exec - Help!

Post by alex_toussaint »

Hi,

I installed the Webinator with Apache on W2K. I get the following error trying to run the first walk:

018 [webinatoradmin=webinatoradmin](dowalk) 871: Can't exec `./c:\PROGRA~1\APACHE~1\apache\cgi-bin\texis.exe': No such file or directory in the function doexec

I am stuck. Tried changes some priviledges. Tried looking around config files. Help!

--alex
User avatar
mark
Site Admin
Posts: 5513
Joined: Tue Apr 25, 2000 6:56 pm

](dowalk) 871: Can't exec - Help!

Post by mark »

It looks like apache is setting argv[0] (the path and name of texis.exe) incorrectly. You can hard code the path in the dowalk script to make it work. Around line 90 of dowalk you'll see

<if $ret eq ""><!-- not vhttpd -->
<loop max=1 $cmdlnargs><$texis=$cmdlnargs></loop><!-- texis -->
<else>
<$texis="">
</if>

Below that add:

<$texis="c:\PROGRA~1\APACHE~1\apache\cgi-bin\texis.exe">

assuming that's the correct path for your installed texis.exe.
Post Reply