Hello,
I've got an issue getting this to work. Everything works except: In the url for the search engine in the xml file the & causes errors. If I change it to a semi-colon or some other character, it works fine except that the query string is then malformed for the search and nothing happens.
Here is my xml file contents:
PHP Code:
<?xml version="1.0" ?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
<ShortName>WeServ.net</ShortName>
<Description>Search WeServ.Net - A Community of Agape</Description>
<Image height="16" width="16" type="image/x-icon">http://www.weserv.net/favicon.ico</Image>
<Url type="text/html" method="get" template="http://www.weserv.net/forums/search.php?do=process&query={searchTerms}" />
</OpenSearchDescription>
Like this I get an xml validation error. If I change do=process&query= to do=process;query= I get no xml validation error, but the search doesn't work.
Any thoughts?
Thanks!