2
Answers

Pay Pal IPN warning message?

Please check your server that handles PayPal Instant Payment Notification (IPN) messages. Messages sent to the following URL(s) are not being received:

http://myweb.com/ipnhandler.aspx

If you do not recognize this URL, you may be using a service provider that is using IPN on your behalf. Please contact your service provider with the above information.

Once you or your service provider fix this problem, you or your service provider can resend the failed messages from the IPN History page. If this problem continues, PayPal may disable the IPN feature for your account.

Thank you for your prompt attention to this issue.

Thanks,

PayPal

PROTECT YOUR PASSWORD
 
 
i have one pay pal account
but in this account receive payment from multiple website  
 like:amazon, ebay and my own website
 
i want when payment receive from my own website then ipn  notification url read if i will receive payment from another site then ipn notifivation url not read what is possible
 
 
please help.. thanks 
 
 
 
 

Answers (2)

3
Photo of Tapan Patel
NA 8.1k 101k 7y
  1. Select DeptName, sum(salaries)  
  2. from   
  3. T1   
  4. inner join T2 on T1.empid=T2.empid  
  5. group by DeptName  
please mark it as answer if it addresses the issue.
1
Photo of Ravi Sangtani
NA 806 6k 7y
Hi, bala krishna
 
you can write below query....
 
select T1.d_name, sum(T2.salaries) from T1,T2 where T1.id=T2.id group by T1.d_name 
 
NOTE : d_name is department name
 
Happy Coding...
 
Thank you,
(Ravi D. Sangtani)