Cool, it works
Still to find php.exe ;)

Try this:
<?php
echo '<pre>';
$last_line = system('php.exe -v', $retval);

echo '
</pre>
<hr />Last line of the output: ' . $last_line . '
<hr />Return value: ' . $retval;


Can you verify anyhow if this is correct path? "c:\\php5\\php.exe"
Or, try also this:
<?php
echo '<pre>';
$last_line = system('dir c:\\php5', $retval);

echo '
</pre>
<hr />Last line of the output: ' . $last_line . '
<hr />Return value: ' . $retval;


Tomasz Ignatiuk wrote:
> FusionCharts   frontend.php      js                 sfProtoculousPlugin
> backend.php    frontend_dev.php  robots.txt         sf_cc_webscript.php
> backend_dev.php  images                  sfFormExtraPlugin  uploads
> css            index.php         sfPropelPlugin
>
>
>
>
>   
> ------------------------------------------------------------------------
> Last line of the output: css index.php sfPropelPlugin
> ------------------------------------------------------------------------
> Return value: 0
> >

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to