I just upgraded from 4.05 to 4.10 and now I get an error on trying to load my profile:
Error loading Profile: Conversion from string "False" to type 'Integer' is not valid.
4.05 To 4.10 - Profile Fails To Load
Re: 4.05 To 4.10 - Profile Fails To Load
Well, I fixed it by using a diff tool. This setting is now expecting an int instead of bool(?, a string of False anyway):
<Setting>
<Setting_Name>Check_Aud_DataOnly</Setting_Name>
<Setting_Value>False</Setting_Value>
</Setting>
Changed it (and copied other settings from a test file) and it's working.
<Setting>
<Setting_Name>Check_Aud_DataOnly</Setting_Name>
<Setting_Value>False</Setting_Value>
</Setting>
Changed it (and copied other settings from a test file) and it's working.
- DigitalVolcano
- Site Admin
- Posts: 1864
- Joined: Thu Jun 09, 2011 10:04 am
Re: 4.05 To 4.10 - Profile Fails To Load
Thanks, and sorry about this!
4.1.0 shipped with this bug when loading old profiles - it will be fixed in 4.1.1, but for now your fix works
The profiles can be edited in Notepad:
Change the setting value for "Check_Aud_DataOnly" to a number. False=0, True=1.
4.1.0 shipped with this bug when loading old profiles - it will be fixed in 4.1.1, but for now your fix works
The profiles can be edited in Notepad:
Change the setting value for "Check_Aud_DataOnly" to a number. False=0, True=1.
Code: Select all
<Setting>
<Setting_Name>Check_Aud_DataOnly</Setting_Name>
<Setting_Value>0</Setting_Value>
</Setting>
Re: 4.05 To 4.10 - Profile Fails To Load
Thanks. I just saw this - for some reason I did not get a notification of the reply.