News:

AbanteCart v1.4.3 is released.

Main Menu
support

Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - James

#46
General Extensions / Re: SMS / Short Message Extensions
January 03, 2012, 02:06:15 PM
Sorry for multiple post:

Just wanted to mention, That the SMS function can also, be used for Shipping (COD) confirmation.

Wherein, when a user selects COD, he will be asked to confirm a COD Request Code or so on, which when he clicks, will Push an SMS with a Random Generated Code to his Mobile #, And he has to enter the same into the form. and Confirm the COD order.

This will help, From having unwanted orders being added by fun seeking people! with fake addresses and numbers. As only the ones who provide a Mobile number, and verify the COD security code, will be able to confirm the order

this can be an optional feature in later releases maybe. :)


Note : I Personally feel, this could do as a very good paid extension??? if abantecart team dev's it :)
#47
General Discussion / 0.9.2 ? When will it be released
January 03, 2012, 01:04:46 PM
Dear All,

Any idea when will 0.9.2 Version be released for public download? and will it be good for live deployment?


Thanks,
Jmz
#48
Quote from: elpas0 on January 03, 2012, 07:51:05 AM
i check ccavenue.com
did not find good documents or sdk for developers
but there are implementations of this payment module for OSC, zen and other open-source projects

so you can take paypal module as an example
and update it using code from other cart

elpas0, Thanks :) I got the documentation from them,  I have added the link below. (cant attach here due to size restriction)

http://www.4shared.com/office/oZTCbzMa/CCAVenueIndiaIntegrationManual.html
#49
I feel, This could benefit Many cart owners. (even to market new products) as this could allow them to not just remind of orders pending payment, but also additional market new products in the email content :)

I have noticed a lot of Ecomm sites using this technique :)
#50
General Extensions / Re: SMS / Short Message Extensions
January 03, 2012, 03:14:10 AM
Quote from: James on January 03, 2012, 03:02:38 AM
First Question Related to this topic.

1. What is the best way to achieve, the ability to call a function, when a admin user updates the status of an order.
2. The aim is to send an SMS nottification, When the Status of an order is updated from any of the admin section, just like there is a Send an email notification tick box while updating the order status.
3. When the admin selects the tick box to send sms along with email, the function (Code added below needs to be run). what would be the best adviced way to implement it, without having to worry about future cart updates affecting the deployment of this feature.

Note : There will be a need to be able to configure, What the Message Templates would be for each Order Status update, Also There will be the need to carry out some checks on the (Telephone number) of the user before this function is run to see if they have provided valid mobile number.

The same mobile number needs to be retrieved to be assigned to $msisdn and the preset template of message needs to be retreived as well based on the status update of the order (also note the message content will have msg templates for each order status) however, there should be ability to retrieve values such as order number, amount and order status (to be dynamically added into the msg content)

Dear All, Also i am not soo good at php. :) so i have decided to wait it out for advice from you guys rather than make any changes on the code myself and ruin it :)

PS : Also Each SMS being sent out, will need to be stored in a table sms_out. with ID/MSISDN/MESSAGE/ORDERID/DATETIME/MSGSTATUS

Also, This SMS feature, while being configured from admin area, should have an option to be selected if the admin wants the sms to be sent thru SMSC/or WEB API's
The configurations and checks needed in both cases would be the same, except for the actual function to send sms :)
Hopefully once the SMSC method is worked out, the web based API method can also be implemented.


require_once('smppclass.php');

$smpphost = "127.0.0.1";
$smppport = 2775;
$systemid = "james";
$password = "james";
$system_type = "james ";
$from = "AbanteCart";

$msisdn = "8698966383";
$msg = "Your Order # 2023, Amounting to $ 250/- Has been Dispatched";

$smpp = new SMPPClass();
$smpp->SetSender($from);
$smpp->Start($smpphost, $smppport, $systemid, $password, $system_type);
$smpp->TestLink();
$smpp->Send($msisdn, $msg);
$smpp->End();

#51
General Extensions / Re: SMS / Short Message Extensions
January 03, 2012, 03:02:38 AM
First Question Related to this topic.

1. What is the best way to achieve, the ability to call a function, when a admin user updates the status of an order.
2. The aim is to send an SMS nottification, When the Status of an order is updated from any of the admin section, just like there is a Send an email notification tick box while updating the order status.
3. When the admin selects the tick box to send sms along with email, the function (Code added below needs to be run). what would be the best adviced way to implement it, without having to worry about future cart updates affecting the deployment of this feature.

Note : There will be a need to be able to configure, What the Message Templates would be for each Order Status update, Also There will be the need to carry out some checks on the (Telephone number) of the user before this function is run to see if they have provided valid mobile number.

The same mobile number needs to be retrieved to be assigned to $msisdn and the preset template of message needs to be retreived as well based on the status update of the order (also note the message content will have msg templates for each order status) however, there should be ability to retrieve values such as order number, amount and order status (to be dynamically added into the msg content)

Dear All, Also i am not soo good at php. :) so i have decided to wait it out for advice from you guys rather than make any changes on the code myself and ruin it :)

