This forum has moved to a new location and is in read-only mode. Please visit talk.octobercms.com to access the new location.
Hey guys, if anyone has some spare time and would like to help me test a free ecommerce plugin I'm hoping to publish soon, I would really appreciate it. The repository is at http://github.com/scottbedard/shop. There is still a bit on my to-do list, but the majority of the plugin I think is ready for testing. Thanks for the help!
Scott, I played with it this morning some. Got tons of errors when it tried to seed data, mainly from "no default value" for the fields. Also a couple got truncation errors for data too long. Still playing with it and will get you details when I get back to my other computer where I had it installed. Thanks for working on it!
Migration fields need to either have a default()
or a nullable()
due to a specific setting some mysql users use.
As an example these:
$table->decimal('cart_value', 10, 2)->unsigned();
$table->decimal('amount', 10, 2)->unsigned();
$table->integer('limit')->unsigned();
$table->boolean('is_percentage')->unsigned();
$table->boolean('is_freeshipping')->unsigned();
should look like:
$table->decimal('cart_value', 10, 2)->unsigned()->nullable();
$table->decimal('amount', 10, 2)->unsigned()->nullable();
$table->integer('limit')->unsigned()->nullable();
$table->boolean('is_percentage')->unsigned()->nullable();
$table->boolean('is_freeshipping')->unsigned()->nullable();
...
Hello which is the state of the art of the plugin? I am looking for something to use on my website...
Do you have plans to finish it soon? I could eventually help on development.
cheers
Last updated
This plugin has a fair amount of features, but by no means would I say it is "state of the art". And yes I hope to release the first version soon, just finishing up a shipping calculator extension at the moment :)
1-6 of 6