function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Kim BryantKim Bryant 

Error: Cyclic page or component references '/apex/IPNHandler' are not allowed

Creating a Page to go along with an Apex Class for using PayPal and Salesforce with Form Assembly. I'm using the sample code given by Form Assembly of;
<apex:page>
<apex:page controller="IPNHandlerController" action="{!myIPNupdate}" />
</apex:page>

and continue to get the above mentioned error
Best Answer chosen by Kim Bryant
bob_buzzardbob_buzzard
You don't need the first <apex:page> element - just start with the one that defines the controller, so:

<apex:page controller="IPNHandlerController" action="{!myIPNupdate}" />
</apex:page>

All Answers

bob_buzzardbob_buzzard
You don't need the first <apex:page> element - just start with the one that defines the controller, so:

<apex:page controller="IPNHandlerController" action="{!myIPNupdate}" />
</apex:page>
This was selected as the best answer
SANDEEP CHITTINENISANDEEP CHITTINENI
Thank You For the answer