├── .gitignore ├── .htaccess ├── INSTALL.txt ├── README.md ├── TODO.txt ├── admin ├── includes │ ├── index.html │ └── loader.php └── index.php ├── core ├── aasp_includes │ ├── functions.php │ ├── index.html │ ├── javascript_loader.php │ ├── js │ │ ├── account.js │ │ ├── index.html │ │ ├── interface.js │ │ ├── logs.js │ │ ├── news.js │ │ ├── server.js │ │ ├── shop.js │ │ ├── wysiwyg.js │ │ └── wysiwyg │ │ │ ├── index.html │ │ │ ├── wysiwyg.colorpicker.js │ │ │ ├── wysiwyg.cssWrap.js │ │ │ ├── wysiwyg.image.js │ │ │ ├── wysiwyg.link.js │ │ │ └── wysiwyg.table.js │ ├── pages │ │ ├── 404.php │ │ ├── dashboard.php │ │ ├── donations.php │ │ ├── error404.jpg │ │ ├── index.html │ │ ├── interface.php │ │ ├── logout.php │ │ ├── logs.php │ │ ├── news.php │ │ ├── notice.php │ │ ├── pages.php │ │ ├── realms.php │ │ ├── services.php │ │ ├── shop.php │ │ ├── subpages │ │ │ ├── donations-browse.php │ │ │ ├── index.html │ │ │ ├── interface-alert.php │ │ │ ├── interface-menu.php │ │ │ ├── interface-plugins.php │ │ │ ├── interface-slideshow.php │ │ │ ├── interface-viewplugin.php │ │ │ ├── logs-admin.php │ │ │ ├── logs-donateshop.php │ │ │ ├── logs-voteshop.php │ │ │ ├── news-manage.php │ │ │ ├── pages-new.php │ │ │ ├── realms-manage.php │ │ │ ├── services-charservice.php │ │ │ ├── services-voting.php │ │ │ ├── shop-add.php │ │ │ ├── shop-manage.php │ │ │ ├── shop-tools.php │ │ │ ├── tools-accountaccess.php │ │ │ ├── tools-tickets.php │ │ │ ├── users-inventory.php │ │ │ ├── users-manage.php │ │ │ └── users-viewchar.php │ │ ├── tools.php │ │ ├── updates.php │ │ └── users.php │ ├── scripts │ │ ├── account.php │ │ ├── index.html │ │ ├── layout.php │ │ ├── login.php │ │ ├── logs.php │ │ ├── news.php │ │ ├── pages.php │ │ ├── realms.php │ │ ├── shop.php │ │ └── test_settings.php │ └── styles │ │ ├── default │ │ ├── images │ │ │ ├── ajax-loader.gif │ │ │ ├── bg.png │ │ │ ├── box_left_li.png │ │ │ ├── box_left_li_hover.png │ │ │ ├── box_left_title.png │ │ │ ├── down.png │ │ │ ├── header_bg.png │ │ │ ├── help.png │ │ │ ├── index.html │ │ │ ├── menu_left.png │ │ │ ├── menu_left_bg.png │ │ │ ├── subheader_bg.png │ │ │ ├── submit_bg.png │ │ │ ├── submit_bg_hover.png │ │ │ ├── topBar.png │ │ │ └── up.png │ │ ├── index.html │ │ └── style.css │ │ ├── index.html │ │ ├── jquery.wysiwyg.bg.png │ │ ├── jquery.wysiwyg.gif │ │ ├── jquery.wysiwyg.no-alpha.gif │ │ └── wysiwyg.css ├── backups │ ├── .htaccess │ ├── configuration.php │ └── index.html ├── cache │ └── index.html ├── documents │ ├── alert.php │ ├── index.html │ ├── refundpolicy.php │ └── termsofservice.php ├── includes │ ├── .htaccess │ ├── Messages.php │ ├── classes │ │ ├── account.php │ │ ├── cache.php │ │ ├── character.php │ │ ├── error.php │ │ ├── index.html │ │ ├── plugins.php │ │ ├── server.php │ │ ├── shop.php │ │ ├── support.php │ │ ├── template_parse.php │ │ ├── validator.php │ │ └── website.php │ ├── configuration.json │ ├── configuration.php │ ├── error-log.php │ ├── ext_scripts_class_loader.php │ ├── index.html │ ├── javascript_loader.php │ ├── lang │ │ ├── enGB │ │ │ └── strings.xml │ │ └── ptPT │ │ │ └── strings.xml │ ├── loader.php │ ├── misc │ │ ├── alertpay_trigger.php │ │ ├── arial.ttf │ │ ├── captcha.php │ │ ├── compress.php │ │ ├── connect.php │ │ ├── func_lib.php │ │ ├── headers.php │ │ ├── index.html │ │ ├── paypal_trigger.php │ │ └── vb_register.php │ ├── scripts │ │ ├── character.php │ │ ├── index.html │ │ ├── misc.php │ │ ├── register.php │ │ ├── sendReward.php │ │ ├── shop.php │ │ └── vote.php │ └── template_loader.php ├── javascript │ ├── .htaccess │ ├── index.html │ ├── jquery.js │ ├── main.js │ └── slideshow.js ├── modules │ ├── account.php │ ├── alert.php │ ├── content.php │ ├── footer.php │ ├── index.html │ ├── login.php │ ├── menu.php │ ├── server_status.php │ ├── slideshow.php │ └── social.php ├── pages │ ├── .htaccess │ ├── 404.php │ ├── account.php │ ├── cart.php │ ├── changepass.php │ ├── confirmservice.php │ ├── donate.php │ ├── donateshop.php │ ├── faq.php │ ├── forgotpw.php │ ├── home.php │ ├── index.html │ ├── instancereset.php │ ├── login.php │ ├── logout.php │ ├── news.php │ ├── raf.php │ ├── register.php │ ├── revive.php │ ├── service.php │ ├── settings.php │ ├── support.php │ ├── teleport.php │ ├── unstuck.php │ ├── vote.php │ └── voteshop.php ├── plugins │ ├── currencyconvert │ │ ├── info.php │ │ ├── javascript │ │ │ └── convert.js │ │ └── pages │ │ │ └── convert.php │ ├── index.html │ └── playersonline │ │ ├── config.php │ │ ├── info.php │ │ ├── modules │ │ └── playersonline.php │ │ └── pages │ │ └── playersonline.php └── styles │ ├── .htaccess │ ├── bananas │ ├── images │ │ ├── Thumbs.db │ │ ├── _notes │ │ │ └── bg.jpg.mno │ │ ├── account_func_bg.png │ │ ├── account_func_bg_hover.png │ │ ├── arrow.png │ │ ├── arrows.png │ │ ├── bg.jpg │ │ ├── botBar.png │ │ ├── box_one_title.png │ │ ├── bullets.png │ │ ├── close.png │ │ ├── content_bg.png │ │ ├── content_left_bg.png │ │ ├── donate.png │ │ ├── index.html │ │ ├── loading.gif │ │ ├── menu_bg.png │ │ ├── menu_item_hover.png │ │ ├── popupCloseBtn.png │ │ ├── post_page.png │ │ ├── srv_status_alliance.png │ │ ├── srv_status_horde.png │ │ ├── submit_bg.png │ │ ├── submit_bg_hover.png │ │ ├── topBar.png │ │ └── unknown.png │ ├── index.html │ ├── style.css │ └── template.html │ ├── default │ ├── images │ │ ├── _notes │ │ │ └── bg.jpg.mno │ │ ├── account_func_bg.png │ │ ├── account_func_bg_hover.png │ │ ├── arrow.png │ │ ├── bg.jpg │ │ ├── botBar.png │ │ ├── box_one_title.png │ │ ├── close.png │ │ ├── content_bg.png │ │ ├── content_left_bg.png │ │ ├── donate.png │ │ ├── index.html │ │ ├── menu_bg.png │ │ ├── menu_item_hover.png │ │ ├── popupCloseBtn.png │ │ ├── post_page.png │ │ ├── srv_status_alliance.png │ │ ├── srv_status_horde.png │ │ ├── submit_bg.png │ │ ├── submit_bg_hover.png │ │ ├── topBar.png │ │ └── unknown.png │ ├── index.html │ ├── style.css │ └── template.html │ ├── default_bootstrap │ ├── images │ │ ├── _notes │ │ │ └── bg.jpg.mno │ │ ├── account_func_bg.png │ │ ├── account_func_bg_hover.png │ │ ├── arrow.png │ │ ├── bg.jpg │ │ ├── botBar.png │ │ ├── box_one_title.png │ │ ├── close.png │ │ ├── content_bg.png │ │ ├── content_left_bg.png │ │ ├── donate.png │ │ ├── index.html │ │ ├── menu_bg.png │ │ ├── menu_item_hover.png │ │ ├── popupCloseBtn.png │ │ ├── post_page.png │ │ ├── srv_status_alliance.png │ │ ├── srv_status_horde.png │ │ ├── submit_bg.png │ │ ├── submit_bg_hover.png │ │ ├── topBar.png │ │ └── unknown.png │ ├── index.html │ ├── style.css │ └── template.html │ ├── global │ ├── images │ │ ├── ajax-loader.gif │ │ ├── icon_border_large.png │ │ ├── icon_border_medium.png │ │ ├── icons │ │ │ ├── appearance.png │ │ │ ├── arena.png │ │ │ ├── character_migration.png │ │ │ ├── class │ │ │ │ ├── 1.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 8.gif │ │ │ │ └── 9.gif │ │ │ ├── faction │ │ │ │ ├── 0.gif │ │ │ │ └── 1.gif │ │ │ ├── factions.png │ │ │ ├── gift.png │ │ │ ├── name_change.png │ │ │ ├── omen.png │ │ │ ├── parental.png │ │ │ ├── ptr.png │ │ │ ├── race │ │ │ │ ├── 1-0.gif │ │ │ │ ├── 1-1.gif │ │ │ │ ├── 10-0.gif │ │ │ │ ├── 10-1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11-0.gif │ │ │ │ ├── 11-1.gif │ │ │ │ ├── 2-0.gif │ │ │ │ ├── 2-1.gif │ │ │ │ ├── 3-0.gif │ │ │ │ ├── 3-1.gif │ │ │ │ ├── 4-0.gif │ │ │ │ ├── 4-1.gif │ │ │ │ ├── 5-0.gif │ │ │ │ ├── 5-1.gif │ │ │ │ ├── 6-0.gif │ │ │ │ ├── 6-1.gif │ │ │ │ ├── 7-0.gif │ │ │ │ ├── 7-1.gif │ │ │ │ ├── 8-0.gif │ │ │ │ └── 8-1.gif │ │ │ ├── race_change.png │ │ │ ├── raf.png │ │ │ ├── revive.png │ │ │ ├── spell_arcane_portaldalaran.jpg │ │ │ ├── spell_arcane_portaldarnassus.jpg │ │ │ ├── spell_arcane_portalexodar.jpg │ │ │ ├── spell_arcane_portalironforge.jpg │ │ │ ├── spell_arcane_portalorgrimmar.jpg │ │ │ ├── spell_arcane_portalshattrath.jpg │ │ │ ├── spell_arcane_portalsilvermoon.jpg │ │ │ ├── spell_arcane_portalstonard.jpg │ │ │ ├── spell_arcane_portalstormwind.jpg │ │ │ ├── spell_arcane_portaltheramore.jpg │ │ │ ├── spell_arcane_portalthunderbluff.jpg │ │ │ ├── spell_arcane_portalundercity.jpg │ │ │ ├── spell_arcane_teleportdalaran.jpg │ │ │ ├── spell_arcane_teleportdarnassus.jpg │ │ │ ├── spell_arcane_teleportexodar.jpg │ │ │ ├── spell_arcane_teleportironforge.jpg │ │ │ ├── spell_arcane_teleportmoonglade.jpg │ │ │ ├── spell_arcane_teleportorgrimmar.jpg │ │ │ ├── spell_arcane_teleportshattrath.jpg │ │ │ ├── spell_arcane_teleportsilvermoon.jpg │ │ │ ├── spell_arcane_teleportstonard.jpg │ │ │ ├── spell_arcane_teleportstormwind.jpg │ │ │ ├── spell_arcane_teleporttheramore.jpg │ │ │ ├── spell_arcane_teleportthunderbluff.jpg │ │ │ ├── spell_arcane_teleportundercity.jpg │ │ │ ├── time.png │ │ │ ├── transfer.png │ │ │ ├── visa.png │ │ │ └── wow.png │ │ ├── index.html │ │ ├── logo.png │ │ ├── overlay.png │ │ ├── paypal.png │ │ ├── portraits │ │ │ ├── 0-1-1.gif │ │ │ ├── 0-1-2.gif │ │ │ ├── 0-1-4.gif │ │ │ ├── 0-1-5.gif │ │ │ ├── 0-1-6.gif │ │ │ ├── 0-1-8.gif │ │ │ ├── 0-1-9.gif │ │ │ ├── 0-10-2.gif │ │ │ ├── 0-10-3.gif │ │ │ ├── 0-10-4.gif │ │ │ ├── 0-10-5.gif │ │ │ ├── 0-10-6.gif │ │ │ ├── 0-10-8.gif │ │ │ ├── 0-10-9.gif │ │ │ ├── 0-11-1.gif │ │ │ ├── 0-11-2.gif │ │ │ ├── 0-11-3.gif │ │ │ ├── 0-11-5.gif │ │ │ ├── 0-11-6.gif │ │ │ ├── 0-11-7.gif │ │ │ ├── 0-11-8.gif │ │ │ ├── 0-2-1.gif │ │ │ ├── 0-2-3.gif │ │ │ ├── 0-2-4.gif │ │ │ ├── 0-2-6.gif │ │ │ ├── 0-2-7.gif │ │ │ ├── 0-2-9.gif │ │ │ ├── 0-3-1.gif │ │ │ ├── 0-3-2.gif │ │ │ ├── 0-3-3.gif │ │ │ ├── 0-3-4.gif │ │ │ ├── 0-3-5.gif │ │ │ ├── 0-3-6.gif │ │ │ ├── 0-4-1.gif │ │ │ ├── 0-4-11.gif │ │ │ ├── 0-4-3.gif │ │ │ ├── 0-4-4.gif │ │ │ ├── 0-4-5.gif │ │ │ ├── 0-4-6.gif │ │ │ ├── 0-5-1.gif │ │ │ ├── 0-5-4.gif │ │ │ ├── 0-5-5.gif │ │ │ ├── 0-5-6.gif │ │ │ ├── 0-5-8.gif │ │ │ ├── 0-5-9.gif │ │ │ ├── 0-6-1.gif │ │ │ ├── 0-6-11.gif │ │ │ ├── 0-6-3.gif │ │ │ ├── 0-6-6.gif │ │ │ ├── 0-6-7.gif │ │ │ ├── 0-7-1.gif │ │ │ ├── 0-7-4.gif │ │ │ ├── 0-7-6.gif │ │ │ ├── 0-7-8.gif │ │ │ ├── 0-7-9.gif │ │ │ ├── 0-8-1.gif │ │ │ ├── 0-8-3.gif │ │ │ ├── 0-8-4.gif │ │ │ ├── 0-8-5.gif │ │ │ ├── 0-8-6.gif │ │ │ ├── 0-8-7.gif │ │ │ ├── 0-8-8.gif │ │ │ ├── 1-1-1.gif │ │ │ ├── 1-1-2.gif │ │ │ ├── 1-1-4.gif │ │ │ ├── 1-1-5.gif │ │ │ ├── 1-1-6.gif │ │ │ ├── 1-1-8.gif │ │ │ ├── 1-1-9.gif │ │ │ ├── 1-10-2.gif │ │ │ ├── 1-10-3.gif │ │ │ ├── 1-10-4.gif │ │ │ ├── 1-10-5.gif │ │ │ ├── 1-10-6.gif │ │ │ ├── 1-10-8.gif │ │ │ ├── 1-10-9.gif │ │ │ ├── 1-11-1.gif │ │ │ ├── 1-11-2.gif │ │ │ ├── 1-11-3.gif │ │ │ ├── 1-11-5.gif │ │ │ ├── 1-11-6.gif │ │ │ ├── 1-11-7.gif │ │ │ ├── 1-11-8.gif │ │ │ ├── 1-2-1.gif │ │ │ ├── 1-2-3.gif │ │ │ ├── 1-2-4.gif │ │ │ ├── 1-2-6.gif │ │ │ ├── 1-2-7.gif │ │ │ ├── 1-2-9.gif │ │ │ ├── 1-3-1.gif │ │ │ ├── 1-3-2.gif │ │ │ ├── 1-3-3.gif │ │ │ ├── 1-3-4.gif │ │ │ ├── 1-3-5.gif │ │ │ ├── 1-3-6.gif │ │ │ ├── 1-4-1.gif │ │ │ ├── 1-4-11.gif │ │ │ ├── 1-4-3.gif │ │ │ ├── 1-4-4.gif │ │ │ ├── 1-4-5.gif │ │ │ ├── 1-4-6.gif │ │ │ ├── 1-5-1.gif │ │ │ ├── 1-5-4.gif │ │ │ ├── 1-5-5.gif │ │ │ ├── 1-5-6.gif │ │ │ ├── 1-5-8.gif │ │ │ ├── 1-5-9.gif │ │ │ ├── 1-6-1.gif │ │ │ ├── 1-6-11.gif │ │ │ ├── 1-6-3.gif │ │ │ ├── 1-6-6.gif │ │ │ ├── 1-6-7.gif │ │ │ ├── 1-7-1.gif │ │ │ ├── 1-7-4.gif │ │ │ ├── 1-7-6.gif │ │ │ ├── 1-7-8.gif │ │ │ ├── 1-7-9.gif │ │ │ ├── 1-8-1.gif │ │ │ ├── 1-8-3.gif │ │ │ ├── 1-8-4.gif │ │ │ ├── 1-8-5.gif │ │ │ ├── 1-8-6.gif │ │ │ ├── 1-8-7.gif │ │ │ ├── 1-8-8.gif │ │ │ └── index.html │ │ └── typo │ │ │ ├── accept.png │ │ │ ├── alert.png │ │ │ ├── approved.png │ │ │ ├── attention.png │ │ │ ├── camera.png │ │ │ ├── cart.png │ │ │ ├── coins.png │ │ │ ├── doc.png │ │ │ ├── download.png │ │ │ ├── email.jpeg │ │ │ ├── email.png │ │ │ ├── media.png │ │ │ ├── note.png │ │ │ └── notice.png │ ├── index.html │ ├── slideshow │ │ └── images │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ └── index.html │ ├── style.css │ └── template.html │ ├── global_bootstrap │ ├── images │ │ ├── ajax-loader.gif │ │ ├── icon_border_large.png │ │ ├── icon_border_medium.png │ │ ├── icons │ │ │ ├── appearance.png │ │ │ ├── arena.png │ │ │ ├── character_migration.png │ │ │ ├── class │ │ │ │ ├── 1.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 8.gif │ │ │ │ └── 9.gif │ │ │ ├── faction │ │ │ │ ├── 0.gif │ │ │ │ └── 1.gif │ │ │ ├── factions.png │ │ │ ├── gift.png │ │ │ ├── name_change.png │ │ │ ├── omen.png │ │ │ ├── parental.png │ │ │ ├── ptr.png │ │ │ ├── race │ │ │ │ ├── 1-0.gif │ │ │ │ ├── 1-1.gif │ │ │ │ ├── 10-0.gif │ │ │ │ ├── 10-1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11-0.gif │ │ │ │ ├── 11-1.gif │ │ │ │ ├── 2-0.gif │ │ │ │ ├── 2-1.gif │ │ │ │ ├── 3-0.gif │ │ │ │ ├── 3-1.gif │ │ │ │ ├── 4-0.gif │ │ │ │ ├── 4-1.gif │ │ │ │ ├── 5-0.gif │ │ │ │ ├── 5-1.gif │ │ │ │ ├── 6-0.gif │ │ │ │ ├── 6-1.gif │ │ │ │ ├── 7-0.gif │ │ │ │ ├── 7-1.gif │ │ │ │ ├── 8-0.gif │ │ │ │ └── 8-1.gif │ │ │ ├── race_change.png │ │ │ ├── raf.png │ │ │ ├── revive.png │ │ │ ├── spell_arcane_portaldalaran.jpg │ │ │ ├── spell_arcane_portaldarnassus.jpg │ │ │ ├── spell_arcane_portalexodar.jpg │ │ │ ├── spell_arcane_portalironforge.jpg │ │ │ ├── spell_arcane_portalorgrimmar.jpg │ │ │ ├── spell_arcane_portalshattrath.jpg │ │ │ ├── spell_arcane_portalsilvermoon.jpg │ │ │ ├── spell_arcane_portalstonard.jpg │ │ │ ├── spell_arcane_portalstormwind.jpg │ │ │ ├── spell_arcane_portaltheramore.jpg │ │ │ ├── spell_arcane_portalthunderbluff.jpg │ │ │ ├── spell_arcane_portalundercity.jpg │ │ │ ├── spell_arcane_teleportdalaran.jpg │ │ │ ├── spell_arcane_teleportdarnassus.jpg │ │ │ ├── spell_arcane_teleportexodar.jpg │ │ │ ├── spell_arcane_teleportironforge.jpg │ │ │ ├── spell_arcane_teleportmoonglade.jpg │ │ │ ├── spell_arcane_teleportorgrimmar.jpg │ │ │ ├── spell_arcane_teleportshattrath.jpg │ │ │ ├── spell_arcane_teleportsilvermoon.jpg │ │ │ ├── spell_arcane_teleportstonard.jpg │ │ │ ├── spell_arcane_teleportstormwind.jpg │ │ │ ├── spell_arcane_teleporttheramore.jpg │ │ │ ├── spell_arcane_teleportthunderbluff.jpg │ │ │ ├── spell_arcane_teleportundercity.jpg │ │ │ ├── time.png │ │ │ ├── transfer.png │ │ │ ├── visa.png │ │ │ └── wow.png │ │ ├── index.html │ │ ├── logo.png │ │ ├── overlay.png │ │ ├── paypal.png │ │ ├── portraits │ │ │ ├── 0-1-1.gif │ │ │ ├── 0-1-2.gif │ │ │ ├── 0-1-4.gif │ │ │ ├── 0-1-5.gif │ │ │ ├── 0-1-6.gif │ │ │ ├── 0-1-8.gif │ │ │ ├── 0-1-9.gif │ │ │ ├── 0-10-2.gif │ │ │ ├── 0-10-3.gif │ │ │ ├── 0-10-4.gif │ │ │ ├── 0-10-5.gif │ │ │ ├── 0-10-6.gif │ │ │ ├── 0-10-8.gif │ │ │ ├── 0-10-9.gif │ │ │ ├── 0-11-1.gif │ │ │ ├── 0-11-2.gif │ │ │ ├── 0-11-3.gif │ │ │ ├── 0-11-5.gif │ │ │ ├── 0-11-6.gif │ │ │ ├── 0-11-7.gif │ │ │ ├── 0-11-8.gif │ │ │ ├── 0-2-1.gif │ │ │ ├── 0-2-3.gif │ │ │ ├── 0-2-4.gif │ │ │ ├── 0-2-6.gif │ │ │ ├── 0-2-7.gif │ │ │ ├── 0-2-9.gif │ │ │ ├── 0-3-1.gif │ │ │ ├── 0-3-2.gif │ │ │ ├── 0-3-3.gif │ │ │ ├── 0-3-4.gif │ │ │ ├── 0-3-5.gif │ │ │ ├── 0-3-6.gif │ │ │ ├── 0-4-1.gif │ │ │ ├── 0-4-11.gif │ │ │ ├── 0-4-3.gif │ │ │ ├── 0-4-4.gif │ │ │ ├── 0-4-5.gif │ │ │ ├── 0-4-6.gif │ │ │ ├── 0-5-1.gif │ │ │ ├── 0-5-4.gif │ │ │ ├── 0-5-5.gif │ │ │ ├── 0-5-6.gif │ │ │ ├── 0-5-8.gif │ │ │ ├── 0-5-9.gif │ │ │ ├── 0-6-1.gif │ │ │ ├── 0-6-11.gif │ │ │ ├── 0-6-3.gif │ │ │ ├── 0-6-6.gif │ │ │ ├── 0-6-7.gif │ │ │ ├── 0-7-1.gif │ │ │ ├── 0-7-4.gif │ │ │ ├── 0-7-6.gif │ │ │ ├── 0-7-8.gif │ │ │ ├── 0-7-9.gif │ │ │ ├── 0-8-1.gif │ │ │ ├── 0-8-3.gif │ │ │ ├── 0-8-4.gif │ │ │ ├── 0-8-5.gif │ │ │ ├── 0-8-6.gif │ │ │ ├── 0-8-7.gif │ │ │ ├── 0-8-8.gif │ │ │ ├── 1-1-1.gif │ │ │ ├── 1-1-2.gif │ │ │ ├── 1-1-4.gif │ │ │ ├── 1-1-5.gif │ │ │ ├── 1-1-6.gif │ │ │ ├── 1-1-8.gif │ │ │ ├── 1-1-9.gif │ │ │ ├── 1-10-2.gif │ │ │ ├── 1-10-3.gif │ │ │ ├── 1-10-4.gif │ │ │ ├── 1-10-5.gif │ │ │ ├── 1-10-6.gif │ │ │ ├── 1-10-8.gif │ │ │ ├── 1-10-9.gif │ │ │ ├── 1-11-1.gif │ │ │ ├── 1-11-2.gif │ │ │ ├── 1-11-3.gif │ │ │ ├── 1-11-5.gif │ │ │ ├── 1-11-6.gif │ │ │ ├── 1-11-7.gif │ │ │ ├── 1-11-8.gif │ │ │ ├── 1-2-1.gif │ │ │ ├── 1-2-3.gif │ │ │ ├── 1-2-4.gif │ │ │ ├── 1-2-6.gif │ │ │ ├── 1-2-7.gif │ │ │ ├── 1-2-9.gif │ │ │ ├── 1-3-1.gif │ │ │ ├── 1-3-2.gif │ │ │ ├── 1-3-3.gif │ │ │ ├── 1-3-4.gif │ │ │ ├── 1-3-5.gif │ │ │ ├── 1-3-6.gif │ │ │ ├── 1-4-1.gif │ │ │ ├── 1-4-11.gif │ │ │ ├── 1-4-3.gif │ │ │ ├── 1-4-4.gif │ │ │ ├── 1-4-5.gif │ │ │ ├── 1-4-6.gif │ │ │ ├── 1-5-1.gif │ │ │ ├── 1-5-4.gif │ │ │ ├── 1-5-5.gif │ │ │ ├── 1-5-6.gif │ │ │ ├── 1-5-8.gif │ │ │ ├── 1-5-9.gif │ │ │ ├── 1-6-1.gif │ │ │ ├── 1-6-11.gif │ │ │ ├── 1-6-3.gif │ │ │ ├── 1-6-6.gif │ │ │ ├── 1-6-7.gif │ │ │ ├── 1-7-1.gif │ │ │ ├── 1-7-4.gif │ │ │ ├── 1-7-6.gif │ │ │ ├── 1-7-8.gif │ │ │ ├── 1-7-9.gif │ │ │ ├── 1-8-1.gif │ │ │ ├── 1-8-3.gif │ │ │ ├── 1-8-4.gif │ │ │ ├── 1-8-5.gif │ │ │ ├── 1-8-6.gif │ │ │ ├── 1-8-7.gif │ │ │ ├── 1-8-8.gif │ │ │ └── index.html │ │ └── typo │ │ │ ├── accept.png │ │ │ ├── alert.png │ │ │ ├── approved.png │ │ │ ├── attention.png │ │ │ ├── camera.png │ │ │ ├── cart.png │ │ │ ├── coins.png │ │ │ ├── doc.png │ │ │ ├── download.png │ │ │ ├── email.jpeg │ │ │ ├── email.png │ │ │ ├── media.png │ │ │ ├── note.png │ │ │ └── notice.png │ ├── index.html │ ├── slideshow │ │ └── images │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ └── index.html │ ├── style.css │ └── template.html │ └── index.html ├── index.php ├── install ├── functions.php ├── index.php ├── install.php ├── main.css ├── scripts.js ├── sql │ ├── .htaccess │ ├── CraftedWeb_Base.sql │ ├── index.html │ ├── item_icons.sql │ └── updates │ │ └── index.html └── steps │ ├── 1.php │ ├── 2.php │ ├── 3.php │ ├── 4.php │ ├── 5.php │ └── 6.php ├── preview └── installer.png └── staff ├── includes ├── index.html └── loader.php └── index.php /.gitignore: -------------------------------------------------------------------------------- 1 | /.phpintel/* 2 | /core/includes/configuration.php 3 | /core/includes/scripts/error.log 4 | /error.log 5 | /admin/error.log 6 | /staff/error.log 7 | /core/aasp_includes/scripts/error.log 8 | /test.php 9 | /installed 10 | /.vscode/* 11 | /core/includes/configuration.json 12 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | 3 | RewriteRule ^(.*)$ $1 [NS,E=no-gzip:1,E=dont-vary:1,L] -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- 1 | configuration.json 2 | Remove ['website'] 3 | Change use_debug to ['use'] 4 | Add ['tooltip_href'] 5 | Change website->donation->donation_type -> type 6 | Add ['service'] teleport, instant80, unstuck, change faction with currency, price, 7 | Add core/plugins/playersonline/config.php values 8 | Add modules array 9 | 10 | Core 11 | Includes 12 | Classes 13 | Account.php 14 | - Change the output of `isLoggedIn` to boolean 15 | - Remove `isNotLoggedIn` 16 | - Rename `isNotGmLoggedIn` to `isAdmin` with `boolean` output -------------------------------------------------------------------------------- /admin/includes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/admin/includes/index.html -------------------------------------------------------------------------------- /core/aasp_includes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/index.html -------------------------------------------------------------------------------- /core/aasp_includes/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/js/index.html -------------------------------------------------------------------------------- /core/aasp_includes/js/wysiwyg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/js/wysiwyg/index.html -------------------------------------------------------------------------------- /core/aasp_includes/pages/404.php: -------------------------------------------------------------------------------- 1 | 22 |