Search the Community
Showing results for tags 'support'.
-
I tried to use the Owl Gaming gamemode for my future server and when I finally looks like I could setting it up, I had a lot of Database errors (I'm using PHPMyAdmin from XAMPP) so I tried to fix them but I wasn't able to. I also tried to ask for help in their github and the RAGE Discord but the people can't give me a solution for this (but they could help me with other issues) so I'm trying now here. After installing and setting up a proper SSL connection with Windows in PHPMyAdmin (MariaDB) I still having this error: Authentication to host '127.0.0.1' for user 'root' using method 'mysql_native_password' failed with message: Access denied for user 'root'@'localhost' (using password: YES) [ERROR] MySQL Connection Failed. Cannot Connect to Server. This is my database info from XAMPP This is the connection string and parameters from the project: MySQL.cs public bool Initialize(bool bIsStartup = true) { // TODO_GITHUB: You need to set the below environment variables / variables to your GAME database connection info string[] gameSettings = new string[] { SettingHelpers.GetDevEnvironmentSetting("GAME_DATABASE_IP") ?? "127.0.0.1", SettingHelpers.GetDevEnvironmentSetting("GAME_DATABASE_NAME") ?? "_gtav", SettingHelpers.GetDevEnvironmentSetting("GAME_DATABASE_USERNAME") ?? "root", SettingHelpers.GetDevEnvironmentSetting("GAME_DATABASE_PASSWORD") ?? "admin", SettingHelpers.GetDevEnvironmentSetting("GAME_DATABASE_PORT") ?? "3306" }; // TODO_GITHUB: You need to set the below environment variables / variables to your AUTH database connection info string[] authSettings = new string[] { SettingHelpers.GetDevEnvironmentSetting("AUTH_DATABASE_IP") ?? "127.0.0.1", SettingHelpers.GetDevEnvironmentSetting("AUTH_DATABASE_NAME") ?? "core", SettingHelpers.GetDevEnvironmentSetting("AUTH_DATABASE_USERNAME") ?? "root", SettingHelpers.GetDevEnvironmentSetting("AUTH_DATABASE_PASSWORD") ?? "admin", SettingHelpers.GetDevEnvironmentSetting("AUTH_DATABASE_PORT") ?? "3306" }; try { Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance); m_Connection_Game = new MySqlConnection(Helpers.FormatString( "Server={0}; database={1}; UID={2}; password={3}; port={4}; ConnectionTimeout=10;", gameSettings)); m_Connection_Game.Open(); m_Connection_Auth = new MySqlConnection(Helpers.FormatString( "Server={0}; database={1}; UID={2}; password={3}; port={4}; ConnectionTimeout=10;", authSettings)); m_Connection_Auth.Open(); PrintLogger.LogMessage(ELogSeverity.HIGH, "MySQL Initialized"); return true; } catch (MySqlException ex) { switch (ex.Number) { // These are partially useless since MySQL tends to not throw these properly half the time case 0: PrintLogger.LogMessage(ELogSeverity.ERROR, "MySQL Connection Failed. Cannot Connect to Server."); break; case 1: PrintLogger.LogMessage(ELogSeverity.ERROR, "MySQL Connection Failed. Invalid username/password."); break; case 1042: PrintLogger.LogMessage(ELogSeverity.ERROR, "MySQL Connection Failed. Connection Timed Out."); break; ThreadedMySQL.cs public ThreadedMySQLConnection(int ID, string strIP, string strDatabaseName, string strUsername, string strPassword, string strPort) { m_ID = ID; m_strDatabaseName = strDatabaseName; m_connection = new MySqlConnection(Helpers.FormatString( "Server={0}; database={1}; UID={2}; password={3}; port={4}; ConnectionTimeout=10; Pooling=False;", strIP, strDatabaseName, strUsername, strPassword, strPort)); Connect(); // spawn thread #if !USE_SINGLE_THREADED_MYSQL m_Thread = new Thread(ThreadedTick); m_Thread.Name = Helpers.FormatString("[{1}] Threaded SQL Thread {0}", m_ID, strDatabaseName); m_Thread.Start(); #endif m_connection.StateChange += OnConnectionStateChange; } private static ThreadedMySQLConnectionPool m_ConnectionPool_Game = new ThreadedMySQLConnectionPool( #if USE_SINGLE_THREADED_MYSQL 1, #elif DEBUG Math.Min(4, Environment.ProcessorCount - 1), #else Environment.ProcessorCount - 1, // spawn hyperthreaded cores - 1 so we dont swamp / run on main thread (well only on the virtual core) #endif // TODO_GITHUB: You need to set the below environment variables / variables to your GAME database connection info SettingHelpers.GetDevEnvironmentSetting("GAME_DATABASE_IP") ?? "127.0.0.1", SettingHelpers.GetDevEnvironmentSetting("GAME_DATABASE_NAME") ?? "_gtav", SettingHelpers.GetDevEnvironmentSetting("GAME_DATABASE_USERNAME") ?? "root", SettingHelpers.GetDevEnvironmentSetting("GAME_DATABASE_PASSWORD") ?? "admin", SettingHelpers.GetDevEnvironmentSetting("GAME_DATABASE_PORT") ?? "3306" ); // Auth DB private static ThreadedMySQLConnectionPool m_ConnectionPool_Auth = new ThreadedMySQLConnectionPool( #if USE_SINGLE_THREADED_MYSQL 1, #elif DEBUG Math.Min(4, Environment.ProcessorCount - 1), #else Environment.ProcessorCount - 1, // spawn hyperthreaded cores - 1 so we dont swamp / run on main thread (well only on the virtual core) #endif // TODO_GITHUB: You need to set the below environment variables / variables to your AUTH database connection info SettingHelpers.GetDevEnvironmentSetting("AUTH_DATABASE_IP") ?? "127.0.0.1", SettingHelpers.GetDevEnvironmentSetting("AUTH_DATABASE_NAME") ?? "core", SettingHelpers.GetDevEnvironmentSetting("AUTH_DATABASE_USERNAME") ?? "root", SettingHelpers.GetDevEnvironmentSetting("AUTH_DATABASE_PASSWORD") ?? "admin", SettingHelpers.GetDevEnvironmentSetting("AUTH_DATABASE_PORT") ?? "3306" ); SerialDefinitionsServers (for the GetDevEnvironmentSetting, there is no "dev_settings.json" in the project so the file never exists and they should took the ??-right-side values, I wanna think) public static class SettingHelpers { public static string GetDevEnvironmentSetting(string strKey) { if (System.IO.File.Exists("dev_settings.json")) { Dictionary<string, string> dictSettings = Newtonsoft.Json.JsonConvert.DeserializeObject<Dictionary<string, string>>(System.IO.File.ReadAllText("dev_settings.json")); if (dictSettings.TryGetValue(strKey, out string strValue)) { return strValue; } else { return "null"; } } else { return Environment.GetEnvironmentVariable(strKey); } } } Even I tried to hardcore the parameters and the connection string and I still having the same error. At this point, I don't know what else do, I double check credentials, hardcode the connection string and their parameters, change the credentials, using several databases (MySQL or MariaDB withouth PHPMyAdmin) and I still don't being able to make a proper connection to the server.
-
Normally, I have been able to connect for months without any problems, but today I have a problem that started today and I cannot connect to any server. I would be very happy if you could help me by watching the video. It seems to open just fine, but it does not open. I have been trying for 13 hours, please help.
-
When I try to connect to an server I get this Error. (Error: https://prnt.sc/HAx0NKSRkja0 ) I reinstalled GTA5 and RageMP already. I hope I can get help here! Thanks
-
Hi, I'm sorry to write you here, but I can't find another option, although it seems wrong to use it for a post. My problem is with Rage Discord. I have the phone verified, also activated the A2F of my account and although I have entered and exited about 20 times to the discord server reacting to the emogis of the rules, it doesn't give me the role to visualize the rest of channels, besides having written MD to suport since more than 15 days ago. Could you help me by giving me the role manually in the discord? I don't know what to do anymore.
-
I have been BAN by anti cheat, but I never use any cheats, soft and REDUXes https://imgur.com/a/donzngq
-
I get this error when trying to open RAGE. I verified file integrity on Epic Games and I checked for my game version and I have the latest one. How can I fix this?
-
Hello everyone! 🙂 First of all, i'm a random gta v modder and i'm very new to rage mp. I mod gta and many many games for few years. Before i was using other multiplayer modification which was mostly client-sided. I wasn't fan of it and community was so helpful that forced me to find better alternative. Then i heard a lot of good things about this app and it's possibilities from a friend of mine so i thought it would be nice to make my own server using rage mp. I saw on youtube that rage mp is everything from scratch: no traffic, npc's and so on. I know there is a wiki with "how to set up a server" and tutorials how to write functions & scripts but since i'm not programmer and never tried it, would like to ask if there any more friendly ways to make it work with your content on server? Like: traffic, scenarios (if it's possible), maps, graphics, weather, sounds (add-on too), new vehicles (add-on) / replace (working modkit in both cases?), scripts (what kind of?), peds, props etc. ? Here are some file formats i would like to know if they are working or not: .yft .ydr .ytd .ipl .ymt .ybn .dat .awc .rel .xml .meta and of course the most important if i can stream gameconfig.xml and main vehicles.meta (vanilla) I've searched on the forum what type of files can be streamed server-side but didn't found an answer. Rage mp supports streaming .rpf's ? If yes it would be great since I know rockstar limitations of loading files outside of .rpf (famous 16mb). I also need to know what are the limitations of this multiplayer. Tell me everything u know about it. If some of the things i mentioned above are not working or are actually in progress & plans, please let me know. I'm really looking forward for further updates! 😃 Ps. Sorry if the whole topic looks like a mess and sorry for my bad english. Greetings, RageVision.
- 3 replies
-
- server-side
- stream
- (and 4 more)
-
Hi everyone, I'm new to RAGE Multiplayer, however, I am dealing with a severe issue. I can get all the way to the game loading before it crashes. I can load the Rage Muliplayer I can select the server The Game loads [Assumption] Just before I'm supposed to enter the server and play the game I crash The crash itself is weird. I get sent back to my desktop with no warnings/errors. It just silently crashes. I check my task manager and it's empty related to gta. However, on discord it still shows me playing it. I'm not sure where to even start resolving this issue. The solutions I tried: (Not in order) Uninstalled FiveM Reinstalled RageM 3 times Opening RAGEMP through administrator Saved in C drive. The fact that no error boxes show up or anything is weird. It's like it just closes itself and sends me back to my desktop. If anyone had dealt with this before or helped resolve someone issue similar to this, please help me out.
-
ok so i tried everything that i could to make gta 5 rage mp work on my pc verifying integrity,reinstalling client and game launching from rage client,starting steam before and rockstar launcher before .Also playing 10 mins in story mode and disabling antivirus but nothing seems to work for me can anyone pls help me as i want to play this grand rp thing on my pc pls help me guys.Here is the video link.
-
I've went to log on to Eternal RP and upon connecting I get this error "can't establish secure connection. please try again" . At first I didn't think much of it so I tried to relog and got the same issue. So I reset my internet and pc and once again it happened. Then I reinstalled RageMP and rockstar launcher and it is still happening. Is anyone about to help. If anyone knows how to fix this or has suggestions I'd really appreciate it.
-
-
Habe Rage MP sowie GTA 5 neu Installiert. Es kommt aber wieder und wieder diese Fehlermeldung.
-
good day, how can i find out what the forbidden dlc is? Kind regards Shaun Lüdeke
-
Hello, Are there any news about by when a fix for the 1.1 Servers will be available. I don't want to know an exact time but a rough estimation would be nice .. this weekend, next week or never?? Any update, information would be welcome, thanks upfront.
-
so my gta is on the epic games platform the free version and i have gta downloaded in my c drive so i tried to make a new folder in my c drive for Rage and i sstill got the same issue anyone have any suggestions i would greatly appreciate it i have been trying for almost a week now
-
when i try to connect to a server the game starts but i can't get out of the loading screen so i can play , I have already reinstalled RageMP but it still don't working. PLS HELP 37/5000
-
Hallo ich habe vor kurzen mit der RAGE Programmierung angefangen und wollte fragen wie ich Dinge abfragen kann z.b ob ein Spieler bestimmte Rechte hat
-
Hallo ich habe ein Problem ich habe mir den RageMP Lauchner Installiert und wenn ich den Starte kommt nur kurz das Icon in der Taskleiste und das wars hab auch schon mal neu Installiert hat aber nix geändert
-
Is there a function to change the Head Overlay on the client side? I want to change the ped but I don’t see the result, although I found this function in the wiki on the client-side functions. Wiki link: https://wiki.rage.mp/index.php?title=Player::setHeadOverlay
-
Hello I have a problem, my RageMP Launcher does not start it comes only briefly the icon in the bottom of the taskbar and that's it then I've ever reinstalled but has changed nothing
-
can someone help me ? i've recently instaled rage MP with all updates but now it opens and then imediatly closes