Our website is made possible by displaying online advertisements to our visitors.
Please consider supporting us by disabling your ad blocker.

OpenSimWorld is the directory of 3D Virtual Worlds based on OpenSimulator and connected through the HyperGrid. Learn More

Reposting this as it is an important fix any grid can and should run. There is a patch in core Opensimulator code as of 2/15 to allow outfits to load correctly without breaking links. This has been a bug forever, and was caused by loading IARs. For the those grids that do not use core's latest 0.9.3.1 dev (PBR), I have SQL for grid owners to fix their broken links in outfits. DreamGrid has this patch for future uploads, and also will run this SQL to repair all old outfits. You need do nothing except update to the latest DreamGrid 6.02 (Non PBR) or 7.02 (PBR). DreamGrid will automatically fix old as well as IAR uploads, even in V6 series which is Opensim 0.9.2 ( Non PBR )

Mysql SQL code is this:
use robust; //with whatever your database is. For standalones it may be 'opensim' as there is no robust.
show databases; // will show you which databases you have and their names.

use robust;
update inventoryfolders set type = 47 where foldername='My Outfits' and type = -1;

This fixes all old links. You need the patched Opensim to fix future links, OR you can run this again after loading an IAR. You do not have to do this, links can be fixed in the viewer but it's a tad tedious.

Grids will need to compile dev master from Feb 15 or later to make this automatic fix when loading of IARS. If you can't do that, just run this SQL after any IAR load.

Please be aware you should backup your robust database first, just in case. The details for coders is at http://opensimulator.org/mantis/view.php?id=9180