-
Contributor
Originally Posted by
raiderjoseph
I had to redo the server sadly. Power went out and it shutdown everything mid game so I had to reset... It pisses me off because I had a level 40 shaman but alas. But I have a new problem. what does this mean?
Imgflip
You could have used my powershell scripts to transfer your character.
The issue in the photo: you didn't install correctly. The repack is made as straightforward as possible: you extract the full repack somewhere, open that folder, and extract the contents of the LATEST update (they contain all changes from previous updates) in that folder, replacing everything when prompted. Then you extract the DATA archive (it's in the first post) into that folder also (you only need to do this once when you install the repack).
-
Member
Originally Posted by
Aldebaraan
You could have used my powershell scripts to transfer your character.
The issue in the photo: you didn't install correctly. The repack is made as straightforward as possible: you extract the full repack somewhere, open that folder, and extract the contents of the LATEST update (they contain all changes from previous updates) in that folder, replacing everything when prompted. Then you extract the DATA archive (it's in the first post) into that folder also (you only need to do this once when you install the repack).
So I missed a step. Thanks. Sorry to bother. And I don't know Powershell existed at the time. I guess I will go Druid this time.
-
Post Thanks / Like - 1 Thanks
Aldebaraan (1 members gave Thanks to raiderjoseph for this useful post)
-
Member
Hello, is there something I need to do to turn on the darkmoon fair? I see it on the calendar but there seem to be no mages in towns, nor the area near goldshire.
-
Member
I am running BFACore 8.3.7 and is it possible to incorporate the modules into that without the individual progression?
I am looking mainly for the npcs
-
Contributor
Originally Posted by
kayocey
Hello, is there something I need to do to turn on the darkmoon fair? I see it on the calendar but there seem to be no mages in towns, nor the area near goldshire.
I never messed with events before so i cannot help you specifically. But you can look at the azerothcore gm commands and info about events in the net to see if there's anything to force a event there. In my experience the fair occurred normally during gameplay.
-
Contributor
Originally Posted by
Budicles
I am running BFACore 8.3.7 and is it possible to incorporate the modules into that without the individual progression?
I am looking mainly for the npcs
AFAIK azerothcore is the only core that have a built in module system that makes it easy to add modules to it without messing with core code. BFACore doesn't have it, thus it is not possible to add any modules to it.
-
Member
Hey I followed the steps in order and the error message is the same as before.
"Failed to open the sql update "source/azerothCore/modules/mod-individual-progression/data/sql/world/base/creature_class_stats.sql" for reading! Stopping the server to keep the database integrity, try to identify and solve the issue or disable the database updater."
Last edited by raiderjoseph; 05-05-2025 at 09:16 PM.
-
Contributor
Originally Posted by
raiderjoseph
Hey I followed the steps in order and the error message is the same as before.
"Failed to open the sql update "source/azerothCore/modules/mod-individual-progression/data/sql/world/base/creature_class_stats.sql" for reading! Stopping the server to keep the database integrity, try to identify and solve the issue or disable the database updater."
Since you cannot get it to work use this powershell code:
Code:
#Using a Timer in the Script
$stopwatch = [System.Diagnostics.Stopwatch]::StartNew()
$SourceDirectory = "E:\Games\WoW Server Files"
$RepackDirectory = "L:\"
# Define the source directory to copy
$sourceFile = "$SourceDirectory\Azerothcore WoTLK Repack (Playerbots + Individual Progression) 11-02-2025.7z"
$sourceDataFiles = "$SourceDirectory\AC Data v16 enUS.7z"
$UpdateFiles = "$SourceDirectory\Update Individual Progression 2025-04-21.7z"
Write-Host "Extracting files..."
#Full repack
7z x $sourceFile -o"$RepackDirectory" -y
Write-Host "Extracting data files..."
#datafiles
7z x $sourceDataFiles -o"$RepackDirectory\Azerothcore WoTLK Repack (Playerbots + Individual Progression)" -y
Write-Host "Extracting update files..."
#Update
7z x $UpdateFiles -o"$RepackDirectory\Azerothcore WoTLK Repack (Playerbots + Individual Progression)" -y
$stopwatch.Stop()
Write-Host "Done in $($stopwatch.Elapsed.TotalSeconds) seconds."
pause
Create a folder and add the full repack, data and update files to it. Then set $SourceDirectory to it. $RepackDirectory is the folder you want the repack folder to be in.
You need powershell 7 and 7zip installed and in PATH for this script to work. I tested it and the repack boots fine and it's fully updated.
Here's the code for the repack without individual progression:
Code:
#Using a Timer in the Script
$stopwatch = [System.Diagnostics.Stopwatch]::StartNew()
$SourceDirectory = "E:\Games\WoW Server Files"
$RepackDirectory = "L:\"
# Define the source directory to copy
$sourceFile = "$SourceDirectory\Azerothcore WoTLK Repack (Playerbots) 11-02-2025.7z"
$sourceDataFiles = "$SourceDirectory\AC Data v16 enUS.7z"
$UpdateFiles = "$SourceDirectory\Update Playerbots 2025-04-20.7z"
Write-Host "Extracting files..."
#Full repack
7z x $sourceFile -o"$RepackDirectory" -y
Write-Host "Extracting data files..."
#datafiles
7z x $sourceDataFiles -o"$RepackDirectory\Azerothcore WoTLK Repack (Playerbots)" -y
Write-Host "Extracting update files..."
#Update
7z x $UpdateFiles -o"$RepackDirectory\Azerothcore WoTLK Repack (Playerbots)" -y
$stopwatch.Stop()
Write-Host "Done in $($stopwatch.Elapsed.TotalSeconds) seconds."
pause
-
Member
Originally Posted by
Aldebaraan
Since you cannot get it to work use this powershell code:
Code:
#Using a Timer in the Script
$stopwatch = [System.Diagnostics.Stopwatch]::StartNew()
$SourceDirectory = "E:\Games\WoW Server Files"
$RepackDirectory = "L:"
# Define the source directory to copy
$sourceFile = "$SourceDirectory\Azerothcore WoTLK Repack (Playerbots + Individual Progression) 11-02-2025.7z"
$sourceDataFiles = "$SourceDirectory\AC Data v16 enUS.7z"
$UpdateFiles = "$SourceDirectory\Update Individual Progression 2025-04-21.7z"
Write-Host "Extracting files..."
#Full repack
7z x $sourceFile -o"$RepackDirectory" -y
Write-Host "Extracting data files..."
#datafiles
7z x $sourceDataFiles -o"$RepackDirectory\Azerothcore WoTLK Repack (Playerbots + Individual Progression)" -y
Write-Host "Extracting update files..."
#Update
7z x $UpdateFiles -o"$RepackDirectory\Azerothcore WoTLK Repack (Playerbots + Individual Progression)" -y
$stopwatch.Stop()
Write-Host "Done in $($stopwatch.Elapsed.TotalSeconds) seconds."
pause
Create a folder and add the full repack, data and update files to it. Then set $SourceDirectory to it. $RepackDirectory is the folder you want the repack folder to be in.
You need powershell 7 and 7zip installed and in PATH for this script to work. I tested it and the repack boots fine and it's fully updated.
Here's the code for the repack without individual progression:
Code:
#Using a Timer in the Script
$stopwatch = [System.Diagnostics.Stopwatch]::StartNew()
$SourceDirectory = "E:\Games\WoW Server Files"
$RepackDirectory = "L:"
# Define the source directory to copy
$sourceFile = "$SourceDirectory\Azerothcore WoTLK Repack (Playerbots) 11-02-2025.7z"
$sourceDataFiles = "$SourceDirectory\AC Data v16 enUS.7z"
$UpdateFiles = "$SourceDirectory\Update Playerbots 2025-04-20.7z"
Write-Host "Extracting files..."
#Full repack
7z x $sourceFile -o"$RepackDirectory" -y
Write-Host "Extracting data files..."
#datafiles
7z x $sourceDataFiles -o"$RepackDirectory\Azerothcore WoTLK Repack (Playerbots)" -y
Write-Host "Extracting update files..."
#Update
7z x $UpdateFiles -o"$RepackDirectory\Azerothcore WoTLK Repack (Playerbots)" -y
$stopwatch.Stop()
Write-Host "Done in $($stopwatch.Elapsed.TotalSeconds) seconds."
pause
How do I set $SourceDirectory and $RepackDirectory? Is that a 7zip/Powershell thing?
-
Member
mysql settings bug?
i doubt anyone can help with this since it involves a different program but i thought id ask
so i am trying to do some dbc edits and using WDBX editor witch has a sql import feature that is frankly really nice for preventing errors when modding dbc files
im entering the info correctly for the server and the program crashes with an
a call to SSPI failed see inner exception error
i would think this with the program however i also run other servers and the program works as intended and connects fine with the database for those its just this packs mysql that is the issue
if it helps i also have no issue whatsoever connecting to the database using heidi sql or the like
ive also posted on the programs github but that was before i realized its only happening with this server
heres the log
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.
************** Exception Text **************
System.Security.Authentication.AuthenticationException: A call to SSPI failed, see inner exception. ---> System.ComponentModel.Win32Exception: The message received was unexpected or badly formatted
--- End of inner exception stack trace ---
at System.Net.Security.SslState.StartSendAuthResetSignal(ProtocolToken message, AsyncProtocolRequest asyncRequest, Exception exception)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest, Boolean renegotiation)
at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReadFrame(Byte[] buffer, Int32 readBytes, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest, Boolean renegotiation)
at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest, Boolean renegotiation)
at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)
at System.Net.Security.SslStream.AuthenticateAsClient(String targetHost, X509CertificateCollection clientCertificates, SslProtocols enabledSslProtocols, Boolean checkCertificateRevocation)
at MySql.Data.MySqlClient.NativeDriver.StartSSL()
at MySql.Data.MySqlClient.NativeDriver.Open()
at MySql.Data.MySqlClient.Driver.Open()
at MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
at MySql.Data.MySqlClient.MySqlPool.CreateNewPooledConnection()
at MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
at MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
at MySql.Data.MySqlClient.MySqlPool.GetConnection()
at MySql.Data.MySqlClient.MySqlConnection.Open()
at WDBXEditor.LoadSQL.btnRefresh_Click(Object sender, EventArgs e)
at System.Windows.Forms.Control.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ButtonBase.WndProc(Message& m)
at System.Windows.Forms.Button.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
************** Loaded Assemblies **************
mscorlib
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9300.0 built by: NET481REL1LAST_C
CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
WDBX Editor
Assembly Version: 1.0.4.0
Win32 Version: 1.0.4.0
CodeBase: file:///C:/Users/Owner/Downloads/Wowserver/DBC%20Editing%20Tools/DBC%20Editor/WDBX%20Editor.exe
----------------------------------------
System.Windows.Forms
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9256.0 built by: NET481REL1LAST_B
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9282.0 built by: NET481REL1LAST_C
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Drawing
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0 built by: NET481REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System.Core
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9297.0 built by: NET481REL1LAST_C
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
AdvancedDataGridView
Assembly Version: 1.0.19618.11
Win32 Version: 1.0.19618.11
CodeBase: file:///C:/Users/Owner/Downloads/Wowserver/DBC%20Editing%20Tools/DBC%20Editor/AdvancedDataGridView.DLL
----------------------------------------
System.Configuration
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0 built by: NET481REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0 built by: NET481REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
Accessibility
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0 built by: NET481REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Accessibility/v4.0_4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
----------------------------------------
System.Data
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9214.0 built by: NET481REL1LAST_B
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll
----------------------------------------
Microsoft.GeneratedCode
Assembly Version: 1.0.0.0
Win32 Version: 4.8.9032.0 built by: NET481REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
Microsoft.GeneratedCode
Assembly Version: 1.0.0.0
Win32 Version: 4.8.9032.0 built by: NET481REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
System.Web.Extensions
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9282.0
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Web.Extensions/v4.0_4.0.0.0__31bf3856ad364e35/System.Web.Extensions.dll
----------------------------------------
System.Web
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9282.0 built by: NET481REL1LAST_C
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/System.Web/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Web.dll
----------------------------------------
System.Threading.Tasks.Dataflow
Assembly Version: 4.6.1.0
Win32 Version: 4.6.24705.01
CodeBase: file:///C:/Users/Owner/Downloads/Wowserver/DBC%20Editing%20Tools/DBC%20Editor/System.Threading.Tasks.Dataflow.DLL
----------------------------------------
System.Runtime
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Runtime/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Runtime.dll
----------------------------------------
System.Threading.Tasks
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Threading.Tasks/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Threading.Tasks.dll
----------------------------------------
System.Diagnostics.Tracing
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0 built by: NET481REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Diagnostics.Tracing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Diagnostics.Tracing.dll
----------------------------------------
System.Collections
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Collections/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Collections.dll
----------------------------------------
System.Collections.Concurrent
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Collections.Concurrent/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Collections.Concurrent.dll
----------------------------------------
System.Threading
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Threading/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Threading.dll
----------------------------------------
System.Numerics
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0 built by: NET481REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Numerics/v4.0_4.0.0.0__b77a5c561934e089/System.Numerics.dll
----------------------------------------
System.Data.DataSetExtensions
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0 built by: NET481REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Data.DataSetExtensions/v4.0_4.0.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll
----------------------------------------
MySql.Data
Assembly Version: 6.9.9.0
Win32 Version: 6.9.9.0
CodeBase: file:///C:/Users/Owner/Downloads/Wowserver/DBC%20Editing%20Tools/DBC%20Editor/MySql.Data.DLL
----------------------------------------
System.Transactions
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0 built by: NET481REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/System.Transactions/v4.0_4.0.0.0__b77a5c561934e089/System.Transactions.dll
----------------------------------------
System.EnterpriseServices
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0 built by: NET481REL1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_32/System.EnterpriseServices/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
----------------------------------------
************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.
For example:
<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>
When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.
any ideas?
thank you
-
Member
possible to disable encryption
anyway to disable the encryption on the mysql server
im using a program called WDBX Editor to mod dbc files and its refusing to connect to the servers database
looking online there seems to be a ssl or tls mismatch with the error im getting
my other servers i run are using mysql 5.5.9 and they work fine so i think it has to do with the newer 8.4.2 mysql version
thanks
-
Contributor
Originally Posted by
raiderjoseph
How do I set $SourceDirectory and $RepackDirectory? Is that a 7zip/Powershell thing?
Create a ps1 file. Name it whatever you want. Open using a text editor (i use notepad++). Paste the code above in it. Edit yhe variables i mentioned. Run it by right clicking > run with powershell 7. You also need to set your powershel permissions to run scripts. Search google for that.
Last edited by Aldebaraan; 05-06-2025 at 05:05 AM.
-
Contributor
Originally Posted by
daverrion
anyway to disable the encryption on the mysql server
im using a program called WDBX Editor to mod dbc files and its refusing to connect to the servers database
looking online there seems to be a ssl or tls mismatch with the error im getting
my other servers i run are using mysql 5.5.9 and they work fine so i think it has to do with the newer 8.4.2 mysql version
thanks
Did you set the correct user and password? It's in the first post of this thread.
-
Member
Hi, do you have a sql thread to restore the honor vendors in old town?
-
Member
yes using whats in the world conf and in the mysql table database on heidisql also tried 127.0.0.1 user root pass test like on the front page both allows me to connect to heidisql and have full access to the database
but WDBX editor will not Connect to this mysql using the right info
it does when i fully close down this server and connect say my mop server running mysql 5.5.9
from what i can tell looking on the web with the error log mysql community started using a new version of tls or ssl to encrypt/secure connections from version 8xx on
thats why its giving a
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.
************** Exception Text **************
System.Security.Authentication.AuthenticationException: A call to SSPI failed, see inner exception. ---> System.ComponentModel.Win32Exception: The message received was unexpected or badly formatted
--- End of inner exception stack trace ---
at System.Net.Security.SslState.StartSendAuthResetSignal(ProtocolToken message, AsyncProtocolRequest asyncRequest, Exception exception)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest, Boolean renegotiation)
at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReadFrame(Byte[] buffer, Int32 readBytes, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest, Boolean renegotiation)
at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest, Boolean renegotiation)
at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)
at System.Net.Security.SslStream.AuthenticateAsClient(String targetHost, X509CertificateCollection clientCertificates, SslProtocols enabledSslProtocols, Boolean checkCertificateRevocation)
at MySql.Data.MySqlClient.NativeDriver.StartSSL()
at MySql.Data.MySqlClient.NativeDriver.Open()
at MySql.Data.MySqlClient.Driver.Open()
at MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
at MySql.Data.MySqlClient.MySqlPool.CreateNewPooledConnection()
at MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
at MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
at MySql.Data.MySqlClient.MySqlPool.GetConnection()
at MySql.Data.MySqlClient.MySqlConnection.Open()
at WDBXEditor.LoadSQL.btnRefresh_Click(Object sender, EventArgs e)
at System.Windows.Forms.Control.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ButtonBase.WndProc(Message& m)
at System.Windows.Forms.Button.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
also on of the websites i visited said i can use a my.ini or my.cfg to disable ssl but i dont have that file anywhere