More issues: Rechecked all files, some had to correct, re upload all files. Tried to login and got fatal error:

Fatal error: Cannot redeclare zen_set_poll_status() (previously declared in /cart/admin/includes/functions/extra_functions/poll_manager.php:22)

Here is the poll_manager.php line 22:

Code:
// +----------------------------------------------------------------------+
//  $Id: poll_manager.php 2005-04-27 [email protected]
//
function zen_set_poll_status($poll_id, $status) {
    global $db;
    if ($status == '1') {
      return $db->Execute("update " . TABLE_POLL_DESC . "
                           set poll_status = '1', poll_last_modified = now()
                           where poll_id = '" . (int)$poll_id . "'");

    } elseif ($status == '0') {
      return $db->Execute("update " . TABLE_POLL_DESC . "
                           set poll_status = '0', poll_last_modified = now()
                           where poll_id = '" . (int)$poll_id . "'");

    } else {
      return -1;
    }
  }
so whats a miss?

Gerry