passwords.xml proper structure
#1
I'm trying to make sure I have the proper structure for my passwords.xml file.

If my xml file reads as such:
xml:

    <path>
        <from pathversion="1">smb://192.168.10.120/media</from>
        <to pathversion="1">smb://user:[email protected]/media/</to>
    </path>

But my sources.xml file reads:
xml:

<sources>
      <video>
        <source>
            <name>TV - General</name>
            <path pathversion="1">smb://192.168.10.120/media/tvshows/Blah/</path>
            <allowsharing>false</allowsharing>
        </source>
      </video>
      <files>
        <source>
            <name>media1</name>
            <path pathversion="1">smb://192.168.10.120/media/</path>
            <allowsharing>false</allowsharing>
        </source>
    </files>
</sources>

Will the mapping work properly? or do they have to be an exact match in the <video> tag?
Reply
#2
You're missing a closing </source> tag at the 2nd source tag for starters.
Reply
#3
Sorry, it was a copy/paste error. I'll correct it
Reply

Logout Mark Read Team Forum Stats Members Help
passwords.xml proper structure0