User:Toy Wylie/Phoenix/Missing Notifications

From Second Life Wiki
< User:Toy Wylie‎ | Phoenix
Revision as of 02:52, 22 November 2012 by Toy Wylie (talk | contribs) (Added NoPermsNoRemoval - CantRezOnLand)
Jump to navigation Jump to search

Did you encounter strange messages in Phoenix lately? Messages that go like this:

Unknown alert message.png

This means, Phoenix can't display the new messages sent by Linden Lab's servers. This is one sign of Phoenix getting more and more outdated every day.

However, there is a way to at least temporarily fix this particular issue, provided you are familiar and comfortable with editing XML files. Copy and paste the definitions below to the end of your notifications.xml (right before the final </notifications> tag), and you will at least not see the most common errors anymore. I will update the code snippet with more messages as I encounter them. And please, if you see new ones like this, send me the alert identifier, so I can try and add it to this list.

The path to the file is:

  • skins/default/xui/en-us/notifications.xml
 <notification
  icon="notifytip.tga"
  name="AutopilotCanceled"
  type="notifytip">
Autopilot canceled.
 </notification>

 <notification
  icon="notifytip.tga"
  name="JoinGroupSuccess"
  type="notifytip">
You have been added to the group.
 </notification>

 <notification
  icon="notifytip.tga"
  name="GroupDepart"
  type="notifytip">
You have left the group.
 </notification>

 <notification
  icon="notifytip.tga"
  name="toxicInvRezAttemptFailed"
  type="notifytip">
Attempt to rez an objet failed.
 </notification>

 <notification
  icon="notifytip.tga"
  name="HomePositionSet"
  type="notifytip">
Home position set.
 </notification>

 <notification
  icon="notifytip.tga"
  name="CantSitNoRoom"
  type="notifytip">
No room to sit here, try another spot.
 </notification>

 <notification
  icon="notifytip.tga"
  name="CantSitNoSuitableSurface"
  type="notifytip">
There is no suitable surface to sit on, try another spot.
 </notification>

 <notification
  icon="notifytip.tga"
  name="NoSetRootPrimWithNoShape"
  type="notifytip">
Cannot set root prim to have no shape.
 </notification>

 <notification
  icon="notifytip.tga"
  name="NoPermsNoRemoval"
  type="notifytip">
Removal of the object '[OBJ_NAME]' from the simulator is disallowed by the permissions system.
 </notification>

 <notification
  icon="notifytip.tga"
  name="CantRezOnLand"
  type="notifytip">
Can't rez object at [OBJECT_POS] because the owner of this land does not allow it.  Use the land tool to see land ownership.
 </notification>