This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Map WoW Item Id to Name | |
# set these to your own values | |
$importPath = "C:\temp\your_id_list.csv" | |
$exportPath = "C:\temp\wow_id_to_name_export.csv" | |
$csvHeader = "yourCSVHeaderFromIdList" | |
$client_id = "your client id" | |
$client_secret = "your client secret" | |
# get client info from: https://develop.battle.net/documentation/guides/getting-started |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
@name Server Logs Viewer | |
@description View the latest lines of your Nginx server logs in your browser. | |
@author Luis Medina (larmedina@outlook.com) | |
@date 17.06.2016 | |
Based on original script by Alexandre Plennevaux (pixeline.be) | |
*/ |