Updated README, XMLRPC needs be on the machine as well

+ Added the solution for LandSales (all it needed was a 256 multiplier)

git-svn-id: http://forge.opensimulator.org/svn/ossearch/trunk@162 109abde3-1f22-4c10-b5d7-b6b0135cd00c
This commit is contained in:
fly-man-
2010-10-27 09:36:33 +00:00
parent 0c02b2678f
commit 9c7b89984e
2 changed files with 4 additions and 4 deletions
@@ -621,8 +621,8 @@ namespace OpenSimSearch.Modules.OpenSearch
}
string[] landingpoint = ParcelLandingPoint[i].Split('/');
mapItemReply mapitem = new mapItemReply();
mapitem.x = (uint)(locX + Convert.ToDecimal(landingpoint[0]));
mapitem.y = (uint)(locY + Convert.ToDecimal(landingpoint[1]));
mapitem.x = (uint)((locX * 256 ) + Convert.ToDecimal(landingpoint[0]));
mapitem.y = (uint)((locY * 256 ) + Convert.ToDecimal(landingpoint[1]));
mapitem.id = landDir.parcelID;
mapitem.name = landDir.name;
mapitem.Extra = landDir.actualArea;
+2 -2
View File
@@ -2,8 +2,8 @@ OpenSimSearch add-on module for Open Simulator
Requirements
The webserver needs PHP support with support for CURL.
NOTE: Not all webservers may have CURL support for PHP.
The webserver needs PHP support with support for CURL and XMLRPC.
NOTE: Not all webservers may have CURL and XMLRPC support for PHP.
About the files