• Case Manager
  • NEWBIE
  • 65 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 2
    Likes Received
  • 0
    Likes Given
  • 12
    Questions
  • 6
    Replies
Hi,

I have created a visualforce page for the community login, when I choose login page as my custom visualforce page I am getting error as displayed below.

Unable to set a VF page as Login page for my community.

I tried assigning all Profiles to that VF page but it still gave me the same error.
User-added image


 
I have a question related to Data Loader, is it possible to insert records from CSV file and corresponding attachments at the same time using Data Loader.  If Yes, how is it possible? If Np, what are the alternatives?
Is it possible to connect to a unix server from APEX code or an API?  My requirement is to connect to a unix server and fetch a csv file and place it in my local directoy. Later using Data Loader I need to upload data from the fetched csv file.  I do not want to user any third party connectors or applications.
I have created a Home Page Component, in that compnent I have added a report using analytics:reportChart.  Its displayed on the Home Page but when I click it, it is being redirected to the page where we can run the report/make changes.  Is there any way to stop it from being redirected to another page.

Component -  homeComp
<apex:component >
<analytics:reportChart reportId="00Oj0000001bHGl" size="small" showRefreshButton="false" cacheResults="false" />
</apex:component>

HomePageComponent

<apex:page sidebar="false" showHeader="true" >    
    <c:homeComp />
</apex:page>
Is there any way to customize Flow screens in vf pages? I know its possible using CSS styles but it is very complicated.  
I have tried to customize using the information provided in the below page but it was not that much useful.
https://www.salesforce.com/us/developer/docs/pages/Content/pages_flows_customize_runtime_ui.htm

Below is my sample code.

<apex:page >
<style>
.requiredInput{
  display: table;
  border-collapse: separate;
  border-spacing: 5px;
}
.labelCol {
    display: table;
  border-collapse: separate;
  border-spacing: 5px;
}
</style>
    <flow:interview name="Survey" />
</apex:page>
I am trying to add a form to a page using site.com,  Forms section is not avaialable in Site.com Page Elements Panel.  I am using Developer edition.  Basically my requirement is to add a form in my community where users can fill & submmit and get appropriate replies from the admin.  My user role is Site administrator and I have enable Site.com Publisher User field on the user detail page.