This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.
When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:
hi, joe
DBIndexingQueue.cs in project mojoPortal.Data.SQLite
private static string GetConnectionString() { string connectionString = ConfigurationManager.AppSettings["SqliteConnectionString"]; ///////////////////////////////begin 1////////////////////////////////////
if ( (connectionString == "defaultdblocation") && (HttpContext.Current != null) ) {
connectionString = "version=3,URI=file:" + HttpContext.Current.Server.MapPath("~/Data/sqlitedb/mojoportal.db");
}
/-/////////////////////////////end 1/////////////////////////////////////
should be changed as below too.
///////////////////////////////begin 2///////////////////////////////////
if (connectionString == "defaultdblocation") {
connectionString = "version=3,URI=file:" + System.Web.Hosting.HostingEnvironment.MapPath("~/Data/sqlitedb/mojoportal.db");
/////////////////////////////end 2 ////////////////////////////////////
return connectionString; }
Thianks!
Hi,
Thanks for reporting this. It was also already reported last week and is fixed in the current release (2.2.7.6) and in svn trunk.
Best,
Joe