Aurora-WebUI/Quickmap/en
De DigiWiki.
(Différences entre les versions)
(Page créée avec « {{Languages|Aurora-WebUI/Quickmap}} ==Quickmap Install Guide== Quickmap configuration is found in Aurora-WebUI/quickmap/includes/config.php. <br>You may want to call Aurora-W… ») |
|||
| (Une version intermédiaire masquée) | |||
| Ligne 3 : | Ligne 3 : | ||
Quickmap configuration is found in Aurora-WebUI/quickmap/includes/config.php. <br>You may want to call Aurora-WebUI something different just remember this must reflect in the configuration below. | Quickmap configuration is found in Aurora-WebUI/quickmap/includes/config.php. <br>You may want to call Aurora-WebUI something different just remember this must reflect in the configuration below. | ||
<php> | <php> | ||
| - | + | <?php | |
| - | // | + | // Database Connection |
| - | + | $CONF_db_server = "localhost"; | |
| - | $ | + | $CONF_db_user = "*********"; |
| - | + | $CONF_db_pass = "*********"; | |
| - | $ | + | $CONF_db_database = "*********"; |
| - | // | + | // QuickMap URL's |
| - | $ | + | $SYSURL = "http://SERVER_ADDRESS_IP_OR_DNS/webui/quickmap/"; |
| - | $ | + | $IMGURL = "http://SERVER_ADDRESS_IP_OR_DNS:8002/"; |
| - | // | + | // QuickMap Coordinates |
| - | $ | + | $CONF_center_coord_x = "1000"; |
| + | $CONF_center_coord_y = "1000"; | ||
| - | // | + | // QuickMap Template |
| - | $ | + | $CONF_template = "default"; |
| - | + | $CONF_image_size = 230; | |
| - | $ | + | |
| - | + | ||
| - | // | + | // QuickMap Options |
| - | $ | + | $displayRoundedCorner = true; |
| - | $ | + | $displayLogoEffect = true; |
| + | ?> | ||
</php> | </php> | ||
Version actuelle en date du 1 juin 2013 à 12:22
Quickmap Install Guide
Quickmap configuration is found in Aurora-WebUI/quickmap/includes/config.php.
You may want to call Aurora-WebUI something different just remember this must reflect in the configuration below.
<?php // Database Connection $CONF_db_server = "localhost"; $CONF_db_user = "*********"; $CONF_db_pass = "*********"; $CONF_db_database = "*********"; // QuickMap URL's $SYSURL = "http://SERVER_ADDRESS_IP_OR_DNS/webui/quickmap/"; $IMGURL = "http://SERVER_ADDRESS_IP_OR_DNS:8002/"; // QuickMap Coordinates $CONF_center_coord_x = "1000"; $CONF_center_coord_y = "1000"; // QuickMap Template $CONF_template = "default"; $CONF_image_size = 230; // QuickMap Options $displayRoundedCorner = true; $displayLogoEffect = true; ?>


