Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter Vladimir Gonchar

    (@bob_2222)

    help. what is the problem?

    Warning: Cannot modify header information – headers already sent by (output started at /var/www/rus/data/www/s.2gj.ru/wp-includes/post-template.php:1187) in /var/www/rus/data/www/s.2gj.ru/wp-content/plugins/paypal-frontend-registration/registration_form.php on line 211

    Plugin Author Prakash

    (@prakash30)

    Sorry for late response .

    Can you please send me the FTP details on my below email Id.
    I will resolve that problem and get back to you.

    Email : prakashparghi.parghi61@gmail.com

    I had the same problem. how to fix this?

    Plugin Author Prakash

    (@prakash30)

    Hello sapta7,

    This problem is just because of spaces on the file.
    Please remove all blank spaces and try once more.
    for more explanation please check below link.

    Check this out

    /***************************/
    If after this still you facing this problem then replace code ..

    // Redirect to paypal IPN
    
    				if($sandboxenable==1)
    				{
    					header('location:https://www.sandbox.paypal.com/cgi-bin/webscr'.$querystring);
    				}
    				else
    				{
    					header('location:https://www.paypal.com/cgi-bin/webscr'.$querystring);
    				}

    With below one..

    // Redirect to paypal IPN
    
    				if($sandboxenable==1)
    				{ ?>
                       <script type="text/ecmascript">
    						window.location="https://www.sandbox.paypal.com/cgi-bin/webscr"+"<?php echo $querystring; ?>";
    					</script>
                       <?php
    				}
    				else
    				{ ?>
    					<script type="text/ecmascript">
    						window.location="https://www.paypal.com/cgi-bin/webscr"+<?php echo $querystring; ?>;
    					</script>
    					<?php
    				}

    /************************************************/

    After this both solution still you getting this same problem then let me know i will manage another solution for you.

    Plugin Author Prakash

    (@prakash30)

    Please try the above process and let me know if you still facing any problem. i will resolve it and updates you ASAP.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Question Paypal Frontend Registration’ is closed to new replies.