After installing Docusign and enter the docusign configuration I get this error
Fatal error: require_once(): Failed opening required '/home/campsome/public_html/splat/administrator/includes/toolbar.php' (include_path='.:/opt/cpanel/ea-php72/root/usr/share/pear') in /home/campsome/public_html/splat/administrator/components/com_dtdocusign/lib/config.php on line 18

Running Joomla 3.9.24
DTregister 4.2.7
php 7.2.34

Noticed that docusign has not been updated since 02 Jun, 2018 is it still supported?

    Hi w2kd

    You can open the file:

    /administrator/components/com_dtdocusign/lib/config.php

    Look for this line of code:

    require_once JPATH_ADMINISTRATOR . '/includes/toolbar.php';

    replace it by:

    $toolbar = JPATH_ADMINISTRATOR.DIRECTORY_SEPARATOR.'includes'.DIRECTORY_SEPARATOR.'toolbar.php';
    if(JFile::exists($toolbar)){
      require_once ($toolbar); 
    }
    Write a Reply...
    You need to Login to view replies.