I tried that, just zipping up the "skins" folder (everything is in the "root" of that zip) and still has the same error.
I tried doing an incredibly simple skin to see if I could just upload a simple HTML skin. Here is my file structure:
SimpleSkin
/containers (empty)
/skins
simple.htm
simple.xml
Here's my "simple.htm" file:
<TABLE>
<TR>
<TD>
Menu goes here: <BR />
[SOLPARTMENU]
</TD>
<TD>
[LOGIN]
<BR />
[USER]
</TD>
</TR>
</TABLE>
<TABLE>
<TR>
<TD WIDTH="10%">
[CONTENTPANE:1]
</TD>
<TD WIDTH="80%">
[CONTENTPANE]
</TD>
<TD WIDTH="10%">
[CONTENTPANE:2]
</TD>
</TR>
</TABLE>
And here's my "simple.xml" file contents:
<Objects>
<Object>
<Token>[LOGIN]</Token>
</Object>
<Object>
<Token>[USER]</Token>
</Object>
<Object>
<Token>[SOLPARTMENU]</Token>
</Object>
<Object>
<Token>[CONTENTPANE]</Token>
<Settings>
<Setting>
<Name>ID</Name>
<Value>Content Pane</Value>
</Setting>
</Settings>
</Object>
<Object>
<Token>[CONTENTPANE:1]</Token>
<Settings>
<Setting>
<Name>ID</Name>
<Value>Left Pane</Value>
</Setting>
</Settings>
</Object>
<Object>
<Token>[CONTENTPANE:2]</Token>
<Settings>
<Setting>
<Name>ID</Name>
<Value>Right Pane</Value>
</Setting>
</Settings>
</Object>
</Objects>
In this "simple" skin, I don't have a CSS file (do I need one?). I tried all three zip formats (i.e. a zip called "SimpleSkin" with a zip inside it called "skins" that has these two files inside it, no go. I tried just zipping the "skins" folder, and no go. What am I missing?
-shnar