Viewing 12 reply threads
  • Author
    Posts
    • #1457
      dennis977
      Member

      Windows: 8.1
      WordPress: 3.8.1
      both pages are blank

    • #1458
      dennis977
      Member

      Should have added: Piklist version is 0.93

    • #1461
      Steve
      Keymaster

      @dennis977– We’re currently having issues with Windows machines. Hope to get this fixed in the next few weeks.

    • #1579

      Hi
      I am having this issues as well.
      Piklist 0.9.3.1
      Windows 7
      wamp

      It was working one minute and next minute it was blank. I can see my piklist post type producing the necessary custom post types
      as well as the meta box title but the fields are not showing up.

      This is after a clean wordpress install to fix another bug piklist stopped working after updating from WordPress dashboard from 0.9.3 to 0.9.3.1. I uninstalled it but could reinstall because for some reason it locked file permissions to the plugins folder in wp-content and could not create the folder to reinstall.

    • #1581
      Steve
      Keymaster

      @cjwebdesigntt– Not 100% clear on this. Can you use FTP to upload the files?

      • #1583

        Ok let me clarify as much as possible.
        I’m working on my local development machine which is a Windows 7 machine running Wamp to run WordPress 3.8.1 etc.

        Problem 1: About and Settings Page for Piklist Plugin (v 0.9.3.1) are both blank.

        Problem 2: I believe as a result of Problem 1, my metabox fields are not showing up. I can see the metabox with its title but its blank. The metabox fields are created by custom post types using my own custom post type plugin ( which is a piklist plugin)

        Problem 3: A previous install of WordPress had 0.9.3 and I updated to 0.9.3.1 and it stopped working giving the following errors:
        Notice:Undefined variable: Notice: Undefined variable: _part in C:\wamp\www\wpthemetester\wp-content\plugins\piklist\includes\class-piklist.php on line 208

        Notice: Undefined variable: _part in C:\wamp\www\wpthemetester\wp-content\plugins\piklist\includes\class-piklist.php on line 210

        Warning: include(C:\wamp\www\wpthemetester\wp-content\themes\cjwebdesign\piklist): failed to open stream: Permission denied in C:\wamp\www\wpthemetester\wp-content\plugins\piklist\includes\class-piklist.php on line 272

        Warning: include(): Failed opening ‘C:\wamp\www\wpthemetester/wp-content/themes/cjwebdesign/piklist’ for inclusion (include_path=’.;C:\php\pear’) in C:\wamp\www\wpthemetester\wp-content\plugins\piklist\includes\class-piklist.php on line 272

        I have the correct permissions. I tried chmod’ing other permissions settings and nothing has worked.
        Please Advised.

    • #1584
      Marcus
      Member

      Hey CJ, take a look at this gist:
      https://gist.github.com/marcuseby/9676104

      It’s what I’ve done with my piklist class file to get it working on windows 7/wamp.

      Specifically, check the pathing changes, and the render function which was where I was getting all my errors and where you are too.

      It’s 0.9.3 but it’ll give you an idea of what to change for your template, and parts pathing.

      Hope this helps.

      If you have a program such as Beyond Compare, you’ll be able to see the changes quite easily and make the adjustments you need too.

      Marcus

    • #1592

      Hi Marcus,
      Thanks for the suggestion but that did not solve the problem.

    • #1600

      An update to this problem. The errors above only happen when the folder structure ( piklist/parts/etc….) are added to the theme.
      In fact just adding an empty piklist folder triggers the errors.

      I still don’t understand why this is happening.

    • #1601

      Marcus I tried making your edits.
      But I get an error on one of your changes line 208:
      $spt = self::$paths[$_theme];

      NOTICE: C:\wamp\www\tap\plugins\piklist\includes\class-piklist.php:208 - Undefined index: parent-theme

    • #1602
      Marcus
      Member

      It makes me wonder about your folder structure…

      Mine is:
      themename/piklist/parts/etc…

      Is that the same structure?

      Also, I’m not using a child theme.

      Marcus

    • #1603
      Marcus
      Member

      Try changing lines 208-211 to this:

      $spt = (isset(self::$paths[$_theme]))?self::$paths[$_theme]:null;
      if (isset($spt))
      {
        $spt = substr($spt,0,strlen($spt)-8); // EDITED BY MARCUS
      

      Marcus

    • #1605

      Thanks much Marcus, I was getting so frustrated. You are a Godsend.
      That last thing worked.

      My theme is a child theme with theme_name/piklist/parts/etc as usual.

      Thanks again so much. I guess I have to keep this edit file handy if there is another update to the piklist plugin. So annoying.

      On a totally unrelated matter: Do you have experience with getting advanced group add_more fields values displaying on the front end?
      See thread post: HERE

    • #1607
      Marcus
      Member
Viewing 12 reply threads
  • You must be logged in to reply to this topic.