Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Why upload document is disable?

web-app

In document manager, why "upload document" Tab is gray? can not click.

btw: on "Browse Files" Tab, click "new Folder", popup error windows said "Create not allowed".

zdg
· 1
zdg
Replies (17)
helpful
0
not helpful

This is becuase you need to give write permissions to the ASP.NET worker process on the folder.


Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

what's folder name? what's full directory?

We are set write permissions to the ASP.NET worker process on the all folder, but don't solve this problem.

maybe some config can not setting?


zdg
· 1
zdg
helpful
0
not helpful

Ok, sorry.

You need to open the RichText.ascx file (under controls) and add the following to the RAD editor tag:

UploadDocumentsPaths="~/controls/RAD/UserTemplates" DocumentsPaths="~/controls/RAD/UserTemplates"

Then give permissions on the UserTemplates folder (under controls) to the asp.net worker process.


Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

Thanks...
Problem been solved...


zdg
· 1
zdg
helpful
0
not helpful

I did added the line in the RichText.ascx file as follow and added ASPNET user to have modify access to the UserTemplates folder but when i clicked on DOCUMENT tab on Gemini page, nothing i can do to upload my document, no browse button or anything that allows me to upload file:

<%@ Control Language="c#" AutoEventWireup="True" Codebehind="RichText.ascx.cs" Inherits="CounterSoft.Gemini.RichText" TargetSchema="http://schemas.microsoft.com/intellisense/ie5" %>

<telerik:RadEditor runat="server" ID="RadEditor1"
    Skin="Default2006"
    ToolsFile="~/controls/RAD/EditorTools.xml"
    EditModes="Design, Preview">
    <TemplateManager
     ViewPaths="~/controls/RAD/UserTemplates"
     UploadPaths="~/controls/RAD/UserTemplates"
     DeletePaths="~/controls/RAD/UserTemplates"
    
     />
    <ImageManager  EnableImageEditor="true"
     ViewPaths="~/controls/RAD/UserImages"
     UploadPaths="~/controls/RAD/UserImages"
     DeletePaths="~/controls/RAD/UserImages"
     >
     </ImageManager>
     <DocumentManager
     UploadDocumentsPaths="~/controls/RAD/UserTemplates"
     DocumentsPaths="~/controls/RAD/UserTemplates"

     ViewPaths="~/controls/RAD/UserDocuments"
     UploadPaths="~/controls/RAD/UserDocuments"
     DeletePaths="~/controls/RAD/UserDocuments">
    </DocumentManager>
    <Content>
   
</Content>
    <SpellCheckSettings SpellCheckProvider="PhoneticProvider" WordIgnoreOptions="None" />
</telerik:RadEditor>
   
<asp:textbox id="txtTextBox" runat="server" Visible="False" TextMode="MultiLine" Height="352px" Width="600px"></asp:textbox>
<asp:requiredfieldvalidator id="rfvValidator" runat="server" Visible="False" ErrorMessage="RequiredFieldValidator" Enabled="False"></asp:requiredfieldvalidator>&nbsp;


kha
· 1
kha
helpful
0
not helpful

It seems like I put those 2 lines in the wrong place.  I got this error when I clicked on Create Issue

[img]http://img215.imageshack.us/img215/606/errors.jpg[/img]


kha
· 1
kha
helpful
0
not helpful

Please try:

<DocumentManager

ViewPaths="~/controls/RAD/UserDocuments"

UploadPaths="~/controls/RAD/UserDocuments"

DeletePaths="~/controls/RAD/UserDocuments" />


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

It doesn't do any good.  Still don't see anything in DOCUMENT tab.  Here is my code in RichText file again:

<%@ Control Language="c#" AutoEventWireup="True" Codebehind="RichText.ascx.cs" Inherits="CounterSoft.Gemini.RichText" TargetSchema="http://schemas.microsoft.com/intellisense/ie5" %>

<telerik:RadEditor runat="server" ID="RadEditor1"
    Skin="Default2006"
    ToolsFile="~/controls/RAD/EditorTools.xml"
    EditModes="Design, Preview">
    <TemplateManager
     ViewPaths="~/controls/RAD/UserTemplates"
     UploadPaths="~/controls/RAD/UserTemplates"
     DeletePaths="~/controls/RAD/UserTemplates"    
     />
    <ImageManager  EnableImageEditor="true"
     ViewPaths="~/controls/RAD/UserImages"
     UploadPaths="~/controls/RAD/UserImages"
     DeletePaths="~/controls/RAD/UserImages"
     >
     </ImageManager>
     <DocumentManager
     ViewPaths="~/controls/RAD/UserDocuments"
     UploadPaths="~/controls/RAD/UserDocuments"
     DeletePaths="~/controls/RAD/UserDocuments" />

    <Content>
   
</Content>
    <SpellCheckSettings SpellCheckProvider="PhoneticProvider" WordIgnoreOptions="None" />
</telerik:RadEditor>
 
<asp:textbox id="txtTextBox" runat="server" Visible="False" TextMode="MultiLine" Height="352px" Width="600px"></asp:textbox>
<asp:requiredfieldvalidator id="rfvValidator" runat="server" Visible="False" ErrorMessage="RequiredFieldValidator" Enabled="False"></asp:requiredfieldvalidator>&nbsp;


kha
· 1
kha
helpful
0
not helpful

Which version of Gemini are you running?


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

3.1


kha
· 1
kha
helpful
0
not helpful

Are the buttons not enabled? Do you have any files in the directory?

You might need to give permissions to the IIS user on the folder.


Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

This is all i have on the document page: http://img132.imageshack.us/img132/6164/documentx.jpg

I have couple issues with attachments in this project. Are they supposed to show up on the Document page?

Do you mean give IIS user both read and write access to the folder UserTemplates (under Controls\RAD directory)?


kha
· 1
kha
helpful
0
not helpful

The project document page will not show issue attachments. This is a repository for your project, such as documentation, project plans etc...


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

Then the question is: how do I get the documents (i.e. projects plan, etc.) to display on Gemini (specifically on Document page)?


kha
· 1
kha
helpful
0
not helpful

Righ click on a folder or on the blank area to upload a file.


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

Thanks SaarCohen!

I would have never figured it out that right clicking on the blank area will allow you to upload the file.  Is there any instruction for it documented anywhere?

Does the latest version of Gemini has some kind of instruction right on the Document page to tell user what to do to upload/delete the document?


kha
· 1
kha
helpful
0
not helpful

We don't have this at the moment. Feel free to add it to our list: http://gemini.countersoft.com


Mark Wing
· 9108
Mark Wing