Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsEventsEventsA happy event: DNN Events 6.2.0 is released!A happy event: DNN Events 6.2.0 is released!
Previous
 
Next
New Post
1/6/2015 10:59 AM
 

Finaly a new release for DNN Events. This release 6.2.0 focusses on better support for enrolment of unregistered users as well as better information about locations, among other small improvements.

Events 06.02.00 will work for any DNN version 7.2.0 and up. Full details on the changes can be found in great detail at http://dnnevents.codeplex.com/workite....

NEW FEATURES

  • Added address fields to event locations..
  • Added address, name, company and other enrollee fields to event signups.
  • Added option to use a custom enrollment page, including module settings.
  • Added filtering of events by location name, including module settings.
  • Added option to restrict selection of categories and of locations to time frame from settings (list view only).
  • Added new tokens for locations, events and signups; added new token conditions for events.
  • Added option to download the enrollees for an event as a CSV file (single event only).

DNN Events 6.2.0 can be downloaded from CodePlex.


XCESS expertise center b.v.
Regards,
Ernst Peter
LinkedIn Profile Ernst Peter Tamminga


XCESS: DNN/Evoq specialist, zie www.xcess.nl

Events 7.0.1 - Released
Reports 6.1.0 - Released
 
New Post
1/30/2015 8:37 AM
 
Upgrade to Events 6.2 a now getting an issue that I reported on CodePlex. Someone jumped on the issue also yesterday. Are you aware and is there a fix?

http://dnnevents.codeplex.com/workite...

"Upgraded to 6.2.0 and now getting the same issue on 2 different instances of DNN. When I click on the "My Enrollments" icon/little guys with plus sign. I get an error "An error has occurred. Error: Calendar is currently unavailable." along with the below in the event log. This wasn't an issue prior to 6.2.0. Any help on getting this fixed or what the problem may be?

UserAgent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5
DefaultDataProvider:DotNetNuke.Data.SqlDataProvider, DotNetNuke
ExceptionGUID:40c768fb-35b7-4a43-97f1-c252c5cba11e
InnerException:Parameter count does not match Parameter Value count.
FileName:
FileLineNumber:0
FileColumnNumber:0
Method:Microsoft.ApplicationBlocks.Data.SqlHelper.AssignParameterValues
StackTrace:
Message:
DotNetNuke.Services.Exceptions.ModuleLoadException: Parameter count does not match Parameter Value count. ---> System.ArgumentException: Parameter count does not match Parameter Value count.
at Microsoft.ApplicationBlocks.Data.SqlHelper.AssignParameterValues(SqlParameter[] commandParameters, Object[] parameterValues)
at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteReader(String connectionString, String spName, Object[] parameterValues)
at DotNetNuke.Modules.Events.SqlDataProvider.EventsSignupsMyEnrollments(Int32 moduleId, Int32 userId, Int32 socialGroupId, String categoryIDs, DateTime beginDate, DateTime endDate)
at DotNetNuke.Modules.Events.EventSignupsController.EventsSignupsMyEnrollments(Int32 moduleID, Int32 userID, Int32 socialGroupId, String categoryIDs, DateTime beginDate, DateTime endDate)
at DotNetNuke.Modules.Events.EventMyEnrollments.BindData()
--- End of inner exception stack trace ---"
 
New Post
1/30/2015 10:58 AM
 
it looks like EventsSignupsMyEnrollments stored procedure hasn't been updated properly in your database - or you are stil using an old events .dll file

Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
New Post
2/5/2015 6:40 PM
 
Sebastian, If something didn't get upgrade correctly than it would have been incorrect in the package. The DotNetNuke.Modules.Events.dll is dated 1/5/2015 10:37:24. If something is out of date or not correct the installation package might need to be looked at. This is happening on 2 completely different instances both upgraded from 6.1.4.

Here's what I have for the SP in the DB.

USE [DotNetNuke]
GO
/****** Object: StoredProcedure [dbo].[EventsSignupsMyEnrollments] Script Date: 2/5/2015 3:36:30 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
/** EventsSignupsMyEnrollments **/
ALTER PROCEDURE [dbo].[EventsSignupsMyEnrollments]
(
@ModuleID int,
@UserID int,
@SocialGroupId int
)
AS
BEGIN
SET NOCOUNT ON;
SET DATEFORMAT mdy;

SELECT s.EventID,
s.SignupID,
s.ModuleID,
s.Userid,
s.Approved,
u.displayName as UserName,
u.Email,
c.EventTimeBegin,
DATEADD(mi, c.Duration, c.EventTimeBegin) as EventTimeEnd,
c.EventName,
c.Importance,
c.Approved as EventApproved,
c.MaxEnrollment,
( SELECT SUM(NoEnrolees)
FROM dbo.[EventsSignups]
WHERE EventID = c.EventID AND c.Signups = 1
) as Enrolled,
PayPalStatus,
PayPalReason,
PayPalTransID,
PayPalPayerID,
PayPalPayerStatus,
PayPalRecieverEmail,
PayPalUserEmail,
PayPalPayerEmail,
PayPalFirstName,
PayPalLastName,
PayPalAddress,
PayPalCity,
PayPalState,
PayPalZip,
PayPalCountry,
PayPalCurrency,
PayPalPaymentDate,
PayPalAmount,
PayPalFee,
NoEnrolees,
r.EventTimeZoneId,
AnonEmail,
AnonName,
AnonTelephone,
AnonCulture,
AnonTimeZoneId,
S.FirstName,
S.LastName,
S.Company,
S.JobTitle,
S.ReferenceNumber,
S.Street,
S.PostalCode,
S.City,
S.Region,
S.Country
FROM dbo.[EventsRecurMaster] AS r RIGHT OUTER JOIN
dbo.[Events] AS c ON r.RecurMasterID = c.RecurMasterID RIGHT OUTER JOIN
dbo.[EventsSignups] AS s LEFT OUTER JOIN
dbo.[Users] AS u ON s.UserID = u.UserID ON c.EventID = s.EventID LEFT OUTER JOIN
dbo.[EventsMaster] AS e ON s.ModuleID = e.SubEventID
Where s.Userid = @UserID AND (s.ModuleID = @ModuleID Or e.ModuleID = @ModuleID)
AND (r.SocialGroupId = @SocialGroupId or (r.SocialGroupId is null and @SocialGroupId = 0))
ORDER BY c.EventTimeBegin desc
END
 
New Post
2/5/2015 9:39 PM
 
Looks like I'm not the only one.

http://www.dnnsoftware.com/forums/for...

And I've seen another post under issues up on CodePlex also. Might be he same individual.
 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsEventsEventsA happy event: DNN Events 6.2.0 is released!A happy event: DNN Events 6.2.0 is released!


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out