├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── addons └── helloworld │ ├── config │ ├── access.php │ └── addon.php │ ├── lang │ ├── en_us.php │ └── ko_kr.php │ ├── modules │ └── helloworld │ │ └── index.php │ └── themes │ ├── default │ └── helloworld │ │ └── index.php │ └── emphaino │ └── helloworld │ └── index.php ├── config ├── .htaccess ├── access.php ├── application.php ├── attributes.php ├── castlenames.php ├── elements.php ├── equip_jobs.php ├── equip_location_combinations.php ├── equip_locations.php ├── equip_upper.php ├── error.php ├── groups.php ├── homunculus.php ├── itemtypes.php ├── itemtypes2.php ├── jobs.php ├── jobs_alchemist.php ├── jobs_blacksmith.php ├── jobs_gender_linked.php ├── loginerrors.php ├── monstermode.php ├── picktypes.php ├── races.php ├── servers.php ├── shopcategories.php └── sizes.php ├── data ├── captcha │ ├── background.png │ ├── fonts │ │ ├── default.ttf │ │ └── index.html │ └── index.html ├── emblem │ ├── empty.bmp │ └── index.html ├── index.html ├── items │ ├── icons │ │ └── index.html │ ├── images │ │ └── index.html │ └── index.html ├── itemshop │ └── index.html ├── jobs │ ├── images │ │ ├── F │ │ │ └── index.html │ │ ├── M │ │ │ └── index.html │ │ └── index.html │ └── index.html ├── logs │ └── index.html ├── monsters │ └── index.html ├── npc │ ├── DonationNPC.txt │ └── index.html ├── paypal │ ├── button.php │ └── index.html ├── schemas │ ├── charmapdb │ │ ├── cp_charprefs.20080929191525.sql │ │ ├── cp_charprefs.20081109093448.sql │ │ ├── cp_charprefs.20120816150540.sql │ │ ├── cp_itemshop.20080928225124.sql │ │ ├── cp_itemshop.20081109093448.sql │ │ ├── cp_itemshop.20081128093449.sql │ │ ├── cp_itemshop.20090104190020.sql │ │ ├── cp_redeemlog.20080928225124.sql │ │ ├── cp_redeemlog.20081001054354.sql │ │ ├── cp_redeemlog.20081109093448.sql │ │ ├── cp_xferlog.20080928225124.sql │ │ ├── cp_xferlog.20081109093448.sql │ │ └── index.html │ ├── index.html │ └── logindb │ │ ├── cp_banlog.20080928225124.sql │ │ ├── cp_banlog.20081109093448.sql │ │ ├── cp_createlog.20080928225124.sql │ │ ├── cp_createlog.20081012100127.sql │ │ ├── cp_createlog.20081012100128.sql │ │ ├── cp_createlog.20081109093448.sql │ │ ├── cp_credits.20080928225124.sql │ │ ├── cp_credits.20081109093448.sql │ │ ├── cp_emailchange.20081103093448.sql │ │ ├── cp_emailchange.20081104093448.sql │ │ ├── cp_ipbanlog.20120816150540.sql │ │ ├── cp_loginlog.20081109093448.sql │ │ ├── cp_loginlog.20081109093449.sql │ │ ├── cp_loginprefs.20080929191525.sql │ │ ├── cp_loginprefs.20081109093448.sql │ │ ├── cp_pwchange.20081109093448.sql │ │ ├── cp_pwchange.20081109093449.sql │ │ ├── cp_resetpass.20081109093448.sql │ │ ├── cp_resetpass.20081109093449.sql │ │ ├── cp_trusted.20080928225124.sql │ │ ├── cp_trusted.20081109093448.sql │ │ ├── cp_txnlog.20080928225124.sql │ │ ├── cp_txnlog.20081109093448.sql │ │ ├── cp_txnlog.20081109093449.sql │ │ ├── cp_txnlog.20081109093450.sql │ │ ├── cp_txnlog.20081109093451.sql │ │ ├── cp_txnlog.20081109093452.sql │ │ └── index.html ├── templates │ ├── changemail.php │ ├── confirm.php │ ├── index.html │ ├── newpass.php │ └── resetpass.php └── tmp │ └── index.html ├── error.php ├── index.php ├── lang ├── en_us.php ├── es_es.php └── pt_br.php ├── lib ├── Flux.php ├── Flux │ ├── Addon.php │ ├── Athena.php │ ├── Authorization.php │ ├── BaseServer.php │ ├── Captcha.php │ ├── CharServer.php │ ├── Config.php │ ├── Connection.php │ ├── Connection │ │ ├── Statement.php │ │ └── index.html │ ├── DataObject.php │ ├── Dispatcher.php │ ├── EmblemExporter.php │ ├── Error.php │ ├── Installer.php │ ├── Installer │ │ ├── CharMapServer.php │ │ ├── MainServer.php │ │ ├── Schema.php │ │ ├── SchemaPermissionError.php │ │ └── index.html │ ├── ItemExistsError.php │ ├── ItemShop.php │ ├── ItemShop │ │ ├── Cart.php │ │ └── index.html │ ├── LogFile.php │ ├── LoginAthenaGroup.php │ ├── LoginError.php │ ├── LoginServer.php │ ├── Mailer.php │ ├── MapServer.php │ ├── Paginator.php │ ├── PaymentNotifyRequest.php │ ├── PermissionError.php │ ├── RegisterError.php │ ├── Security.php │ ├── SessionData.php │ ├── Template.php │ ├── TemporaryTable.php │ └── index.html ├── functions │ ├── getReposVersion.php │ ├── imagecreatefrombmpstring.php │ └── index.html ├── index.html ├── markdown │ ├── LICENSE │ ├── index.html │ └── markdown.php ├── phpmailer │ ├── LICENSE │ ├── class.phpmailer.php │ ├── class.pop3.php │ ├── class.smtp.php │ ├── index.html │ └── language │ │ ├── index.html │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-br.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-ch.php │ │ ├── phpmailer.lang-cz.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-dk.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-no.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-se.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-zh.php │ │ └── phpmailer.lang-zh_cn.php └── recaptcha │ └── recaptchalib.php ├── modules ├── .htaccess ├── account │ ├── cart.php │ ├── changemail.php │ ├── changepass.php │ ├── changesex.php │ ├── confirm.php │ ├── confirmemail.php │ ├── create.php │ ├── edit.php │ ├── index.php │ ├── login.php │ ├── logout.php │ ├── pagemenu │ │ └── view.php │ ├── prune.php │ ├── resend.php │ ├── resetpass.php │ ├── resetpw.php │ ├── transfer.php │ ├── view.php │ └── xferlog.php ├── auction │ └── index.php ├── captcha │ └── index.php ├── castle │ └── index.php ├── character │ ├── changeslot.php │ ├── divorce.php │ ├── index.php │ ├── mapstats.php │ ├── online.php │ ├── pagemenu │ │ └── view.php │ ├── prefs.php │ ├── resetlook.php │ ├── resetpos.php │ └── view.php ├── cplog │ ├── ban.php │ ├── changemail.php │ ├── changepass.php │ ├── index.php │ ├── ipban.php │ ├── login.php │ ├── paypal.php │ ├── resetpass.php │ └── txnview.php ├── donate │ ├── complete.php │ ├── history.php │ ├── index.php │ ├── notify.php │ ├── trusted.php │ └── update.php ├── economy │ └── index.php ├── errors │ ├── missing_action.php │ └── missing_view.php ├── guild │ ├── emblem.php │ ├── export.php │ ├── index.php │ └── view.php ├── history │ ├── cplogin.php │ ├── emailchange.php │ ├── gamelogin.php │ ├── index.php │ ├── passchange.php │ └── passreset.php ├── install │ ├── index.php │ └── reinstall.php ├── ipban │ ├── add.php │ ├── edit.php │ ├── index.php │ ├── remove.php │ └── unban.php ├── item │ ├── add.php │ ├── copy.php │ ├── edit.php │ ├── index.php │ ├── pagemenu │ │ └── view.php │ └── view.php ├── itemshop │ ├── add.php │ ├── delete.php │ ├── edit.php │ └── imagedel.php ├── logdata │ ├── chat.php │ ├── command.php │ ├── index.php │ ├── login.php │ ├── pick.php │ └── zeny.php ├── mail │ └── index.php ├── main │ ├── index.php │ ├── page_not_found.php │ └── preprocess.php ├── monster │ ├── index.php │ └── view.php ├── purchase │ ├── add.php │ ├── cart.php │ ├── checkout.php │ ├── clear.php │ ├── index.php │ ├── pending.php │ └── remove.php ├── ranking │ ├── alchemist.php │ ├── blacksmith.php │ ├── character.php │ ├── death.php │ ├── guild.php │ └── zeny.php ├── server │ ├── info.php │ ├── status-xml.php │ └── status.php ├── service │ └── tos.php ├── unauthorized │ └── index.php └── woe │ ├── custom.php │ └── index.php └── themes ├── default ├── account │ ├── cart.php │ ├── changemail.php │ ├── changepass.php │ ├── changesex.php │ ├── confirm.php │ ├── confirmemail.php │ ├── create.php │ ├── edit.php │ ├── index.php │ ├── login.php │ ├── logout.php │ ├── prune.php │ ├── resend.php │ ├── resetpass.php │ ├── resetpw.php │ ├── transfer.php │ ├── view.php │ └── xferlog.php ├── auction │ └── index.php ├── captcha │ └── index.php ├── castle │ └── index.php ├── character │ ├── changeslot.php │ ├── divorce.php │ ├── index.php │ ├── mapstats.php │ ├── online.php │ ├── prefs.php │ ├── resetlook.php │ ├── resetpos.php │ └── view.php ├── cplog │ ├── ban.php │ ├── changemail.php │ ├── changepass.php │ ├── index.php │ ├── ipban.php │ ├── login.php │ ├── paypal.php │ ├── resetpass.php │ └── txnview.php ├── css │ ├── flux.css │ └── flux │ │ ├── ie.css │ │ ├── recaptcha.css │ │ └── unitip.css ├── data │ └── FluxDefaultTheme.psd ├── donate │ ├── complete.php │ ├── history.php │ ├── index.php │ ├── notify.php │ ├── trusted.php │ └── update.php ├── economy │ └── index.php ├── errors │ ├── missing_action.php │ └── missing_view.php ├── footer.php ├── guild │ ├── emblem.php │ ├── export.php │ ├── index.php │ └── view.php ├── header.php ├── history │ ├── cplogin.php │ ├── emailchange.php │ ├── gamelogin.php │ ├── index.php │ ├── passchange.php │ └── passreset.php ├── img │ ├── TipCap.png │ ├── TipMid.png │ ├── TipPoint.png │ ├── clear.gif │ ├── content_bl.gif │ ├── content_br.gif │ ├── content_tl.gif │ ├── content_tr.gif │ ├── loginbox_bl.gif │ ├── loginbox_br.gif │ ├── loginbox_tl.gif │ ├── loginbox_tr.gif │ ├── logo.gif │ ├── logo_admin.gif │ ├── sidebar_admin_complete_bottom.gif │ ├── sidebar_admin_complete_top.gif │ ├── sidebar_bl.gif │ ├── sidebar_bottom.gif │ ├── sidebar_br.gif │ ├── sidebar_complete_bottom.gif │ ├── sidebar_complete_top.gif │ ├── sidebar_tl.gif │ ├── sidebar_top.gif │ ├── sidebar_tr.gif │ └── spinner.gif ├── install │ └── reinstall.php ├── ipban │ ├── add.php │ ├── edit.php │ ├── index.php │ ├── remove.php │ └── unban.php ├── item │ ├── add.php │ ├── copy.php │ ├── edit.php │ ├── index.php │ └── view.php ├── itemshop │ ├── add.php │ ├── delete.php │ ├── edit.php │ └── imagedel.php ├── js │ ├── flux.datefields.js │ ├── flux.unitip.js │ ├── flux.unitpngfix.js │ ├── ie9.js │ └── jquery-1.8.3.min.js ├── logdata │ ├── chat.php │ ├── command.php │ ├── index.php │ ├── login.php │ ├── pick.php │ └── zeny.php ├── mail │ └── index.php ├── main │ ├── balance.php │ ├── index.php │ ├── loginbox.php │ ├── page_not_found.php │ ├── pagemenu.php │ ├── sidebar.php │ └── submenu.php ├── monster │ ├── index.php │ └── view.php ├── purchase │ ├── add.php │ ├── cart.php │ ├── checkout.php │ ├── clear.php │ ├── index.php │ ├── pending.php │ └── remove.php ├── ranking │ ├── alchemist.php │ ├── blacksmith.php │ ├── character.php │ ├── death.php │ ├── guild.php │ └── zeny.php ├── server │ ├── info.php │ ├── status-xml.php │ └── status.php ├── service │ └── tos.php ├── unauthorized │ └── index.php └── woe │ ├── custom.php │ └── index.php ├── emphaino ├── README.txt ├── css │ ├── flux │ │ └── recaptcha.css │ ├── ie.css │ └── style.css ├── footer.php ├── header.php ├── images │ └── fancy_deboss.png ├── img │ ├── TipCap.png │ ├── TipMid.png │ ├── TipPoint.png │ ├── clear.gif │ └── spinner.gif ├── js │ ├── html5.js │ └── jquery.js ├── lib │ └── fontello │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── config.json │ │ ├── css │ │ ├── animation.css │ │ ├── fontello-codes.css │ │ ├── fontello-embedded.css │ │ ├── fontello-ie7-codes.css │ │ ├── fontello-ie7.css │ │ └── fontello.css │ │ ├── demo.html │ │ └── font │ │ ├── fontello.eot │ │ ├── fontello.svg │ │ ├── fontello.ttf │ │ └── fontello.woff ├── license.txt ├── main │ ├── balance.php │ ├── footer-area.php │ ├── index.php │ ├── loginbox.php │ └── navigation.php └── manifest.php └── installer ├── footer.php ├── header.php └── install └── index.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/README.md -------------------------------------------------------------------------------- /addons/helloworld/config/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/addons/helloworld/config/access.php -------------------------------------------------------------------------------- /addons/helloworld/config/addon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/addons/helloworld/config/addon.php -------------------------------------------------------------------------------- /addons/helloworld/lang/en_us.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/addons/helloworld/lang/en_us.php -------------------------------------------------------------------------------- /addons/helloworld/lang/ko_kr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/addons/helloworld/lang/ko_kr.php -------------------------------------------------------------------------------- /addons/helloworld/modules/helloworld/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/addons/helloworld/modules/helloworld/index.php -------------------------------------------------------------------------------- /addons/helloworld/themes/default/helloworld/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/addons/helloworld/themes/default/helloworld/index.php -------------------------------------------------------------------------------- /addons/helloworld/themes/emphaino/helloworld/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/addons/helloworld/themes/emphaino/helloworld/index.php -------------------------------------------------------------------------------- /config/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/.htaccess -------------------------------------------------------------------------------- /config/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/access.php -------------------------------------------------------------------------------- /config/application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/application.php -------------------------------------------------------------------------------- /config/attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/attributes.php -------------------------------------------------------------------------------- /config/castlenames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/castlenames.php -------------------------------------------------------------------------------- /config/elements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/elements.php -------------------------------------------------------------------------------- /config/equip_jobs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/equip_jobs.php -------------------------------------------------------------------------------- /config/equip_location_combinations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/equip_location_combinations.php -------------------------------------------------------------------------------- /config/equip_locations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/equip_locations.php -------------------------------------------------------------------------------- /config/equip_upper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/equip_upper.php -------------------------------------------------------------------------------- /config/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/error.php -------------------------------------------------------------------------------- /config/groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/groups.php -------------------------------------------------------------------------------- /config/homunculus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/homunculus.php -------------------------------------------------------------------------------- /config/itemtypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/itemtypes.php -------------------------------------------------------------------------------- /config/itemtypes2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/itemtypes2.php -------------------------------------------------------------------------------- /config/jobs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/jobs.php -------------------------------------------------------------------------------- /config/jobs_alchemist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/jobs_alchemist.php -------------------------------------------------------------------------------- /config/jobs_blacksmith.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/jobs_blacksmith.php -------------------------------------------------------------------------------- /config/jobs_gender_linked.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/jobs_gender_linked.php -------------------------------------------------------------------------------- /config/loginerrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/loginerrors.php -------------------------------------------------------------------------------- /config/monstermode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/monstermode.php -------------------------------------------------------------------------------- /config/picktypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/picktypes.php -------------------------------------------------------------------------------- /config/races.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/races.php -------------------------------------------------------------------------------- /config/servers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/servers.php -------------------------------------------------------------------------------- /config/shopcategories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/shopcategories.php -------------------------------------------------------------------------------- /config/sizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/config/sizes.php -------------------------------------------------------------------------------- /data/captcha/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/captcha/background.png -------------------------------------------------------------------------------- /data/captcha/fonts/default.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/captcha/fonts/default.ttf -------------------------------------------------------------------------------- /data/captcha/fonts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/captcha/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/emblem/empty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/emblem/empty.bmp -------------------------------------------------------------------------------- /data/emblem/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/items/icons/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/items/images/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/items/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/itemshop/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/jobs/images/F/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/jobs/images/M/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/jobs/images/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/jobs/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/logs/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/monsters/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/npc/DonationNPC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/npc/DonationNPC.txt -------------------------------------------------------------------------------- /data/npc/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/paypal/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/paypal/button.php -------------------------------------------------------------------------------- /data/paypal/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/schemas/charmapdb/cp_charprefs.20080929191525.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/charmapdb/cp_charprefs.20080929191525.sql -------------------------------------------------------------------------------- /data/schemas/charmapdb/cp_charprefs.20081109093448.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/charmapdb/cp_charprefs.20081109093448.sql -------------------------------------------------------------------------------- /data/schemas/charmapdb/cp_charprefs.20120816150540.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `cp_charprefs` ADD INDEX (`char_id`); -------------------------------------------------------------------------------- /data/schemas/charmapdb/cp_itemshop.20080928225124.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/charmapdb/cp_itemshop.20080928225124.sql -------------------------------------------------------------------------------- /data/schemas/charmapdb/cp_itemshop.20081109093448.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/charmapdb/cp_itemshop.20081109093448.sql -------------------------------------------------------------------------------- /data/schemas/charmapdb/cp_itemshop.20081128093449.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `cp_itemshop` ADD INDEX ( `nameid` ) ; -------------------------------------------------------------------------------- /data/schemas/charmapdb/cp_itemshop.20090104190020.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/charmapdb/cp_itemshop.20090104190020.sql -------------------------------------------------------------------------------- /data/schemas/charmapdb/cp_redeemlog.20080928225124.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/charmapdb/cp_redeemlog.20080928225124.sql -------------------------------------------------------------------------------- /data/schemas/charmapdb/cp_redeemlog.20081001054354.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/charmapdb/cp_redeemlog.20081001054354.sql -------------------------------------------------------------------------------- /data/schemas/charmapdb/cp_redeemlog.20081109093448.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/charmapdb/cp_redeemlog.20081109093448.sql -------------------------------------------------------------------------------- /data/schemas/charmapdb/cp_xferlog.20080928225124.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/charmapdb/cp_xferlog.20080928225124.sql -------------------------------------------------------------------------------- /data/schemas/charmapdb/cp_xferlog.20081109093448.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/charmapdb/cp_xferlog.20081109093448.sql -------------------------------------------------------------------------------- /data/schemas/charmapdb/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/schemas/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/schemas/logindb/cp_banlog.20080928225124.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/logindb/cp_banlog.20080928225124.sql -------------------------------------------------------------------------------- /data/schemas/logindb/cp_banlog.20081109093448.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/logindb/cp_banlog.20081109093448.sql -------------------------------------------------------------------------------- /data/schemas/logindb/cp_createlog.20080928225124.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/logindb/cp_createlog.20080928225124.sql -------------------------------------------------------------------------------- /data/schemas/logindb/cp_createlog.20081012100127.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/logindb/cp_createlog.20081012100127.sql -------------------------------------------------------------------------------- /data/schemas/logindb/cp_createlog.20081012100128.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/logindb/cp_createlog.20081012100128.sql -------------------------------------------------------------------------------- /data/schemas/logindb/cp_createlog.20081109093448.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `cp_createlog` ADD INDEX ( `account_id` ) ; -------------------------------------------------------------------------------- /data/schemas/logindb/cp_credits.20080928225124.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/logindb/cp_credits.20080928225124.sql -------------------------------------------------------------------------------- /data/schemas/logindb/cp_credits.20081109093448.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `cp_credits` ADD INDEX ( `account_id` ) ; -------------------------------------------------------------------------------- /data/schemas/logindb/cp_emailchange.20081103093448.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/logindb/cp_emailchange.20081103093448.sql -------------------------------------------------------------------------------- /data/schemas/logindb/cp_emailchange.20081104093448.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `cp_emailchange` ADD INDEX ( `account_id` ) ; -------------------------------------------------------------------------------- /data/schemas/logindb/cp_ipbanlog.20120816150540.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/logindb/cp_ipbanlog.20120816150540.sql -------------------------------------------------------------------------------- /data/schemas/logindb/cp_loginlog.20081109093448.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/logindb/cp_loginlog.20081109093448.sql -------------------------------------------------------------------------------- /data/schemas/logindb/cp_loginlog.20081109093449.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/logindb/cp_loginlog.20081109093449.sql -------------------------------------------------------------------------------- /data/schemas/logindb/cp_loginprefs.20080929191525.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/logindb/cp_loginprefs.20080929191525.sql -------------------------------------------------------------------------------- /data/schemas/logindb/cp_loginprefs.20081109093448.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `cp_loginprefs` ADD INDEX ( `account_id` ) ; -------------------------------------------------------------------------------- /data/schemas/logindb/cp_pwchange.20081109093448.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/logindb/cp_pwchange.20081109093448.sql -------------------------------------------------------------------------------- /data/schemas/logindb/cp_pwchange.20081109093449.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `cp_pwchange` ADD INDEX ( `account_id` ) ; -------------------------------------------------------------------------------- /data/schemas/logindb/cp_resetpass.20081109093448.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/logindb/cp_resetpass.20081109093448.sql -------------------------------------------------------------------------------- /data/schemas/logindb/cp_resetpass.20081109093449.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `cp_resetpass` ADD INDEX ( `account_id` ) ; -------------------------------------------------------------------------------- /data/schemas/logindb/cp_trusted.20080928225124.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/logindb/cp_trusted.20080928225124.sql -------------------------------------------------------------------------------- /data/schemas/logindb/cp_trusted.20081109093448.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/logindb/cp_trusted.20081109093448.sql -------------------------------------------------------------------------------- /data/schemas/logindb/cp_txnlog.20080928225124.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/logindb/cp_txnlog.20080928225124.sql -------------------------------------------------------------------------------- /data/schemas/logindb/cp_txnlog.20081109093448.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `cp_txnlog` ADD INDEX ( `account_id` ) ; -------------------------------------------------------------------------------- /data/schemas/logindb/cp_txnlog.20081109093449.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/schemas/logindb/cp_txnlog.20081109093449.sql -------------------------------------------------------------------------------- /data/schemas/logindb/cp_txnlog.20081109093450.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `cp_txnlog` DROP INDEX `parent_txn_id` -------------------------------------------------------------------------------- /data/schemas/logindb/cp_txnlog.20081109093451.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `cp_txnlog` ADD INDEX ( `parent_txn_id` ) -------------------------------------------------------------------------------- /data/schemas/logindb/cp_txnlog.20081109093452.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `cp_txnlog` ADD INDEX ( `txn_id` ) -------------------------------------------------------------------------------- /data/schemas/logindb/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/templates/changemail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/templates/changemail.php -------------------------------------------------------------------------------- /data/templates/confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/templates/confirm.php -------------------------------------------------------------------------------- /data/templates/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/templates/newpass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/templates/newpass.php -------------------------------------------------------------------------------- /data/templates/resetpass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/data/templates/resetpass.php -------------------------------------------------------------------------------- /data/tmp/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/error.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/index.php -------------------------------------------------------------------------------- /lang/en_us.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lang/en_us.php -------------------------------------------------------------------------------- /lang/es_es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lang/es_es.php -------------------------------------------------------------------------------- /lang/pt_br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lang/pt_br.php -------------------------------------------------------------------------------- /lib/Flux.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux.php -------------------------------------------------------------------------------- /lib/Flux/Addon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Addon.php -------------------------------------------------------------------------------- /lib/Flux/Athena.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Athena.php -------------------------------------------------------------------------------- /lib/Flux/Authorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Authorization.php -------------------------------------------------------------------------------- /lib/Flux/BaseServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/BaseServer.php -------------------------------------------------------------------------------- /lib/Flux/Captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Captcha.php -------------------------------------------------------------------------------- /lib/Flux/CharServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/CharServer.php -------------------------------------------------------------------------------- /lib/Flux/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Config.php -------------------------------------------------------------------------------- /lib/Flux/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Connection.php -------------------------------------------------------------------------------- /lib/Flux/Connection/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Connection/Statement.php -------------------------------------------------------------------------------- /lib/Flux/Connection/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Flux/DataObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/DataObject.php -------------------------------------------------------------------------------- /lib/Flux/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Dispatcher.php -------------------------------------------------------------------------------- /lib/Flux/EmblemExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/EmblemExporter.php -------------------------------------------------------------------------------- /lib/Flux/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Error.php -------------------------------------------------------------------------------- /lib/Flux/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Installer.php -------------------------------------------------------------------------------- /lib/Flux/Installer/CharMapServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Installer/CharMapServer.php -------------------------------------------------------------------------------- /lib/Flux/Installer/MainServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Installer/MainServer.php -------------------------------------------------------------------------------- /lib/Flux/Installer/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Installer/Schema.php -------------------------------------------------------------------------------- /lib/Flux/Installer/SchemaPermissionError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Installer/SchemaPermissionError.php -------------------------------------------------------------------------------- /lib/Flux/Installer/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Flux/ItemExistsError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/ItemExistsError.php -------------------------------------------------------------------------------- /lib/Flux/ItemShop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/ItemShop.php -------------------------------------------------------------------------------- /lib/Flux/ItemShop/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/ItemShop/Cart.php -------------------------------------------------------------------------------- /lib/Flux/ItemShop/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Flux/LogFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/LogFile.php -------------------------------------------------------------------------------- /lib/Flux/LoginAthenaGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/LoginAthenaGroup.php -------------------------------------------------------------------------------- /lib/Flux/LoginError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/LoginError.php -------------------------------------------------------------------------------- /lib/Flux/LoginServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/LoginServer.php -------------------------------------------------------------------------------- /lib/Flux/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Mailer.php -------------------------------------------------------------------------------- /lib/Flux/MapServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/MapServer.php -------------------------------------------------------------------------------- /lib/Flux/Paginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Paginator.php -------------------------------------------------------------------------------- /lib/Flux/PaymentNotifyRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/PaymentNotifyRequest.php -------------------------------------------------------------------------------- /lib/Flux/PermissionError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/PermissionError.php -------------------------------------------------------------------------------- /lib/Flux/RegisterError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/RegisterError.php -------------------------------------------------------------------------------- /lib/Flux/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Security.php -------------------------------------------------------------------------------- /lib/Flux/SessionData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/SessionData.php -------------------------------------------------------------------------------- /lib/Flux/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/Template.php -------------------------------------------------------------------------------- /lib/Flux/TemporaryTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/Flux/TemporaryTable.php -------------------------------------------------------------------------------- /lib/Flux/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/functions/getReposVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/functions/getReposVersion.php -------------------------------------------------------------------------------- /lib/functions/imagecreatefrombmpstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/functions/imagecreatefrombmpstring.php -------------------------------------------------------------------------------- /lib/functions/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/markdown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/markdown/LICENSE -------------------------------------------------------------------------------- /lib/markdown/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/markdown/markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/markdown/markdown.php -------------------------------------------------------------------------------- /lib/phpmailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/LICENSE -------------------------------------------------------------------------------- /lib/phpmailer/class.phpmailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/class.phpmailer.php -------------------------------------------------------------------------------- /lib/phpmailer/class.pop3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/class.pop3.php -------------------------------------------------------------------------------- /lib/phpmailer/class.smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/class.smtp.php -------------------------------------------------------------------------------- /lib/phpmailer/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/phpmailer/language/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-ar.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-br.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-ca.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-ch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-ch.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-cz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-cz.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-de.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-dk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-dk.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-es.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-et.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-fi.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-fo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-fo.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-fr.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-hu.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-it.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-ja.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-nl.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-no.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-no.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-pl.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-ro.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-ru.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-se.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-se.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-tr.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-zh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-zh.php -------------------------------------------------------------------------------- /lib/phpmailer/language/phpmailer.lang-zh_cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/phpmailer/language/phpmailer.lang-zh_cn.php -------------------------------------------------------------------------------- /lib/recaptcha/recaptchalib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/lib/recaptcha/recaptchalib.php -------------------------------------------------------------------------------- /modules/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/.htaccess -------------------------------------------------------------------------------- /modules/account/cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/cart.php -------------------------------------------------------------------------------- /modules/account/changemail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/changemail.php -------------------------------------------------------------------------------- /modules/account/changepass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/changepass.php -------------------------------------------------------------------------------- /modules/account/changesex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/changesex.php -------------------------------------------------------------------------------- /modules/account/confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/confirm.php -------------------------------------------------------------------------------- /modules/account/confirmemail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/confirmemail.php -------------------------------------------------------------------------------- /modules/account/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/create.php -------------------------------------------------------------------------------- /modules/account/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/edit.php -------------------------------------------------------------------------------- /modules/account/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/index.php -------------------------------------------------------------------------------- /modules/account/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/login.php -------------------------------------------------------------------------------- /modules/account/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/logout.php -------------------------------------------------------------------------------- /modules/account/pagemenu/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/pagemenu/view.php -------------------------------------------------------------------------------- /modules/account/prune.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/prune.php -------------------------------------------------------------------------------- /modules/account/resend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/resend.php -------------------------------------------------------------------------------- /modules/account/resetpass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/resetpass.php -------------------------------------------------------------------------------- /modules/account/resetpw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/resetpw.php -------------------------------------------------------------------------------- /modules/account/transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/transfer.php -------------------------------------------------------------------------------- /modules/account/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/view.php -------------------------------------------------------------------------------- /modules/account/xferlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/account/xferlog.php -------------------------------------------------------------------------------- /modules/auction/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/captcha/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/captcha/index.php -------------------------------------------------------------------------------- /modules/castle/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/castle/index.php -------------------------------------------------------------------------------- /modules/character/changeslot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/character/changeslot.php -------------------------------------------------------------------------------- /modules/character/divorce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/character/divorce.php -------------------------------------------------------------------------------- /modules/character/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/character/index.php -------------------------------------------------------------------------------- /modules/character/mapstats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/character/mapstats.php -------------------------------------------------------------------------------- /modules/character/online.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/character/online.php -------------------------------------------------------------------------------- /modules/character/pagemenu/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/character/pagemenu/view.php -------------------------------------------------------------------------------- /modules/character/prefs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/character/prefs.php -------------------------------------------------------------------------------- /modules/character/resetlook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/character/resetlook.php -------------------------------------------------------------------------------- /modules/character/resetpos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/character/resetpos.php -------------------------------------------------------------------------------- /modules/character/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/character/view.php -------------------------------------------------------------------------------- /modules/cplog/ban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/cplog/ban.php -------------------------------------------------------------------------------- /modules/cplog/changemail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/cplog/changemail.php -------------------------------------------------------------------------------- /modules/cplog/changepass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/cplog/changepass.php -------------------------------------------------------------------------------- /modules/cplog/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/cplog/ipban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/cplog/ipban.php -------------------------------------------------------------------------------- /modules/cplog/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/cplog/login.php -------------------------------------------------------------------------------- /modules/cplog/paypal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/cplog/paypal.php -------------------------------------------------------------------------------- /modules/cplog/resetpass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/cplog/resetpass.php -------------------------------------------------------------------------------- /modules/cplog/txnview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/cplog/txnview.php -------------------------------------------------------------------------------- /modules/donate/complete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/donate/complete.php -------------------------------------------------------------------------------- /modules/donate/history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/donate/history.php -------------------------------------------------------------------------------- /modules/donate/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/donate/index.php -------------------------------------------------------------------------------- /modules/donate/notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/donate/notify.php -------------------------------------------------------------------------------- /modules/donate/trusted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/donate/trusted.php -------------------------------------------------------------------------------- /modules/donate/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/donate/update.php -------------------------------------------------------------------------------- /modules/economy/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/errors/missing_action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/errors/missing_action.php -------------------------------------------------------------------------------- /modules/errors/missing_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/errors/missing_view.php -------------------------------------------------------------------------------- /modules/guild/emblem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/guild/emblem.php -------------------------------------------------------------------------------- /modules/guild/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/guild/export.php -------------------------------------------------------------------------------- /modules/guild/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/guild/index.php -------------------------------------------------------------------------------- /modules/guild/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/guild/view.php -------------------------------------------------------------------------------- /modules/history/cplogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/history/cplogin.php -------------------------------------------------------------------------------- /modules/history/emailchange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/history/emailchange.php -------------------------------------------------------------------------------- /modules/history/gamelogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/history/gamelogin.php -------------------------------------------------------------------------------- /modules/history/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/history/index.php -------------------------------------------------------------------------------- /modules/history/passchange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/history/passchange.php -------------------------------------------------------------------------------- /modules/history/passreset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/history/passreset.php -------------------------------------------------------------------------------- /modules/install/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/install/index.php -------------------------------------------------------------------------------- /modules/install/reinstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/install/reinstall.php -------------------------------------------------------------------------------- /modules/ipban/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/ipban/add.php -------------------------------------------------------------------------------- /modules/ipban/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/ipban/edit.php -------------------------------------------------------------------------------- /modules/ipban/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/ipban/index.php -------------------------------------------------------------------------------- /modules/ipban/remove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/ipban/remove.php -------------------------------------------------------------------------------- /modules/ipban/unban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/ipban/unban.php -------------------------------------------------------------------------------- /modules/item/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/item/add.php -------------------------------------------------------------------------------- /modules/item/copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/item/copy.php -------------------------------------------------------------------------------- /modules/item/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/item/edit.php -------------------------------------------------------------------------------- /modules/item/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/item/index.php -------------------------------------------------------------------------------- /modules/item/pagemenu/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/item/pagemenu/view.php -------------------------------------------------------------------------------- /modules/item/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/item/view.php -------------------------------------------------------------------------------- /modules/itemshop/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/itemshop/add.php -------------------------------------------------------------------------------- /modules/itemshop/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/itemshop/delete.php -------------------------------------------------------------------------------- /modules/itemshop/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/itemshop/edit.php -------------------------------------------------------------------------------- /modules/itemshop/imagedel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/itemshop/imagedel.php -------------------------------------------------------------------------------- /modules/logdata/chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/logdata/chat.php -------------------------------------------------------------------------------- /modules/logdata/command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/logdata/command.php -------------------------------------------------------------------------------- /modules/logdata/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/logdata/index.php -------------------------------------------------------------------------------- /modules/logdata/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/logdata/login.php -------------------------------------------------------------------------------- /modules/logdata/pick.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/logdata/pick.php -------------------------------------------------------------------------------- /modules/logdata/zeny.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/logdata/zeny.php -------------------------------------------------------------------------------- /modules/mail/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/mail/index.php -------------------------------------------------------------------------------- /modules/main/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/main/page_not_found.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/main/page_not_found.php -------------------------------------------------------------------------------- /modules/main/preprocess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/main/preprocess.php -------------------------------------------------------------------------------- /modules/monster/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/monster/index.php -------------------------------------------------------------------------------- /modules/monster/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/monster/view.php -------------------------------------------------------------------------------- /modules/purchase/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/purchase/add.php -------------------------------------------------------------------------------- /modules/purchase/cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/purchase/cart.php -------------------------------------------------------------------------------- /modules/purchase/checkout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/purchase/checkout.php -------------------------------------------------------------------------------- /modules/purchase/clear.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/purchase/clear.php -------------------------------------------------------------------------------- /modules/purchase/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/purchase/index.php -------------------------------------------------------------------------------- /modules/purchase/pending.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/purchase/pending.php -------------------------------------------------------------------------------- /modules/purchase/remove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/purchase/remove.php -------------------------------------------------------------------------------- /modules/ranking/alchemist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/ranking/alchemist.php -------------------------------------------------------------------------------- /modules/ranking/blacksmith.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/ranking/blacksmith.php -------------------------------------------------------------------------------- /modules/ranking/character.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/ranking/character.php -------------------------------------------------------------------------------- /modules/ranking/death.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/ranking/death.php -------------------------------------------------------------------------------- /modules/ranking/guild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/ranking/guild.php -------------------------------------------------------------------------------- /modules/ranking/zeny.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/ranking/zeny.php -------------------------------------------------------------------------------- /modules/server/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/server/info.php -------------------------------------------------------------------------------- /modules/server/status-xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/server/status-xml.php -------------------------------------------------------------------------------- /modules/server/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/server/status.php -------------------------------------------------------------------------------- /modules/service/tos.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/unauthorized/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/unauthorized/index.php -------------------------------------------------------------------------------- /modules/woe/custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/woe/custom.php -------------------------------------------------------------------------------- /modules/woe/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/modules/woe/index.php -------------------------------------------------------------------------------- /themes/default/account/cart.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/default/account/changemail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/themes/default/account/changemail.php -------------------------------------------------------------------------------- /themes/default/account/changepass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/themes/default/account/changepass.php -------------------------------------------------------------------------------- /themes/default/account/changesex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/themes/default/account/changesex.php -------------------------------------------------------------------------------- /themes/default/account/confirm.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/default/account/confirmemail.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/default/account/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/themes/default/account/create.php -------------------------------------------------------------------------------- /themes/default/account/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/themes/default/account/edit.php -------------------------------------------------------------------------------- /themes/default/account/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/themes/default/account/index.php -------------------------------------------------------------------------------- /themes/default/account/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/themes/default/account/login.php -------------------------------------------------------------------------------- /themes/default/account/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/themes/default/account/logout.php -------------------------------------------------------------------------------- /themes/default/account/prune.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/default/account/resend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/themes/default/account/resend.php -------------------------------------------------------------------------------- /themes/default/account/resetpass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerculesWS/FluxCP/HEAD/themes/default/account/resetpass.php -------------------------------------------------------------------------------- /themes/default/account/resetpw.php: -------------------------------------------------------------------------------- 1 | 2 |