Page MenuHomeCode

How To Install Hotglue
Updated 320 Days AgoPublic

We use a standard distribution of HotGlue, with auth and aliases edited.

Auth

A good solution should be implemented, currently, we let it open to all.

Custom aliases

In common.inc.php,add to resolve_aliases function the following aliases:

//Zed local moves
$s = str_replace('%NORTH', ZED_URL . '/do.php/local_move/north?redirectTo=/', $s);
$s = str_replace('%EAST', ZED_URL . '/do.php/local_move/east?redirectTo=/', $s);
$s = str_replace('%SOUTH', ZED_URL . '/do.php/local_move/south?redirectTo=/', $s);
$s = str_replace('%WEST', ZED_URL . '/do.php/local_move/west?redirectTo=/', $s);
$s = str_replace('%UP', ZED_URL . '/do.php/local_move/up?redirectTo=/', $s);
$s = str_replace('%DOWN', ZED_URL . '/do.php/local_move/down?redirectTo=/', $s);
$s = preg_replace('/%MOVE (.*)/', ZED_URL . '/do.php/local_move/($1)?redirectTo=/', $s);
Last Author
dereckson
Last Edited
Jun 7 2023, 22:28

Event Timeline

dereckson edited the content of this document. (Show Details)
dereckson edited the content of this document. (Show Details)
dereckson changed the visibility from "All Users" to "Public (No Login Required)".Nov 15 2015, 02:54