I've had several plugins running since 2014.
Today - when I am trying to install a new plugin, I get the following error:
I've never seen this before. I've tried a different naming convention for the file. - Didn't work.
So, I start wondering if it is the XML itself. Pared it back to the bare minimum.
<?xml version="1.0" encoding="utf-8" ?>
<queries>
<query coreTable="storedgrades" name="myquery.gpa.get" flattened="true">
<columns>
<column column="last_name">last_name</column>
</columns>
<sql>
<![CDATA[
select distinct last_name from students
]]>
</sql>
</query>
</queries>
Didn't work.
Plugin.xml is normal.
Any suggestions?
Thanks
(Old post, but hopefully this will help people searching the same issue.)
Your zip file may be nested in a way PowerSchool isn't expecting.
Your plugin should have this structure:
├ plugin.xml
├ queries_root (folder)
| ├ some.file.xml
In your file explorer, collapse the queries_root folder so you can't see its contents. Then select both plugin.xml and queries_root and compress them into a zip file.
Do *not* put plugin.xml and queries_root into a folder and then compress that folder. That was the mistake I was making when I got this error.
Hope this helps!