Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author madalin.ungureanu

    (@madalinungureanu)

    Hi,

    Sorry about that, there was a 5 minute period after I made the initial update in which I forgot to include that folder. All should be fixed now and working.
    Can you please download it again and sorry for the inconvenience!

    I redownloaded and still get the issue. After updating line 57 in wck.php to require_once(dirname(__FILE__).’/wck-template-api/wck-template-api.php’);, I was able to activate.

    Thanks!

    Yeah, I went through the same procedure of re-downloading the plugin files again and it was still throwing the error.

    randdusing fix worked for me.

    same here:

    original code in plugin:

    if( file_exists( dirname(__FILE__).'/wck-template-api/wck-template-api.php' ) )
    	require_once('/wck-template-api/wck-template-api.php');

    probably should be

    if( file_exists( dirname(__FILE__).'/wck-template-api/wck-template-api.php' ) )
    	require_once( dirname(__FILE__).'/wck-template-api/wck-template-api.php');

    i would have thought….
    (at least that fixed it for me…..how did you even ever get this to work with the original require_once there….?!)

    Plugin Author madalin.ungureanu

    (@madalinungureanu)

    I’ve issued an update that will fix the error.
    I’m really sorry for my error and the inconvenience it may have caused you.

    The error passed through because the development and testing was done on windows localhost and that require_once statement was processing as expected.

    Lesson learned: test under unix as well before issuing an update

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Fatal error’ is closed to new replies.