Howto perform health check without update package

Hi,

on SugarCRM 11.0 to 11.02.2 update, we had many warnings. We must reduce this warnings to be compable woth future updates. Ist there a way to perform this health check with detailed informations (best would be CLI & log file) multiple times without an update / upgrade package?

Regards
Harry

Parents Reply
  • Hi ,

    this would solve my question, but I have not access to preview packages. I tried it a quick custom package with a dummy file, but maybe some props do not working.

    BTW: I work with Pro on premise

    $manifest = array(
        'acceptable_sugar_flavors' => array('PRO'),
        'acceptable_sugar_versions' =>
            array(
                'exact_matches' => array('11.0.2'),
                'regex_matches' => array()
            ),
        'author' => 'Harald Kampen (PlusServer GmbH).',
        'copy_files' =>
            array(
                'from_dir' => 'dummy',
                'to_dir' => '',
                'force_copy' => array()
            ),
        'description' => 'Uploads only a dummy text file - only to run health check',
        'icon' => '',
        'is_uninstallable' => false,
        'offline_client_applicable' => true,
        'name' => 'SugarPro',
        'published_date' => '2021-11-05 14:00:00',
        'type' => 'patch',
        'version' => '11.0.3',
        'flavor' => 'PRO',
    );
    

    It stops with the message "ERROR: Cannot find health check scanner. Skipping health check stage"

    Regards

    Harry

Children