.worker ファイルを ironworker にアップロードしています。ワーカーのコードは (require コマンドを使用して) 他の php ファイルを必要とします。それらも Ironworker にアップロードする必要がありますか?
つまり、.worker ファイルに何か他のものを追加する必要がありますか?また、その方法は次のとおりです。
# define the runtime language
runtime "php"
# exec is the file that will be executed:
exec "hello.php"
WHERE: hello.php には次のステートメントが含まれます。
require_once 'bye.php';