Giter Club home page Giter Club logo

Comments (3)

MichielA01 avatar MichielA01 commented on July 20, 2024

The problem is that dirname( FILE , 2 ) works only with PHP7
Nested dirname are needed for earlier PHP versions.
Below my changed basecontroller.php, which does not throw an error at activation.

`<?php
/**

  • @Package wptodo
    */
    namespace Inc\Base;

class BaseController
{
public static $plugin_path;
public static $plugin_url;
public static $plugin;

public function __construct(){
	self::$plugin_path = plugin_dir_path( dirname(dirname( __FILE__ )) );
	self::$plugin_url = plugin_dir_url( dirname(dirname( __FILE__ )) );
	self::$plugin = plugin_basename( dirname(dirname(dirname( __FILE__ ))) ) . '/wp-todo.php';
}

}`

from wp-todo.

MichielA01 avatar MichielA01 commented on July 20, 2024

... above does not solve all issues.. adding a task also throws an error now:

Catchable fatal error: Argument 1 passed to Inc\Base\Model::wptodo_edit_task() must be an instance of Inc\Base\int, string given, called in /public/sites/www.poda.nl/wp-content/plugins/wp-todo/inc/Base/Model.php on line 317 and defined in /public/sites/www.poda.nl/wp-content/plugins/wp-todo/inc/Base/Model.php on line 288

So probably PHP7 is required?

from wp-todo.

delower186 avatar delower186 commented on July 20, 2024

@MichielA01 Yes, you are correct PHP7 is required.

from wp-todo.

Related Issues (12)

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.