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

search for in the

win32_stop_service> <win32_start_service_ctrl_dispatcher
[edit] Last updated: Fri, 17 May 2013

view this page in

win32_start_service

(PECL win32service SVN)

win32_start_serviceInicia un servicio

Descripción

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

Intenta iniciar un servicio con nombre. Normalmente requiere privilegios administrativos.

Parámetros

servicename

El nombre corto del servicio.

machine

El nombre opcional de la máquina. Si se omite, será usada la máquina local.

Valores devueltos

Devuelve WIN32_NO_ERROR en caso de éxito, FALSE si hay un problema con los parámetros o Código de error Win32 en caso de error.

Ver también



add a note add a note User Contributed Notes win32_start_service - [2 notes]
up
0
edo888 at gmail dot com
3 years ago
[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
   
));
?>
up
0
gunday at poczta dot onet dot pl
5 years ago
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