ok. i see, in the ow_crom folder is no .htaccess
the .htaccess from you is ftom the root-folder of oxwall
it seemed that you have an PHP cronjob program that will work over http-request.
add in your .htaccess a new line (see below) and then i hope the ISP-php-crontab-script can do the http-request to work
#Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI} .*/http-bind
RewriteRule (.*) /http-bind [L]
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} !/ow_updates/index.php
RewriteCond %{REQUEST_URI} !/ow_updates/
RewriteCond %{REQUEST_URI} !/ow_cron/
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
greets
FaceT