drifter
1st July 2004, 16:32
Hi all,

I am trying to make a session so it is possible to put it in a job. I added a standard button for that ad only added in the code.

choice.create.job:
on.choice:
check.all.input()


also the session is started so


choice.cont.process:
on.choice:
execute(print.data)


so in the choice print.data there is a call to function do.print() that does it all. But the problem is that when I create a job and start it it does nothing?!

Any help appreciated :)

d.

baanprog
1st July 2004, 18:33
Hi,

I normally catch errors and do it like this

if job.process then
job.process.error = true
else
message("error")
endif

where ever errors are been caught you have to do this.

Just check whether the Kron Script or Job Daemon you are using in your site is Up and Running.

Thanks