Welcome to The Forum

Register now to gain access to all of our features. Once registered and logged in, you will be able to create topics, post replies and more


Search the Community

Showing results for tags 'phpmyadmin'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Survival Servers
    • The Lounge
  • Game Servers
    • ARMA 2: Operation Arrowhead
    • ARMA 3
    • Unturned
    • Rust
    • Reign of Kings
    • ARK: Survival Evolved (PC)
    • Hurtworld
    • 7 Days to Die
    • Conan Exiles
    • Minecraft
    • Dark and Light
    • Citadel: Forged With Fire
    • ARK: Survival Evolved (PS4)
    • The Forest
    • Eco
    • PixARK
    • Space Engineers
    • Rend
    • SCUM
    • DayZ
    • Atlas
    • Miscreated
    • Outlaws of the Old West
    • Mordhau
    • Rune 2 (Ragnarok)
    • Day of Dragons
    • Dead Matter
    • Valheim
    • Satisfactory
    • Path of Titans
    • Project Zomboid
    • Veloren
    • V Rising
    • ARMA Reforger
    • Core Keeper
    • Terraria
    • Subnautica
    • Vein
    • Barotrauma
    • Mount and Blade ll: Bannerlord
    • Icarus
    • Frozen Flame
    • Craftopia
    • Sons of The Forest
    • No One Survived
    • Night of The Dead
    • Don't Starve Together
    • Portal Knights
    • Counter-Strike: Global Offensive
    • Left 4 Dead 2
    • Counter-Strike 2
    • The Front
    • Astroneer
    • Subsistence
    • Empyrion: Galactic Survival
    • Beasts Of Bermuda
    • Avorion
    • Smalland
    • Enshrouded
    • Palworld
    • Sunkenland

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Location


Interests

Found 1 result

  1. I am having trouble creating a table in SQL with phpmyadmin on my server. I installed the singlecurrency 4.0 for Dayz Overpoch and I get a error message when I enter the Sql table "banking_data". Coins will save on the player but wont save in the bank after relog or restart. I included a pic of the error message. Here is the code I am trying to enter. ANY help would be much appreciated! SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `banking_data` -- ---------------------------- DROP TABLE IF EXISTS `banking_data`; CREATE TABLE `banking_data` ( `PlayerUID` varchar(20) NOT NULL DEFAULT '0', `PlayerName` varchar(128) NOT NULL DEFAULT 'Null', `BankSaldo` bigint(24) NOT NULL DEFAULT '0', `LastUpdated` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`PlayerUID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for `character_data` -- ---------------------------- ALTER TABLE character_data ADD CashMoney int(11) NOT NULL DEFAULT 0 AFTER Infected;