PHP Doku:: Starts a service - function.win32-start-service.html

Verlauf / Chronik / History: (37) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzWindowsbasierte Erweiterungenwin32servicewin32service Funktionenwin32_start_service

Ein Service von Reinhard Neidl - Webprogrammierung.

win32service Funktionen

<<win32_start_service_ctrl_dispatcher

win32_stop_service>>

win32_start_service

(PECL win32service SVN)

win32_start_serviceStarts a service

Beschreibung

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

Attempts to start the named service. Usually requires administrative privileges.

Parameter-Liste

servicename

The short name of the service.

machine

Optional machine name. If omitted, the local machine is used.

Rückgabewerte

Returns WIN32_NO_ERROR on success, FALSE if there is a problem with the parameters or a Win32 Error Code on failure.

Siehe auch


2 BenutzerBeiträge:
- Beiträge aktualisieren...
edo888 at gmail dot com
18.03.2010 14: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.10.2007 15: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.



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)