downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

win32_stop_service> <win32_start_service_ctrl_dispatcher
[edit] Last updated: Fri, 25 May 2012

view this page in

win32_start_service

(PECL win32service SVN)

win32_start_serviceサービスを開始する

説明

int win32_start_service ( string $servicename [, string $machine ] )

指定したサービスの開始を試みます。通常は管理者権限を必要とします。

パラメータ

servicename

サービスの短い名前。

machine

オプションのマシン名。指定しなかった場合、ローカルマシンが使用されます。

返り値

成功した場合に WIN32_NO_ERROR を返します。パラメータに問題がある場合は FALSE、失敗した場合は Win32 エラーコード を返します。

参考



add a note add a note User Contributed Notes win32_start_service
edo888 at gmail dot com 18-Mar-2010 05:23
[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
   
));
?>
gunday at poczta dot onet dot pl 16-Oct-2007 06: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.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites