If you aren't using SQLite I would do the following:
1. Remove the SQLite project from your solution.
2. Replace the web.config file in the root of the Website project with one of the SQL Server versions of web.config. For example, if you are running the app under .NET 4.0, rename web_sqlserver_4.0.config to web.config. (The SQL Server versions of web.config have all references to SQLite removed.)
3. Open gs\galleryserverpro.config and remove the reference to the SQLite data provider. When you are done, the <dataProvider> section will look like this:
Code:<dataProvider defaultProvider="SqlServerGalleryServerProProvider">
<providers>
<clear />
<add applicationName="Gallery Server Pro"
connectionStringName="SqlServerDbConnection"
name="SqlServerGalleryServerProProvider"
type="GalleryServerPro.Data.SqlServer.SqlDataProvider" />
</providers>
</dataProvider>
These steps will purge all SQLite references so you shouldn't get the error any more. You may have to manually delete all the files from the bin directory and rebuild.
Note that the only difference between the 64-bit and 32-bit downloads is whether it includes the 64-bit or 32-bit version of System.Data.SQLite.dll, so if you are using SQL Server and deleted the SQLite DLLs it doesn't matter which download you use.
Hope this helps,
Roger Martin
Creator and Lead Developer of Gallery Server Pro