PS : Also Each SMS being sent out, will need to be stored in a table sms_out. with ID/MSISDN/MESSAGE/ORDERID/DATETIME/MSGSTATUS


require_once('smppclass.php');

$smpphost = "127.0.0.1";
$smppport = 2775;
$systemid = "james";
$password = "james";
$system_type = "james ";
$from = "AbanteCart";

$msisdn = "8698966383";
$msg = "Your Order # 2023, Amounting to $ 250/- Has been Dispatched";

$smpp = new SMPPClass();
$smpp->SetSender($from);
$smpp->Start($smpphost, $smppport, $systemid, $password, $system_type);
$smpp->TestLink();
$smpp->Send($msisdn, $msg);
$smpp->End();
#52
Dear Team,

Is there any possibility of this happening ?

1. A Customer adds one or few products to the cart.
2. Heads on to checkout and selects payment methods on the payment gateway
3. And leaves without completing the payment.

Will there be any feature in the next release, that will allow the admin's to set a predefined duration after which an alert email will be sent to such customers, with an alert stating ....

"Dear Customer, there are some items in your cart waiting for your attention at AbanteCart.com"
and the body of the email should contain some latest products list or so on.

Thanks guys... I feel this would be a great feature..
#53
News and Announcements / Re: Happy New Year!!
January 02, 2012, 08:00:58 AM
A Very Happy New Year To AbanteCart Team as well :)
#54
General Extensions / Re: SMS / Short Message Extensions
December 31, 2011, 12:31:31 AM
Thought it would be of help, to attach some resources i have had.

1.  SMPPSim.rar this has a SMSC simulator, which simulates live Telco SMSC servers, hence allowing to test applications locally without having to connect to live Telco servers and pay them for the services.

download smscsim from here (attachment size 800kb+) http://www.4shared.com/rar/ZVZ7qKJ0/SMPPSim.html

2. smppclass.rar a php based class i have had for some time, which works just fine and can be modified to work in better ways to send across sms to these SMSC's of Telco using SMPP protocol.

Steps to follow to test the same.
1. smpp.php file has  sample test script
2. smppclass.php is the class for smpp protocol (still lots need to be covered)
3. You can modify the smpp.php file to suit your local setup, by configuring the
$smpphost , $smppport, $systemid, $password and $system_type and $from.
These are preset to the simulators configuration for now for ease of use.
4. Simulator's configurations can be changed by going into directory conf->smppsim.props.props file can be opened in any text editor.
5. Run the "startsmppsim batch file"
6. Run the smpp.php file from any local server. and you should get the output on the web end.
and see the incoming messages on the SMSC simulator.


This is for SMPP based PHP conectivity to SMSC's

For web based, API's of Telco Operators, i shall share resources soon :)

Any feedback most welcome, I will be trying to incorporate the above setup into our installation of abantecart. will upload the progress soon :)
#55
Quote from: abantecart on December 30, 2011, 07:39:02 AM
Yes. This is not right. We will change that.

You are welcome to report any bugs if you find to http://code.google.com/p/abantecart/issues/list

Thanks, for the link, have reported few there :) not sure if all of them are bugs, yet have reported few i couldn't find any visible solutions too.
#56
It would be of great help i personally believe :) as currently if the store is big, then the brand list can get huge :) that's whats happening in our case.

If brands can be mapped to categories or somehow related, and only brands relevant to that category is displayed it would be great i believe..

btw when is the next release expected? as currently on the admin of 0.9.1 Version it says..

"AbanteCart V0.9.1Alpha is a current shopping cart version intended for review and is not recommended to be used as production yet. Upgrade is commit soon and you will see notification"

can we expect the production version to be out soon?
#57
Dear Team,

A quick query, i am not sure if this exist, if this does not exist it would make a good feature.

Does the payment modules extensions support real time update of the payments status?

For example, if user A buys products makes the payment thru Payment Gateway xYz, and there is a provision from the payment gateway to use webservices either to call or recieve, the status of the payments.

Please do advice...
#58
Appreciate your response :) That was helpful .. Incase anything arises we shall surely post on here :)
#59
Quote from: abantecart on December 30, 2011, 07:54:16 AM
I guess, you can just follow any existing payment extension that is close in approach. Copy it and create an new one.
Many payment gateways similar in approach. But unfortunately, we do not know much about Indian payment systems.

If you are wiling to contribute this module to community, we can help you if you run into issues.



I will try, as i am too bad at PHP coding, however let me try and share the progress of the same here. :)
#60
General Extensions / SMS / Short Message Extensions
December 30, 2011, 06:34:38 AM
Dear All,

I think there should be in the future release, a new extension or feature covering the ability for owners of store to.

Allow integrating the ability to send SMS to their users, from the store based on the activities or on predefined actions.

Possible methods that can be incorporated are, by calling Web based API's or so from providers of SMSC/SMPP access.

or even writing a SMPP class to take care of the need, to communicate using SMPP protocol with the SMS providers.

Or ability to integrate with third party providers, such as "routesms.com" or other providers of SMS features.

REgards.
JAmes

Forum Rules Code of conduct
AbanteCart.com 2010 -