• KKarthik
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
Hello,

Trying to Install the Mobile Pack for AngularJS into Dev Org, getting the following error on Package installation. 

AppExchange Package is Deprecated   The AppExchange package has been deprecated and can no longer be installed.

Please try installing a newer version, or contact the package owner directly to resolve.

Can anyone share me the updated package install URL. The link that i followed is https://developer.salesforce.com/en/mobile/getting-started/html5#angularjs

Package URL : https://login.salesforce.com/packaging/installPackage.apexp?p0=04ti0000000Vc60

Thanks,
Karthik Kornalies

I am using Sites to create a custom VF portal login page.  The custom VF portal login page works except when an invalid username and/or password is submitted.  When an invalid username and/or password is submitted, the default SF portal login page is displayed and not the current custom VF portal login page.  Is there a parameter that can be passed to the login_portal.jsp to redirect to the current custom VF portal login page.   Here is the current code:

 

 

Global pageReference login()
  {
    String startURL = 'https://naX.salesforce.com/secur/login_portal.jsp';
    startURL += '?orgId=00Dxxxxxxxxxxx&portalId=060xxxxxxxxxx&loginType=3';
    startURL += '&startURL='; 
    startURL += '&loginURL=';
    startURL += '&useSecure=true';
    startURL += '&un=' + username;
    startURL += '&pw='+ password;
    startURL += '&retURL=http://npifinancial.force.com/SmartSpend';
    
     pageReference p = new PageReference(startURL);
     p.setredirect(true);
     return p;
    
  }

 

 

  • September 22, 2010
  • Like
  • 0