budiony
budiony
I can confirm that issue still persists in version 11.0.0.6099 on Windows.
> @budiony I was sure this only happens through Wine, but you say the crash happens on Windows (10?) ? And it's not just the logged "_Access violation in xyz_"...
Not sure about Wine, didn't use it myself under Linux. But again, it appears to me that the same reason could be the cause in both OS-es, given the fact...
``` double CalculateUSDX(double EURUSD, double USDJPY, double GBPUSD, double USDCAD, double USDSEK, double USDCHF) { double USDX = 50.14348112 * MathPow(EURUSD, -0.576) * MathPow(USDJPY, 0.136) * MathPow(GBPUSD, -0.119) * MathPow(USDCAD,...
The problem is with this line of code in file `/login/ajax/resetformsubmit.php` on line 26: `$config = PHPLogin::pullMultiSettings(array("password_policy_enforce", "password_min_length", "signup_thanks", "base_url"));` This produces **Fatal error: Uncaught Error: Class 'PHPLogin' not found...
I have had similar problem, but it was just settings of the mail server itself. You should check the database table **app_config** and look for settings **mail_server**, **mail_host**, **mail_user**, etc....
The class works, you have to change/set only the flag "/i" in regex search to find all relevant cookies (php session + rc auth cookie). I.e. `preg_match_all('/Set-Cookie: (.*)\b/i', $response, $cookies);`,...