bizzlesnaff / mwenhanced

Automatically exported from code.google.com/p/mwenhanced
0 stars 1 forks source link

Problem solved #184

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What revision of the product are you using? In what browser?

Google Chrome.

What version are you using? MangosWeb or TrinityWeb?

Mangosweb 45.

WoW version: 3.3.5

Problem1: templates\offlike\body_header.php
ligne63: var site_link = '<?php echo "/index.php" ?>';
ligne64: var forum_link = '<?php echo "/index.php?n=forum" ?>';
ligne65: var armory_link = '<?php echo "/armory/index.php" ?>';</script>

Fix1:
ligne63: var site_link = '<?php echo "./index.php" ?>';
ligne64: var forum_link = '<?php echo "./index.php?n=forum" ?>';
ligne65: var armory_link = '<?php echo "./armory/index.php" ?>';</script>

Problem2:components\server\server.playermap.php
ligne8: <?php 
ligne9: include('./compnents/pomm/config.php');
ligne10: include('./compnents/pomm/func.php');
ligne11: include('./compnents/pomm/map_english.php');
ligne12: include('./compnents/pomm/pomm_conf.php');
ligne13: include('./compnents/pomm/pomm_play.php');
ligne14: include('./compnents/pomm/zone_names_english.php');
ligne15: ?>

Fix2:
ligne8: <?php 
ligne9: include('./compnents/pomm/config.php');
ligne10: include('./components/pomm/func.php');
ligne11: include('./components/pomm/map_english.php');
ligne12: include('./components/pomm/pomm_conf.php');
ligne13: include('./components/pomm/pomm_play.php');
ligne14: include('./components/pomm/zone_names_english.php');
ligne15: ?>

Playermap still not working.

ps: I speak little English I'm French.

Original issue reported on code.google.com by dragon_c...@live.fr on 17 Jul 2010 at 5:20

GoogleCodeExporter commented 9 years ago

Original comment by wilson.steven10@gmail.com on 24 Jul 2010 at 3:33