Skip to content

Install errors and workaround #23

@appkr

Description

@appkr
  1. There was bunch of errors in the process of db:seed. That was caused by discrepancy between what migration says and what seeder says. The migration forces NOT NULL, but seeder was trying to insert fields with NULL. To remedy this:
  2. I had to rewrite path declaration not to include / in public/themes/admin/config.php and public/themes/public/config.php.
    e.g. $theme->asset()->add('jquery', '/vendor/...'); to $theme->asset()->add('jquery', 'vendor/...');
  3. I had to remove jQuery.appear() function call in public/themes/public/assets/js/scripts.js.
jQuery(this).appear(function() {
    jQuery(this).delay(350).animate({opacity:1,right:"0px"},1000);
});

to

// jQuery(this).appear(function() {
    jQuery(this).delay(350).animate({opacity:1,right:"0px"},1000);
// });

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions