Re: kannel service not restart

2013-09-20 Thread alex Preda
Hello Kannel Team, Thanks Alejandro and Alvaro for your response. i had configured mysql database and create table with name of dlr, my kannel service works fine and sms are send successfully. but didn't get dlr reports and also access.log didn't generate receive dlr

Re: kannel service not restart

2013-09-20 Thread Alejandro Guerrieri
The dlr table only holds dlrs while in transit, they won't get stored long term. You need to create something using your dlr-url to records that. -- Alex Guerrieri On Sep 20, 2013, at 7:26, alex Preda alexpred...@gmail.com wrote: Hello Kannel Team, Thanks

Re: kannel service not restart

2013-09-20 Thread arun sharma
I'm trying dlr-url with url : dlr-url = http://x.x.x.x/rsms.php?sender=%ptext=%a and for store dlr entry im using rsms.php. is it good way to store dlr entry in mysql or i changes required. here is my rsms.php file that are stored in /var/www/html. ?php $con =

Re: kannel service not restart

2013-09-20 Thread alex Preda
I'm trying dlr-url with url : dlr-url = http://x.x.x.x/rsms.php?sender=%p; text=%a and for store dlr entry im using rsms.php. is it good way to store dlr entry in mysql or i changes required. here is my rsms.php file that are stored in /var/www/html. ?php $con =

RE: sqlbox, dlr-url

2013-09-20 Thread Rene Kluwen
Please always copy the users list. Post your log files and config. And maybe there is a user here that can help you. -Original Message- From: iqbal [mailto:iq...@dv9.com] Sent: vrijdag 20 september 2013 11:24 To: rene.klu...@chimit.nl Subject: sqlbox, dlr-url Hi Rene, your advice about

unsubscribe

2013-09-20 Thread Paul
unsubscribe

unsubscribe

2013-09-20 Thread Teodor Arteni
unsubscribe

Re: kannel service not restart

2013-09-20 Thread Alvaro Cornejo
Hi Use a different table for long term storage; else might conflict with kannels registries. in your update statement add AND destination = $destination Regards Alvaro On 9/20/13, arun sharma plak...@gmail.com wrote: I'm trying dlr-url with url : dlr-url =

Re: kannel service not restart

2013-09-20 Thread Willy Mularto
Uncomment dlr-mask On 20 Sep 2013 18:28, alex Preda alexpred...@gmail.com wrote: Hello Kannel Team, Thanks Alejandro and Alvaro for your response. i had configured mysql database and create table with name of dlr, my kannel service works fine and sms are send

Re: KANNEL POST XML:

2013-09-20 Thread johnalero9
Hii, Kindly check and let us know if I am not call proper POST XML in kannel. I am waiting for ur response. Sent from BlackBerry® on Airtel -Original Message- From: John alero johnale...@gmail.com Date: Fri, 20 Sep 2013 00:08:35 To: Alvaro Cornejocornejo.alv...@gmail.com Cc:

Re: kannel service not restart

2013-09-20 Thread spameden
first of all do not use INSERT into statement with $_GET variables, it's an SQL injection. here is an example of proper escaping: ?php $mysqli = new mysqli(localhost, my_user, my_password, world); /* check connection */ if (mysqli_connect_errno()) { printf(Connect failed: %s\n,