Leider kann ich per cron nicht den php-interpreter direkt ansprechen, ich muss es über ein Batchscript und wget machen (laut Support).
Soso.
<?php
header('Content-Type: text/plain');
echo "which php:\n";
echo `which php`;
echo "\n/etc/alternatives/php:\n";
echo `ls -l /etc/alternatives/php`;
echo "\nls -l /usr/bin/php*\n";
echo `ls -l /usr/bin/php*`;
echo "\nfind / -executable -name \"php\":\n";
echo `find / -executable -name "php" 2> /dev/null`;
Gut, dass man ein paar Sachen auch selbst herausfinden kann.