Advertisement:

Author Topic: Ad importer on last version fix  (Read 1369 times)

badluck

  • Newbie
  • *
  • Posts: 12
Ad importer on last version fix
« on: January 15, 2014, 08:01:44 pm »
I tried today to use ad importer and it failed with custom attributes (meta[] ones) ... after 4 hours of pain fix was released :

before:
Code: [Select]
$l = $custom_list->length;add:
Code: [Select]
$rere = array();
replace:
Code: [Select]
Params::setParam("meta[".$meta_info[$field_name]."]", $custom_list->item($k)->nodeValue);with:
$rere[$meta_info[$field_name]] = $custom_list->item($k)->nodeValue;

at end of foreach, after
Code: [Select]
                    }
                    break;
                }
            }
        }
    }
add
Code: [Select]
if (is_array($rere)){
Params::setParam("meta", $rere);
}
and done, it should work

tomshaft

  • Hero Member
  • *****
  • Posts: 862
  • Osshaft for Osclass - Add 650 posts to my total
Re: Ad importer on last version fix
« Reply #1 on: January 15, 2014, 10:42:59 pm »
Thanks.
As soon as I can I will update my copy.
 
Tom

SmaRTeY

  • Osclass Hero
  • Hero Member
  • *
  • Posts: 2519
Re: Ad importer on last version fix
« Reply #2 on: January 29, 2014, 11:43:22 am »
Hi Tom,

is there anybody (plugin owner?) who will update the plugin which is being downloaded by OSC users so they get a new working copy from the base?  ::)

If not I think this is something that really should be done.


Regards,
Eric

tomshaft

  • Hero Member
  • *****
  • Posts: 862
  • Osshaft for Osclass - Add 650 posts to my total
Re: Ad importer on last version fix
« Reply #3 on: January 29, 2014, 01:03:15 pm »
Hi Tom,

is there anybody (plugin owner?) who will update the plugin which is being downloaded by OSC users so they get a new working copy from the base?  ::)

If not I think this is something that really should be done.


Regards,
Eric

I think there are many wondering about these plugin issues.
As far as I know there is no Osclass core plugin team or group working on these. It appears that _conejo is trying to do it all......

This one is a Osclass Dev plugin.

One of the reasons I temporarily started www.osshaft.org is to "try" to collect from the forum users and "try" to update the ones hosted on that site.

My end goal is the HOPE that Osclass eventually sets up separate groups or teams to do exactly this with themes and plugins. If that does not happen then at least there are updated/fixed plugins and themes someplace to get us by.

Sure could use some HELP......
Eventually  www.osshaft.org will be dropped.

Tom