 |
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: 24 | 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: 62 | 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: 61 | 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: 66 | 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: 70 | 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: 348 | 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: 372 | 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: 363 | 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: 357 | Xmod instance data for file uploadshow details +See answers | Add your answerHi I've been trying to query Xmod data outside of xmod and when I select the fileupload data as such: select dbo.DNN4_KB_XMod_ExtractFieldValue(InstanceData,'FileUpload') as 'File1' from DNN4_KB_XMod_Modules WHERE FormID=25 I get the full name and location like this:- - /Portals/30/images\flickas\fullsize\/sam_20090207_063936.jpg
I'd like to have the file name and location in different fields without the tags. Do you know how I might do this? thanks gus
Submitted by: angusbeare 16 Feb 2009 Categories: FileUpload,XMod Tags: xmod dnn file upload sql instance data Required By: Answers: 1 Views: 372 | FIleUpload v3.5show details +See answers | Add your answerour company has purchased fileupload v3.2 i believe from snowcovered. Do we have to buy v3.5 to get the new features or is there a patch available for someone who has an older version?
Submitted by: jrip73 7 Jan 2009 Categories: FileUpload Tags: fileupload v3.5 Required By: 1/7/2009 Answers: 1 Views: 340 | | Error during installshow details +See answers | Add your answerEncountered the following error during install: ===================== Error During Install.
Installation Log:
Starting Installation
Reading files
Loading Fatgeorge File Upload Custom Control for XMod.pdf
File fatgeorge file upload custom control for xmod.pdf read successfully
Loading FileManager.zip
File filemanager.zip read successfully
Loading Readme.txt
File readme.txt read successfully
Loading fatgeorge_fileupload_3_5_0.zip
File fatgeorge_fileupload_3_5_0.zip read successfully
Did not find any installation file (.xmi)
Errors and/or warnings were encountered while attempting to install file. Please refer to the installation log for more details. ===================== Just downloaded version from fatgeorge.co.uk site. Any help would be appreciated. We are under a time crunch to get a site up ...
Submitted by: bugbutcher 30 Dec 2008 Categories: FileUpload Tags: Install Error Required By: 12/30/2008 Answers: 1 Views: 388 | Dynamic Upload Directoryshow details +See answers | Add your answerDoes the file upload control have the capability of a dynamic upload directory? I have an Xmod form where I am allowing multiple companies upload documents. I would like to the upload control to put the each company's files in a separate folder. All of Company A's files would go into a folder called Company A. All of Company B's files would go into a folder called Company B. Is this possible? Thank you.
Submitted by: ajhintze 10 Dec 2008 Categories: FileUpload Tags: dynamic upload directory Required By: Answers: 1 Views: 283 | capture .pdf thumbnail - feature requestshow details +See answers | Add your answerHi I've built a database of articles consisting of .pdf files. I'd like a thumbnail of each PDF to be created when the file is uploaded. i.e. the front page of each document is converted into a thumbnail and stored as are image thumbs. Any chance this might be available in a future release?
Submitted by: angusbeare 2 Dec 2008 Categories: FileUpload Tags: PDF Required By: Answers: 1 Views: 417 | bulk file upload for fatgeorge file uploadshow details +See answers | Add your answerHi fatg I've been using your xmod file upload control for some time and it works well. I have a little application which stores an uploaded image and caption and displays the images in various templates around a site. Problem is I have an archive of shots I want to upload but this takes forever doing one at a time in the xmod interface. I want to upload 500 or so with ftp and then edit the captions later (or upload them with captions in text file). Ideally I want to upload all the images into a directory and then import a comma delimited file with all the captions and image names. Do you have any ideas how I might do this? It could save me a lot of time. cheers Gus
Submitted by: angusbeare 21 Nov 2008 Categories: FileUpload Tags: fileupload,dnn,xmod,fatgeorge,ftp,bulk,upload Required By: Answers: 1 Views: 283 | Uploading 2 files at a timeshow details +See answers | Add your answerHello i would ike to upload 2 files at a time, an image and a PDF, i have had no lck in setting up 2 upload inputs... can someone please help me ?
Submitted by: baleric 20 Oct 2008 Categories: FileUpload Tags: 2 uploads, upload, ,multiple, Required By: 10/22/2008 Answers: 1 Views: 275 | How to handle broken image display in XMod?show details +See answers | Add your answerI'm using the latest version of fatgeorge file upload and using it to load images on an item.
Allthough 95% of the records have images, the ones that don't end up showing broken image icons (because there isn't any image). How do you handle mixed records where some have images, and some don't?
Submitted by: admin 5 Aug 2008 Categories: FileUpload,XMod Tags: image,display,no-image Required By: Answers: 1 Views: 262 | How to delete uploaded image when editing XMod record?show details +See answers | Add your answerI'm using the latest version of fatgeorge file upload and using it to load images on an item.
If I upload a file on Monday and come back on Tuesday to edit the record there is no way to delete the existing file/image. It's back to the browse option in the form.
Submitted by: admin 5 Aug 2008 Categories: FileUpload,XMod Tags: delete,uploads,fileupload Required By: Answers: 1 Views: 251 | |
Ask A Question |
| | |
|  |
|