SSH = terminal login to the webspace with
PUTTY SSH-Programm
(look in Webspace manual if you can do this)
-- -- -- -- -- -- -- --
second try is that you -add a path- in the .htaccess file for the Rewrite function.
it is possible that your cron-builder work on HTTP-Request and not in system-level,
and the rewrite-function broken this request.
After -add- the line the rewrite engine don't break the http-request.
hope that was helpful
______________________________________
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI} .*/http-bind
RewriteRule (.*) /http-bind [L]
RewriteCond %{REQUEST_URI} !^/index.html
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} !/
PATH TO YOUR DRUPAL FOLDER/
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
______________________________________