Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install errors and workaround #23

Closed
appkr opened this issue May 18, 2015 · 1 comment
Closed

Install errors and workaround #23

appkr opened this issue May 18, 2015 · 1 comment

Comments

@appkr
Copy link

appkr commented May 18, 2015

  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);
// });
@Renfos
Copy link
Member

Renfos commented Aug 21, 2015

New version updated

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants