Jump to content

iNode Cloud

Members
  • Posts

    50
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by iNode Cloud

  1. Hi Guys,

     

    I changed the password for the database user for the blesta database.

     

     

    When i changed the DB username password and updated the /config/blesta.php file

     

    i now get an error -- how can i fix this?

     

    SQLSTATE[28000] [1045] Access denied for user 'icadmin_blesta'@'localhost' (using password: YES) on line 267 in /chroot/home/icadmin/inodecloud.com/html/manage/lib/model.php 

    Printing Stack Trace:
    #0 /chroot/home/icadmin/inodecloud.com/html/manage/lib/model.php(278): Model->makeConnection()
    #1 /chroot/home/icadmin/inodecloud.com/html/manage/lib/model.php(117): Model->lazyConnect()
    #2 /chroot/home/icadmin/inodecloud.com/html/manage/components/record/record.php(669): Model->query('SELECT `value` ...', Array)
    #3 /chroot/home/icadmin/inodecloud.com/html/manage/components/session/session.php(249): Record->fetch()
    #4 [internal function]: Session->sessionSelect('p8sdcin4s0od8ab...')
    #5 /chroot/home/icadmin/inodecloud.com/html/manage/components/session/session.php(186): session_start()
    #6 /chroot/home/icadmin/inodecloud.com/html/manage/components/session/session.php(38): Session->sessionSet(1800, 'sessions', 'id', 'expire', 'value', 'blesta_sid', true)
    #7 [internal function]: Session->__construct()
    #8 [internal function]: ReflectionClass->newInstance()
    #9 /chroot/home/icadmin/inodecloud.com/html/manage/lib/loader.php(211): call_user_func_array(Array, Array)
    #10 /chroot/home/icadmin/inodecloud.com/html/manage/lib/loader.php(85): Loader::loadAndInitialize(Object(Main), 'component', Array)
    #11 /chroot/home/icadmin/inodecloud.com/html/manage/lib/controller.php(117): Loader::loadComponents(Object(Main), Array)
    #12 /chroot/home/icadmin/inodecloud.com/html/manage/app/app_controller.php(0): Controller->components()
    #13 /chroot/home/icadmin/inodecloud.com/html/manage/plugins/cms/cms_controller.php(14): AppController->preAction()
    #14 /chroot/home/icadmin/inodecloud.com/html/manage/plugins/cms/controllers/main.php(17): CmsController->preAction()
    #15 /chroot/home/icadmin/inodecloud.com/html/manage/lib/dispatcher.php(102): Main->preAction()
    #16 /chroot/home/icadmin/inodecloud.com/html/manage/index.php(21): Dispatcher::dispatch('/')
    #17 {main}

     

  2. Oh noes!

    endif tag doesn't exist on line 148 in /chroot/home/icadmin/inodecloud.com/html/manage/vendors/h2o/h2o.php 

    Printing Stack Trace:

    #0 /chroot/home/icadmin/inodecloud.com/html/manage/vendors/h2o/h2o/parser.php(89): H2o::createTag('endif', NULL, Object(H2o_Parser), 778)

    #1 /chroot/home/icadmin/inodecloud.com/html/manage/vendors/h2o/h2o.php(106): H2o_Parser->parse()

    #2 /chroot/home/icadmin/inodecloud.com/html/manage/vendors/h2o/h2o.php(142): H2o->parse('

    #3 /chroot/home/icadmin/inodecloud.com/html/manage/plugins/cms/controllers/main.php(79): H2o::parseString('
    #4 /chroot/home/icadmin/inodecloud.com/html/manage/lib/dispatcher.php(111): Main->index()

    #5 /chroot/home/icadmin/inodecloud.com/html/manage/index.php(21): Dispatcher::dispatch('/')

    #6 {main}

  3. Hi Guys, 

     

    I was editing the html in the portal and now cant see my site

     

    Can you please let me know what i am missing? 

     

        <div class="col-md-12">
            <div class="thanks">
     
            </div>
        </div>
     
        <div class="col-md-4 col-sm-6 portal-box">
            <a href="{client_url}login/">
                <div class="well">
                    <i class="fa fa-cogs fa-4x"></i>
                    <h4>My Account</h4>
                    <p>Have an account with us? Log in here to manage your account.</p>
                </div>
            </a>
        </div>
        </div>
    <div class="col-md-4 col-sm-6 portal-box">
            <a href="{client_url}plugin/support_manager/knowledgebase/">
                <div class="well">
                    <i class="fa fa-info fa-4x"></i>
                    <h4>Knowledge Base</h4>
                    <p>Have a question? Search the knowledge base for an answer.</p>
                </div>{% endif %}
            </a>
        </div>{% endif %}
        {% if plugins.order.enabled %}<div class="col-md-4 col-sm-6 portal-box">
            <a href="{blesta_url}order/">
                <div class="well">
                    <i class="fa fa-shopping-cart fa-4x"></i>
                    <h4>Order</h4>
                    <p>Visit the order form to sign up and purchase new products and services.</p>
                </div>
            </a>
        </div>
    </a>
        </div>{% endif %}
  4. Hi,

     

    I tried to do some testing on the sign up process and noticed the emails 

     

    with the service creation email template with the {package.email_html} tag is not shown.

     

    Below is the email template: 

     

    <p>
    Hi {contact.first_name},<br />
    <br />
    Your service has been approved and activated.</p>
    <p>
    <span style="font-size: 12px;">Please keep this email for your records.</span></p>
    <p>
    {package.email_html}</p>
     
     
    However the received email shows (display images and no security configured on email):
     

    Hi ,

    Your service has been approved and activated.

    Please keep this email for your records.

     
     
     
     
    How do i fix this?
  5. Its pointing to something in this code.

     

    /**
    * Build a DSN string using the given array of parameters
    * @param array $db An array of parameters
    * @return string The DSN string
    * @throws Exception Thrown when $db contains invalid parameters
    */
    public static function makeDSN($db) {
    if (!isset($db['driver']) || !isset($db['database']) || !isset($db['host']))
    Line 226: throw new Exception("Call to Model::makeDSN with invalid parameters, required array('driver'=>,'database'=>,'host'=>)");
     
    return $db['driver'] . ":dbname=" . $db['database'] . ";host=" . $db['host'] . (isset($db['port']) ? ";port=" . $db['port'] : "");
    }
  6. just fixed that looks like my wp-includes/post-formats.php file went missing  :huh:  - thanks for pointing that out Joseph. 

     

    All other customers are fine in our server. Looks like just blesta to fix. 

  7. Hi Guys,

     

    This morning i started getting this error. i havent done any updates yet and i was using version 3.4.0

     

    Call to Model::makeDSN with invalid parameters, required array('driver'=>,'database'=>,'host'=>) on line 226 in /chroot/home/icadmin/inodecloud.com/html/manage/lib/model.php 

    Printing Stack Trace:
    #0 /chroot/home/icadmin/inodecloud.com/html/manage/lib/model.php(256): Model::makeDSN(NULL)
    #1 /chroot/home/icadmin/inodecloud.com/html/manage/lib/model.php(57): Model->makeConnection(NULL)
    #2 /chroot/home/icadmin/inodecloud.com/html/manage/app/app_model.php(0): Model->__construct()
    #3 /chroot/home/icadmin/inodecloud.com/html/manage/app/models/currencies.php(17): AppModel->__construct()
    #4 [internal function]: Currencies->__construct()
    #5 [internal function]: ReflectionClass->newInstance()
    #6 /chroot/home/icadmin/inodecloud.com/html/manage/lib/loader.php(73): call_user_func_array(Array, Array)
    #7 /chroot/home/icadmin/inodecloud.com/html/manage/helpers/currency_format/currency_format.php(33): Loader::loadModels(Object(CurrencyFormat), Array)
    #8 [internal function]: CurrencyFormat->__construct()
    #9 [internal function]: ReflectionClass->newInstance()
    #10 /chroot/home/icadmin/inodecloud.com/html/manage/lib/loader.php(211): call_user_func_array(Array, Array)
    #11 /chroot/home/icadmin/inodecloud.com/html/manage/lib/loader.php(95): Loader::loadAndInitialize(Object(Main), 'helper', Array)
    #12 /chroot/home/icadmin/inodecloud.com/html/manage/lib/controller.php(127): Loader::loadHelpers(Object(Main), Array)
    #13 /chroot/home/icadmin/inodecloud.com/html/manage/lib/controller.php(99): Controller->helpers(Array)
    #14 /chroot/home/icadmin/inodecloud.com/html/manage/app/app_controller.php(0): Controller->__construct()
    #15 /chroot/home/icadmin/inodecloud.com/html/manage/lib/dispatcher.php(85): AppController->__construct('main', 'index', false)
    #16 /chroot/home/icadmin/inodecloud.com/html/manage/index.php(21): Dispatcher::dispatch('/')
    #17 {main}

  8. Hi Jonathan,

     

    Im currently also getting a quote to build a blesta <> quickbook integration module - we could split the cost if you are interested. 

     

    QuickBooks Plugin For Blesta

     

     

     

    ·      Invoices

    1.     Create Invoice (Invoices created in Blesta gets imported to QuickBooks)

    2.     Update Invoice (Any change made on the invoice would reflect to QuickBooks's Invoice)

    3.     Void/cancel invoice

     

    ·      Payment

    1.     Create Payment (transactions added in Blesta gets added to QuickBooks and get applied to an invoice if any)

    2.     Update

    3.     Refunded/Declined

     

    ·      Client/Customer

    1.     Create Customer (On Invoice importing first the plugin will check if the customer info is already recorded in QuickBooks, otherwise, it gets recorded)

     

     

    Project Turnaround time: 14 business days

    Total Cost: $275 USD

×
×
  • Create New...