Giter Club home page Giter Club logo

todolist-plugin's People

Contributors

shahiem avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

todolist-plugin's Issues

Model Save Error

I use SQLite on one of my October installs and I realize that this plugin uses direct SQL query here which throws an error like this...
Screenshot of Error

SQLite doesn't come with the information_schema table, hence this error. Perhaps the logic could be improved? I've been exploring the code a bit trying to understand it and I haven't been quite able to figure out the logic in that section. Could you take a look to see if this issue can be fixed, preferably using Laravel's Eloquent approach instead of the direct DB query, so that it's more database-neutral. Thanks for the plugin by the way!

Update for OctoberRC

This is a good plugin which needs some updates. Will it be updated to OctoberRC? It doesn't seem to work at the moment

Update: Thanks for update to RC

Error adding ToDo

When added ToDo error: missing field progress_val in table database:

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'progress_val' in 'field list' (
  SQL: insert 
  into
    `shahiemseymor_todo` (
      `title`, `description`, `progress_val`, `priority`, `deadline`, `project_id`, `user_id`, `updated_at`, `created_at`
    ) 
  values
    (Title, Description, 26, high, 2014-07-15 12:23:00, 1, 1, 2014-07-14 08:26:02, 2014-07-14 08:26:02)
  )

When installing the plugin creates field progress:

        Schema::create('shahiemseymor_todo', function($table)
        {
            $table->engine = 'InnoDB';
            $table->increments('id');
            $table->string('title');
            $table->string('priority');
            $table->text('description');
            $table->timestamp('deadline');
            $table->integer('progress');
            $table->integer('project_id');
            $table->integer('user_id');
            $table->timestamps();
        });

Further work is being done with the field progress_val.

Report widget

A report widget, so you can add a task to a project via your dashboard. You can also see your tasks on a specific day

SQL error on installation from plugin manager

Got : "Syntax error or access violation: 1067 Invalid default value for 'deadline' (SQL: create table shahiemseymor_todo (id int unsigned not null auto_increment primary key, title varchar(255) not null, priority varchar(255) not null, description text not null, deadline timestamp default 0 not null, progress_val int not null, project_id int not null, user_id int not null, created_at timestamp null, updated_at timestamp null) default character set utf8 collate utf8_unicode_ci engine = InnoDB)" on installation

Error deleting plugin & adding project

When removing the plug-in, you receive the error:

SQLSTATE[42S02]: Base table 
or view not found: 1051 Unknown table  'cnm_canonium_db.shahiemseymor_todo' (
  SQL: drop table `shahiemseymor_todo`
)

In the table of the database remains:
twnnmlo

In create_projects_table.php:

    public function down()
    {
        Schema::drop('shahiemseymor_todo');
        Schema::drop('shahiemseymor_todo_projects_assigned');
    }

Necessary:

    public function down()
    {
        Schema::drop('shahiemseymor_todo_projects');
        Schema::drop('shahiemseymor_todo_projects_assigned');
    }

Clear install.
Tried to add a project and got:
k9eytnf
Apparently, there is a dependence on plugin RainLab.User?
Maybe should write about this in the documentation?

Without field "Assign to":

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'assign' in 'field list'  (
  SQL:insert 
into
  `shahiemseymor_todo_projects`  (
    `title`, `description`, `assign`, `user_id`,`updated_at`, `created_at`
  ) 
values
  (One, Two, , 1, 2014-07-13 21:36:41, 2014-07-13 21:36:41)
)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.