Page 2 of 2

Re: dsconnect_server account create issues in windows 10 also auction house files missing please help

Posted: Tue Sep 25, 2018 3:53 am
by blue9a
hmm i tried everything based on what you posted yet im getting nowhere maybe i cant do it on windows 10 any other ideas

Re: dsconnect_server account create issues in windows 10 also auction house files missing please help

Posted: Sun Sep 30, 2018 5:50 pm
by TeoTwawki
Probably on the newer mysql that by default does not ALLOW a default time of all zero's.

Strict mode affects whether the server permits '0000-00-00' as a valid date: If strict mode is not enabled, '0000-00-00' is permitted and inserts produce no warning. If strict mode is enabled, '0000-00-00' is not permitted and inserts produce an error, unless IGNORE is given as well. For INSERT IGNORE and UPDATE IGNORE, '0000-00-00' is permitted and inserts produce a warning.

tl;dr we still need to do away with those defaults and have the core code just use "now" for these timestamps/datestamps instead. Meanwhile, you can try

Code: Select all

`timecreate` datetime NOT NULL DEFAULT NOW(),
`timelastmodify` timestamp NOT NULL DEFAULT NOW(),
or disabling strict mode (see mysql reference manual on their website)

Re: dsconnect_server account create issues in windows 10 also auction house files missing please help

Posted: Tue Oct 09, 2018 1:21 pm
by blue9a
Ok alfer so many trial and error to get the server setup i finally got it to work :) now how do i get the auction house to work because when i try to bid its greyed out

Re: dsconnect_server account create issues in windows 10 also auction house files missing please help

Posted: Tue Oct 09, 2018 1:37 pm
by whasf
Search server handles auction house browsing

Re: dsconnect_server account create issues in windows 10 also auction house files missing please help

Posted: Wed Oct 10, 2018 11:23 pm
by blue9a
so im guessing this is normal if it is how does everyone else make it so that when they visit their auction house they can bid on anything for 1 gil

Re: dsconnect_server account create issues in windows 10 also auction house files missing please help

Posted: Thu Oct 11, 2018 8:13 am
by whasf
You have to load the auction house, by default there is nothing on it (no one's put anything up for sale yet!)
There are some 3rd party tools on the forums that will do it (there is a python script that will even scrape ffxiah.com and load items based on prices there).

Or you can roll your own

Re: dsconnect_server account create issues in windows 10 also auction house files missing please help

Posted: Thu Oct 11, 2018 1:56 pm
by blue9a
oh ok