 |
Ask A Question
 | Need latest users online moduleshow details +See answers | Add your answerI bought from snowcovered and it doesn't seem to be the most updated version.  it's v1.3.  i get the following error in the event log.. please advise asap.
Install Package:: fatgeorge_UsersOnlineInfo:: Starting InstallationInfo:: Starting Installation - fatgeorge_UsersOnlineInfo:: Starting Installation - ScriptInfo:: Begin Sql executionInfo:: Folder Created - G:\inetpub\planetsocialsports_production_dnn562\DesktopModules\fatgeorge_UsersOnline\Info:: Created - 01.00.00.SqlDataProviderInfo:: Executing 01.00.00.SqlDataProviderInfo:: Start Sql execution: 01.00.00.SqlDataProvider fileInfo:: SQL Execution resulted in following Exceptions: System.Data.SqlClient.SqlException: Invalid object name 'dbo.dotnuke_sysobjects'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async) at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe) at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at DotNetNuke.Data.SqlDataProvider.ExecuteADOScript(String SQL) at DotNetNuke.Data.SqlDataProvider.ExecuteScript(String Script, Boolean UseTransactions) /************************************************************/ /***** SqlDataProvider *****/ /***** *****/ /***** *****/ /***** Note: To manually execute this script you must *****/ /***** perform a search and replace operation *****/ /***** for dbo. and dotnuke_ *****/ /***** *****/ /************************************************************/ if exists (select * from dbo.dotnuke_sysobjects where id = object_id(N'dbo.[dotnuke_FGUOL_GetOnlineUserStatistics]') and OBJECTPROPERTY(id, N'IsProcedure') = 1) DROP PROCEDURE dotnuke_FGUOL_GetOnlineUserStatistics System.Data.SqlClient.SqlException: Incorrect syntax near 'FGUOL_GetOnlineUserStatistics'. Must declare the scalar variable "@PortalID". Must declare the scalar variable "@IncludeHosts". Must declare the scalar variable "@PortalID". Must declare the scalar variable "@PortalID". Must declare the scalar variable "@UseAS". Must declare the scalar variable "@PortalID". Must declare the scalar variable "@PortalID". Must declare the scalar variable "@PortalID". Must declare the scalar variable "@PortalID". Must declare the scalar variable "@PortalID". Must declare the scalar variable "@PortalID". Must declare the scalar variable "@PortalID". at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async) at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe) at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at DotNetNuke.Data.SqlDataProvider.ExecuteADOScript(String SQL) at DotNetNuke.Data.SqlDataProvider.ExecuteScript(String Script, Boolean UseTransactions) CREATE PROCEDURE dbo.dotnuke_[FGUOL_GetOnlineUserStatistics] @PortalID int, @IncludeHosts bit, @UseAS bit = 0 AS -- Anonymous User Count SELECT count(UserID) FROM dbo.dotnuke_AnonymousUsers WHERE PortalId = @PortalID -- Users Online Count IF @IncludeHosts = 0 BEGIN SELECT count(UO.UserID) FROM dbo.dotnuke_UsersOnline UO INNER JOIN dbo.dotnuke_Users U on UO.UserID = U.UserID WHERE UO.PortalId = @PortalID AND U.IsSuperUser = 0 END ELSE BEGIN SELECT count(UserID) FROM dbo.dotnuke_UsersOnline WHERE PortalId = @PortalID END -- Last User Registered IF @UseAS = 0 Begin SELECT UserID, UserName, DisplayName, FirstName, LastName, FirstName + ' ' + LastName AS FullName FROM dbo.dotnuke_Users WHERE UserID = (select top 1 UserId from dbo.dotnuke_UserPortals where PortalID = @PortalID AND Authorised = 1 order by UserPortalId desc) End Else Begin SELECT U.UserID, U.UserName, DisplayName, FirstName, LastName, FirstName + ' ' + LastName AS FullName, replace(mt.TabPath, '//', '/') + '/tabid/' + Cast(MessagingTabID as varchar(4)) + '/senduid/' + Cast(U.UserId as varchar(4)) + '/Default.aspx' As MessageLink, replace(pt.TabPath, '//', '/') + '/tabid/' + Cast(ProfileTabID as varchar(4)) + '/asuid/' + Cast(U.UserId as varchar(4)) + '/Default.aspx' As ProfileLink FROM vw_Users U INNER JOIN UserPortals UP ON U.UserID = UP.UserId Join (SELECT SettingValue As MessagingTabID FROM [activesocial_Settings] Where ModuleId=-1 And GroupKey='GEN' And SettingName='MESSAGINGTABID'AND PortalID = @PortalID) Message ON 1=1 INNER JOIN Tabs mt ON Message.MessagingTabID=mt.TabID JOIN (SELECT SettingValue As ProfileTabID FROM [activesocial_Settings] Where ModuleId=-1 And GroupKey='GEN' And SettingName='PROFILETABID'AND PortalID = @PortalID) Profile ON 1=1 INNER JOIN Tabs pt ON Profile.ProfileTabID=pt.TabID WHERE UP.PortalID = @PortalID AND U.PortalID = @PortalID AND UP.Authorised = 1 AND U.IsSuperUser = @IncludeHosts and U.UserID = (select top 1 UserId from UserPortals where PortalID = @PortalID AND Authorised = 1 order by UserPortalId desc) End -- Membership Count SELECT count(UserID) FROM dbo.dotnuke_UserPortals WHERE PortalId = @PortalID AND Authorised = 1 -- Members in last day SELECT count(UserID) FROM dbo.dotnuke_UserPortals WHERE PortalId = @PortalID and CreatedDate > DateAdd(d, -1, GetDate()) AND Authorised = 1 -- Members day before SELECT count(UserID) FROM dbo.dotnuke_UserPortals WHERE PortalId = @PortalID and CreatedDate > DateAdd(d, -2, GetDate()) and CreatedDate < DateAdd(d, -1, GetDate()) AND Authorised = 1 System.Data.SqlClient.SqlException: Invalid object name 'dbo.dotnuke_sysobjects'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async) at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe) at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at DotNetNuke.Data.SqlDataProvider.ExecuteADOScript(String SQL) at DotNetNuke.Data.SqlDataProvider.ExecuteScript(String Script, Boolean UseTransactions) if exists (select * from dbo.dotnuke_sysobjects where id = object_id(N'dbo.[dotnuke_FGUOL_GetOnlineUsers]') and OBJECTPROPERTY(id, N'IsProcedure') = 1) DROP PROCEDURE dotnuke_FGUOL_GetOnlineUsers System.Data.SqlClient.SqlException: Incorrect syntax near 'FGUOL_GetOnlineUsers'. Must declare the scalar variable "@UseAS". Must declare the scalar variable "@PortalID". Must declare the scalar variable "@PortalID". Must declare the scalar variable "@PortalID". at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async) at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe) at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at DotNetNuke.Data.SqlDataProvider.ExecuteADOScript(String SQL) at DotNetNuke.Data.SqlDataProvider.ExecuteScript(String Script, Boolean UseTransactions) CREATE PROCEDURE dbo.dotnuke_[FGUOL_GetOnlineUsers] @PortalID int, @IncludeHosts bit, @UseAS bit = 0 AS IF @UseAS = 0 BEGIN SELECT DISTINCT UO.UserID, U.UserName, U.DisplayName, U.FirstName, U.LastName, U.FirstName + ' ' + U.LastName AS FullName FROM dbo.dotnuke_UsersOnline UO INNER JOIN dbo.dotnuke_Users U ON UO.UserID = U.UserID, dbo.dotnuke_UserPortals UP WHERE UO.PortalID = @PortalID AND UO.UserID = U.UserID AND UP.Authorised = 1 AND U.IsSuperUser = @IncludeHosts End Else Begin SELECT UO.UserID, U.UserName, U.DisplayName, U.FirstName, U.LastName, U.FirstName + ' ' + U.LastName AS FullName, replace(mt.TabPath, '//', '/') + '/tabid/' + Cast(MessagingTabID as varchar(4)) + '/senduid/' + Cast(U.UserId as varchar(4)) + '/Default.aspx' As MessageLink, replace(pt.TabPath, '//', '/') + '/tabid/' + Cast(ProfileTabID as varchar(4)) + '/asuid/' + Cast(U.UserId as varchar(4)) + '/Default.aspx' As ProfileLink FROM dbo.dotnuke_UsersOnline UO INNER JOIN dbo.dotnuke_vw_Users U ON UO.UserID = U.UserID INNER JOIN dbo.dotnuke_UserPortals UP ON U.UserID = UP.UserId Join (SELECT SettingValue As MessagingTabID FROM dbo.dotnuke_[activesocial_Settings] Where ModuleId=-1 And GroupKey='GEN' And SettingName='MESSAGINGTABID' AND PortalID = @PortalID) Message ON 1=1 INNER JOIN dbo.dotnuke_Tabs mt ON Message.MessagingTabID=mt.TabID JOIN (SELECT SettingValue As ProfileTabID FROM dbo.dotnuke_[activesocial_Settings] Where ModuleId=-1 And GroupKey='GEN' And SettingName='PROFILETABID'AND PortalID = @PortalID) Profile ON 1=1 INNER JOIN dbo.dotnuke_Tabs pt ON Profile.ProfileTabID=pt.TabID WHERE UP.PortalID = @PortalID AND U.PortalID = @PortalID AND UP.Authorised = 1 AND U.IsSuperUser = @IncludeHosts End System.Data.SqlClient.SqlException: Invalid object name 'dbo.dotnuke_sysobjects'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async) at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe) at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at DotNetNuke.Data.SqlDataProvider.ExecuteADOScript(String SQL) at DotNetNuke.Data.SqlDataProvider.ExecuteScript(String Script, Boolean UseTransactions) if exists (select * from dbo.dotnuke_sysobjects where id = object_id(N'dbo.[dotnuke_FGUOL_GetOnlineASFriends]') and OBJECTPROPERTY(id, N'IsProcedure') = 1) DROP PROCEDURE dotnuke_FGUOL_GetOnlineASFriends System.Data.SqlClient.SqlException: Incorrect syntax near 'FGUOL_GetOnlineASFriends'. Must declare the scalar variable "@PortalID". Must declare the scalar variable "@PortalID". at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async) at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe) at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at DotNetNuke.Data.SqlDataProvider.ExecuteADOScript(String SQL) at DotNetNuke.Data.SqlDataProvider.ExecuteScript(String Script, Boolean UseTransactions) CREATE PROCEDURE dbo.dotnuke_[FGUOL_GetOnlineASFriends] @PortalID int, @UserId int AS Begin SELECT UO.UserID, U.UserName, U.DisplayName, U.FirstName, U.LastName, U.FirstName + ' ' + U.LastName AS FullName, replace(mt.TabPath, '//', '/') + '/tabid/' + Cast(MessagingTabID as varchar(4)) + '/senduid/' + Cast(U.UserId as varchar(4)) + '/Default.aspx' As MessageLink, replace(pt.TabPath, '//', '/') + '/tabid/' + Cast(ProfileTabID as varchar(4)) + '/asuid/' + Cast(U.UserId as varchar(4)) + '/Default.aspx' As ProfileLink FROM dbo.dotnuke_UsersOnline UO INNER JOIN dbo.dotnuke_vw_Users U ON UO.UserID = U.UserID INNER JOIN dbo.dotnuke_UserPortals UP ON U.UserID = UP.UserId Join (SELECT SettingValue As MessagingTabID FROM dbo.dotnuke_[activesocial_Settings] Where ModuleId=-1 And GroupKey='GEN' And SettingName='MESSAGINGTABID'AND PortalID = @PortalID) Message ON 1=1 INNER JOIN dbo.dotnuke_Tabs mt ON Message.MessagingTabID=mt.TabID JOIN (SELECT SettingValue As ProfileTabID FROM dbo.dotnuke_[activesocial_Settings] Where ModuleId=-1 And GroupKey='GEN' And SettingName='PROFILETABID'AND PortalID = @PortalID) Profile ON 1=1 INNER JOIN dbo.dotnuke_Tabs pt ON Profile.ProfileTabID=pt.TabID INNER JOIN dbo.dotnuke_activesocial_Friends asf ON U.UserId = asf.FriendId AND asf.userid = @userid WHERE UP.PortalID = @PortalID AND U.PortalID = @PortalID End Info:: End Sql execution: 01.00.00.SqlDataProvider fileInfo:: Created - Uninstall.SqlDataProviderInfo:: Finished Sql executionInfo:: Component installed successfully - ScriptInfo:: Starting Installation - ModuleInfo:: Module registered successfully - fatgeorge_UsersOnlineInfo:: Component installed successfully - ModuleInfo:: Starting Installation - AssemblyInfo:: Assembly registered - bin\fatgeorge.UsersOnline.dllInfo:: Created - bin\fatgeorge.UsersOnline.dllInfo:: Assembly registered - bin\fatgeorge.UsersOnline.SqlDataProvider.dllInfo:: Created - bin\fatgeorge.UsersOnline.SqlDataProvider.dllInfo:: Component installed successfully - AssemblyInfo:: Starting Installation - FileInfo:: Created - resources.zipInfo:: Created - Settings.ascxInfo:: Created - UOLMaster.ascxInfo:: Created - 01.00.00.TxtInfo:: Component installed successfully - FileInfo:: Starting Installation - ResourceFileInfo:: Expanding Resource fileInfo:: Created - App_LocalResources/Settings.ascx.resxInfo:: Created - App_LocalResources/UsersOnline.ascx.resxInfo:: Created - Themes/Horizontal/Thumbs.dbInfo:: Created - Themes/Horizontal/uoASFriends.gifInfo:: Created - Themes/Horizontal/uoGroup1.gifInfo:: Created - Themes/Horizontal/uoGroup2.gifInfo:: Created - Themes/Horizontal/uoGroup3.gifInfo:: Created - Themes/Horizontal/uoLatest.gifInfo:: Created - Themes/Horizontal/uoMembers.gifInfo:: Created - Themes/Horizontal/uoMessage.gifInfo:: Created - Themes/Horizontal/uoNewToday.gifInfo:: Created - Themes/Horizontal/uoNewYesterday.gifInfo:: Created - Themes/Horizontal/uoOverall.gifInfo:: Created - Themes/Horizontal/uoTotal.gifInfo:: Created - Themes/Horizontal/uoVisitors.gifInfo:: Created - Themes/Horizontal/UsersOnline.ascxInfo:: Created - Themes/_default/Thumbs.dbInfo:: Created - Themes/_default/uoASFriends.gifInfo:: Created - Themes/_default/uoGroup1.gifInfo:: Created - Themes/_default/uoGroup2.gifInfo:: Created - Themes/_default/uoGroup3.gifInfo:: Created - Themes/_default/uoLatest.gifInfo:: Created - Themes/_default/uoMembers.gifInfo:: Created - Themes/_default/uoMessage.gifInfo:: Created - Themes/_default/uoNewToday.gifInfo:: Created - Themes/_default/uoNewYesterday.gifInfo:: Created - Themes/_default/uoOverall.gifInfo:: Created - Themes/_default/uoTotal.gifInfo:: Created - Themes/_default/uoVisitors.gifInfo:: Created - Themes/_default/UsersOnline.ascxInfo:: Resource Files createdInfo:: Component installed successfully - ResourceFileInfo:: Installation committedInfo:: Installation successful. - fatgeorge_UsersOnlineInfo:: Deleted temporary install folderInfo:: Installation successful.Server Name: VPS211266
Submitted by: hwilson 7 Sep 2011 Categories: FileUpload Tags: user online Required By: Answers: 0 Views: 131 | Installing Syndicationshow details +See answers | Add your answerI purchased your Syndication Package to use with Business Directory from DNN Professor. I installed it following the instructions that came with the module.
I was unable to do to add a new feed item as in Step 4-4. I got a Critical Error - Object Reference not set to an instance of an object.Â
Is there any possibility of having someone look at my site to help trouble shoot what I have apparently done wrong?
Submitted by: wlosey 16 Aug 2011 Categories: Syndication Tags: Error adding a new feed item Required By: 18/08/2011 Answers: 0 Views: 140 | mutiple rating after creating a recordshow details +See answers | Add your answeri have a form where cutstomers can create there project and after this a jury (three persons) should rate each project with four categories.
how can i integrate the custom temlate tag to the form so that every person of the jury can create a rate for each project?
i looked to your sample where you use the tags to create the radio button lists.and for displaying the rates this:The displaySelectImage template tag is then configured as below to show the rating image for Facilities.but i have no idea how can i join my form for creating a project and the select1 tag for the rating.
thanks for help
Submitted by: dnastone 10 Aug 2011 Categories: xmod Tags: custom tags Required By: Answers: 0 Views: 124 | Regarding the Fileupload control..show details +See answers | Add your answerHi Support,
I have a query..I have added a record in download section in my website, now when I am deleting the record then it should also delete the pdf/doc files also, but this is not happening, How to can I achieve this, as there will be lots of outdated file remains on the server...
Please suggest me
Thanks
Sansugoi
Submitted by: sansugoi 21 Jun 2011 Categories: FileUpload Tags: File Upload Control Required By: 21/06/2011 Answers: 1 Views: 154 | How to use the file size template tag?show details +See answers | Add your answerI want to know how to display that with custom
template tag, is is paid means do I need to buy this tag or how cna I
use this tag. I using the DNN 4.6.2
Please let me know. I had bought the fatgeorge file upload control also, can use that in file upload control?
Submitted by: sansugoi 16 Jun 2011 Categories: XMod Tags: File Size Required By: Answers: 0 Views: 135 | Regarding the File Size Template tagshow details +See answers | Add your answerHi ,
I want to display the file size in my download section, I want to know how to display that with custom template tag, is is paid means do I need to buy this tag or how cna I use this tag. I using the DNN 4.6.2
Please let me know. I had bought the fatgeorge file upload control also, can use that in file upload control?
Thanks
Sansugoi
Submitted by: sansugoi 15 Jun 2011 Categories: FileUpload Tags: file size template tag Required By: Answers: 3 Views: 151 | Regarding the File Upload Controlshow details +See answers | Add your answerHi ,
I want to use the file upload control, Is there any facility to count the clicks...
Thanks
Sansugoi
Submitted by: sansugoi 20 May 2011 Categories: FileUpload Tags: File Upload Required By: Answers: 1 Views: 209 | change the prefixshow details +See answers | Add your answerHi
When the file is stored in the file system using thumbnails, is it possible to change the prefix from thm_Â to thumb_ ?
Paul
Submitted by: pkgibson 2 Dec 2010 Categories: FileUpload Tags: prefix Required By: Answers: 1 Views: 165 | Tagcloud Moduleshow details +See answers | Add your answerI am trying to get the Tagcloud module working with XMod but having no joy. I can't see what I have done wrong. I have installed it successfully through the Xmod Admin and carefully followed the instructions provided by the url below However it just not show anything in the module. My New tagcloud form is as below with the Tabid and module id of the main Xmod module as described in the URL. Can anyone help with this
Submitted by: markh 7 Jun 2010 Categories: DNN,Tag Cloud,XMod Tags: DNN, Tag Cloud, XMod Required By: 08/06/2010 Answers: 0 Views: 314 | Custom Template Tagshow details +See answers | Add your answerHello,
I've asked about the possibility of sponsoring a custom template tag here and on DNNDEV.com, but I haven't heard anything in over a week. Is there a way I can correspond with you directly? Even if you don't have time to develop a tag right now, I'd like to pass you the exact specifications and find out if it is even possible.
Thanks, Brent
Submitted by: brent 1 Feb 2010 Categories: XMod Tags: tag Required By: Answers: 0 Views: 344 | Record View Count by USERIDshow details +See answers | Add your answerI see that you have a generic view record count control. Is there a way this can be modified to display to a registered user how many times they have viewed a record's detail view?
Submitted by: brent 15 Jan 2010 Categories: XMod Tags: view count Required By: Answers: 1 Views: 367 | Question Regarding the validation of fileupload control..show details +See answers | Add your answerHi, Â My Question is regarding the validation of Fileupload control.How to make a file upload control as mandatory, the form should not be submitted untill the file uploaded.I watn user to upload the file if the user click on submit button without uploading the file it should give some message like "Please Upload file to continue" .IT's very urgent so please suggest me I am using the fatgeorge fileupload 3.2. Thanks in advance Sansugoi
Submitted by: sansugoi 22 Oct 2009 Categories: FileUpload Tags: FIleUpload ,Xmod,DNN Required By: 23/10/2009 Answers: 1 Views: 512 | Versionsshow details +See answers | Add your answerWhat is the latest version of the module syndication? I have a website with dnn 04.09.04 and syndication 1.4 supposedly that XMOD version I have? The task "fatgeorge.Syndication.xRss, fatgeorge.Syndication" is taking a long time and still does not finish the play! when I say long been the order of 20000x more.
Submitted by: nneves 9 Sep 2009 Categories: Syndication Tags: Version, xmod, syndication Required By: 9/9/2009 Answers: 1 Views: 421 | Problem with fileuploadshow details +See answers | Add your answerI cannot get the required attribute to work I have a client that needs to require 3 of 5 images be required. But even though the documentation states that there is a required attribute, it does not work. Can you help?
Submitted by: bigdgentry 18 Jun 2009 Categories: FileUpload Tags: fileupload required Required By: 6/19/2009 Answers: 1 Views: 498 | Pre-sales enquiryshow details +See answers | Add your answerHi,
I'm getting rather frustrated with the built-in RSS syndication in DNN and I was wondering whether your Syndication for Xmod would meet our requirements?
I've created several pages with an article on each with the standard Text/HTML module. I've then ticked the 'Allow Syndicate?' box under Page Settings for each page. This only which only gives me single articles. When I import these feeds into a desktop feed reader (Fresh or Sharefire), each feed has the same title (ie - the portal name) and of course shows only one article at a time.
If we went down the XMod route to create a simple article manager, could we use your module to: - Create several feed categories/sections on the same portal/site, so that I have several feeds all with multiple articles/pages in them. The titles of these categories/sections should show up in the feed reader.
- Choose how much of the article is shown in the feed (We need it to be the whole article, not a summary or a word limited length)
We're using DNN version 5.1 and XMod version 5.01.
thanks!
Nigel
Submitted by: NigelB 21 May 2009 Categories: XMod Tags: RSS, syndication Required By: Answers: 1 Views: 535 | cannot get XMOD RSS to work!show details +See answers | Add your answerBear with me.... very frustrated! I simply cannot get the schedule for the XMOD RSS package to work. It takes forever to try and run, and eventually fails with the message "getFeed: Arithmetic operation resulted in an overflow"Â in the schedule notes. I have installed all the patches, done everything by the book, lodged help requests, and nada. Please help if you can!
Submitted by: wiredkiwi 14 May 2009 Categories: XMod Tags: rss Required By: Answers: 1 Views: 528 | Caption and Full images not workingshow details +See answers | Add your answerI cannot get the caption to come up, it just shows Test (this was a previous record). All images I upload use the Test caption. Also the resize image is not working i.e. the larger image is the same size as the thumbnail. Please help. Â
Submitted by: turnerl 23 Apr 2009 Categories: FileUpload Tags: caption, resize Required By: Answers: 0 Views: 475 | How to send XMOD content periodically by email?show details +See answers | Add your answerHello,  I need to send the ouptup of an XMOD module periodically by email to certain roles. More or les like an automatic newsletter with the news of the previous 7 days.  Does anybody know a way to do it?  Is the xScheduler module aimed to do it?  thanks!
Submitted by: lodani 9 Apr 2009 Categories: XMod,xmod Tags: email, scheduler, xmod Required By: Answers: 1 Views: 543 | my form cant open an moreshow details +See answers | Add your answerMy forms cant open anymore, and i get this message:
Arithmetic operation resulted in an overflow.
DotNetNuke.Services.Exceptions.ModuleLoadException: Arithmetic operation resulted in an overflow. ---> System.OverflowException: Arithmetic operation resulted in an overflow. at fatgeorge.FileUpload.FileUpload.InitFormControl(Int32 XModId, PortalModuleBase pmc) at KnowBetter.XMod.XModEdit.SendCustomFormControlEvent(CustomFormControlEvents evt, ArrayList alCustomControls) at KnowBetter.XMod.XModEdit.Page_Load(Object sender, EventArgs e) --- End of inner exception stack trace ---
This is the form:
can anyone help?
br
Bo
Submitted by: bo@boh.dk 4 Apr 2009 Categories: FileUpload Tags: forms Required By: Answers: 2 Views: 486 | How Flexible is ATXshow details +See answers | Add your answerCan I customize ATX to fit my own needs? I consider myself an XMod Expert using it for years now. Â I have an immediate need for an ATX functionality to integrate with an Active Social Site. I would need two Category Type Selections. One for Geography and One for Product Type. Is this doable? Â Let me know what you think and what all I get with ATX. Â Cliff
Submitted by: cliff 3 Apr 2009 Categories: DNN,XMod Tags: ATX customization Required By: 4/6/2009 Answers: 2 Views: 415 | |
Ask A Question |
| | |
|  |
|