[This] can solve 1053 issue.
You just need to add " if you have spaces in your path...
<?php
win32_create_service(array(
'service' => 'COMPLAINTS', # the name of your service
'display' => 'Receive email complaints and direct them to the website', # description
'params' => '"' . __FILE__ . '"' . ' run', # path to the script and parameters
));
?>
win32_start_service
(PECL win32service SVN)
win32_start_service — サービスを開始する
説明
int win32_start_service
( string
$servicename
[, string $machine
] )指定したサービスの開始を試みます。通常は管理者権限を必要とします。
パラメータ
-
servicename -
サービスの短い名前。
-
machine -
オプションのマシン名。指定しなかった場合、ローカルマシンが使用されます。
返り値
成功した場合に WIN32_NO_ERROR を返します。パラメータに問題がある場合は FALSE、失敗した場合は Win32 エラーコード を返します。
edo888 at gmail dot com
17-Mar-2010 11:23
gunday at poczta dot onet dot pl
16-Oct-2007 12:40
If you get a 1053 error when trying to launch your service, check your service script for errors!
E.g. if you have some syntax errors, the service will attempt to run the php interpreter, but the script won't answer to the service manager with
win32_start_service_ctrl_dispatcher('servicename').
Don't think it is because the call comes to late. It just never came, because there were errors. Test your services with CLI php and then try to run the service.
