is there a bugzilla?

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
12/12/2011 10:52:58 PM
Gravatar
Total Posts 2

is there a bugzilla?

Hello,

I've been trying to build mojoportal on Gentoo linux with the 2.10.5 version of mono and the 2.6 version of monodevelop. I cloned the latest version of mojoportal as well as the release version 2.3.7.5 (revision 5409ef2ed839) and both give me the same errors:

/home/alain/stable/mojoportal/mojoPortal.Business/SystemLog.cs(20,20): Error CS0103: The name 'DBSystemLog' does not exist in the current context (CS0103) (mojoPortal.Business.mono)

I get this error 7 times in total in this source code (file SystemLog.cs):

public static void DeleteAll()
{
DBSystemLog.DeleteAll();
}

public static bool Delete(int id)
{
return DBSystemLog.Delete(id);
}

public static bool DeleteOlderThan(DateTime cutoffDate)
{
return DBSystemLog.DeleteOlderThan(cutoffDate);
}

public static bool DeleteByLevel(string logLevel)
{
return DBSystemLog.DeleteByLevel(logLevel);
}

public static IDataReader GetPageAscending(
int pageNumber,
int pageSize,
out int totalPages)
{
return DBSystemLog.GetPageAscending(pageNumber, pageSize, out totalPages);
}

public static IDataReader GetPageDescending(
int pageNumber,
int pageSize,
out int totalPages)
{
return DBSystemLog.GetPageDescending(pageNumber, pageSize, out totalPages);
}

I did not touch anything regarding database configuration (using sqlite is okay for me) but I'd like to know if it is possible to fix that.

Thanks

Alain

You must sign in to post in the forums. This thread is closed to new posts.