eggdrop v1.6.17, http is loaded with the eggdrop, so it's not the problem

.
In irconline.php
under
PHP Code:
require_once('./global.php');
Add this :
Code:
$tmp = fopen("ircdebug.txt", "a");
fwrite($tmp, $_POST['activity']);
fclose($tmp);
It's just for debug purpose.
Then write !startact, and live your channel. This action will make the eggdrop call the irconline.php.
Then look at ircdebug.txt on your ftp and see if it exists and something written in it

.