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 ForumsDocumentsDocumentsCannot download files via SSLCannot download files via SSL
Previous
 
Next
New Post
3/13/2007 3:16 PM
 

I had the same problem using a Cisco vpn 3002 SSL VPN connection. I found this, It seemed to fix my problem. I ran this on a non production server. I'd use caution on a production machine since this will set all the DNN folders to all user access. Otherwise modify the script.

You can set folder permissions to everyone  for all folders in your filesystem through an sql script.
Run this script from host > sql, and all your folders, in all your portals will have read permissions for all users set.

**********************************************************************************************************************************************

declare @PermissionID int
select @PermissionID = PermissionID from {objectQualifier}Permission where PermissionCode = 'SYSTEM_FOLDER' and PermissionKey='READ'

declare @FolderID int
DECLARE FoldersCursor CURSOR FOR
  Select FolderID from {objectQualifier}Folders

OPEN FoldersCursor

FETCH NEXT FROM FoldersCursor
  into @FolderID

WHILE @@FETCH_STATUS = 0
BEGIN

   if not exists (select * from {objectQualifier}FolderPermission where (PermissionID = @PermissionID) and (FolderID = @FolderID) and (RoleID=-1))
   begin
   insert into {objectQualifier}FolderPermission (FolderID, PermissionID, RoleID, AllowAccess) values (@FolderID, @PermissionID, -1, 1)
   end
   FETCH NEXT FROM FoldersCursor
     into @FolderID
END

 

 
New Post
6/12/2007 4:22 AM
 
I had a similar problem which sporadically occurred using IE6.
I had developed a custom module which exported files to Excel similar to the documents module - it used code similar to zawmn83's post but was missing the Response.ClearHeaders() call. I added this in, recompiled, and all okay again - thanks.

If this is still an issue with the Documents module, a bug needs to be raised in Gemini for it with zawmn83's suggested fix.
 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsDocumentsDocumentsCannot download files via SSLCannot download files via SSL


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