Quote:
Originally Posted by FTPServerTools
Any update in sourceforge coming??
|
I was also wondering. Playing around with php and ioftpd's http service (trying to follow darkone's ioFTPD PHP Extensions) I got this error:
Code:
Fatal error: Call to undefined function: io_group_list_seek()
After snooping around at Sourceforge I found that PhpExtension.h contains PHP_FUNCTION(io_group_list_seek); and PhpExtension.c contains the function, but it is not listed under function_entry PHP_Extension[]. But since I can't code I dunno if this is causing the fatal error.
Code:
PHP_FE(io_group_list_init, NULL)
PHP_FE(io_group_list_fetch, NULL)
PHP_FE(io_group_list_close, NULL)
And I dunno if the source I've looked at is used in ioFTPD 6.0.x.
Btw, has anyone played around with php and io's http service? I could use more hints on how to use the extensions.
/ZR