29732 comments found.
HELP – I cant login after migration.
I have migrated to another host and followed the instructions given, The site looks like it works and you can browse the restaurants etc…but you cant login either as admin, merchant or customer….
PLEASE HELP….
Hi…..Really would appreciate your help with the login issue…..everything works with the migration apart from being able to log in…..
i think i have got it working
glad to hear that mate cheers 
Hello,
I just bought your script who looks perfect for my idea, but I just have some questions:
1.) If I want to use smtp option, I’m not seeing option to define mail encryption (ssl / tls) and I’m getting error when sending email, my provider need ssl / tls support, and I can’t find what to modify in source code.
2.) If I want to modify some terms, for example “Restaurant” (in default english language, and after I will use translation files), in wich file can I modify it ?
3.) For language files, how it work ? I see the list to select the country before uploading the file, this I understand, but if in my country (Belgium) we have more than one language (be-fr, be-nl, etc. ... ?), how to proceed ?
Thank’s in advance,
Regards
hi mate
thanks for purchasing 
1. open the file config/main.php
add ‘SMTPSecure’=>’tls’ see below
'Smtpmail'=>array(
'class'=>'application.extension.smtpmail.PHPMailer',
'Host'=>"YOUR HOST",
'Username'=>'YOUR USERNAME',
'Password'=>'YOUR PASSWORD',
'Mailer'=>'smtp',
'Port'=>587, // change this port according to your mail server
'SMTPAuth'=>true,
'ContentType'=>'UTF-8',
'SMTPSecure'=>'tls'
),
2. just simply create a language file called english then translate it from there and set that englisg lang file as default
3. you can set in the fields Enter language Name ?
Friend, you have translation in Portuguese-br? Thank´s
hi mate
yes i have but its not completed someone contributed those but its not complete
Hello Basti
Just one question, how to make this image (menu pic) bigger. need to add +20% bigger size 
try to add this on assets/css/store-v2.css at the very end
.menu-3 .menu-item .col-md-2 img {
max-width: 70px;
}
Thank you basti! Succesful!
cheers 
Hi, my step 2 doesn’t go futher than creating database. Can you please check this for me the domain name is thuishalal.be.
hi mate
can you try http://thuishalal.be/install2.php if you still you cannot install send me your ftp access and database credentials
email me here https://codecanyon.net/user/bastikikang#contactleave a comment here once you send it so i will be notified
Hi Basti ,
we want to integrate Paytm payment gateway , please let me how to do that , https://paytm.com/business/payments/developers
Thanks.
hi mate
i suggest hire a developer adding payment gateway is not very easy
please follow one of the payment gateway how its added
Facebook Login is not working when visiting, yourwebsite.com/signup
hi mate
it should work
check my demo
make sure you have correct facebook settings
Hi
In your back end, when you click in export some data this download a .csv. How do I activate this in my back end?
Thanks
sorry which one?
For example, to export Merchant Sales Report
sorry mate that is already there ?
can you send me the screenshot where is this?
your back end download a .csv when click in export https://www.dropbox.com/s/7fd1gum9xj4h2hg/csv.png?dl=0
The mine show this https://www.dropbox.com/s/fu1fodhza21in8t/mine.png?dl=0hi mate it should ask you to save as csv
anyways can you send me your admin login and ftp access so i can investigate
email me here https://codecanyon.net/user/bastikikang#contactleave a comment here once you send it so i will be notified
I send the email.
Thanks
hi mate
sorry for late reply sorry but the ftp you send me is not working
can you send a working one?
Sorry, I’ve forwarded the data to you. I hope it works now.
Thank you Regards.
reply sent
reply sent 
reply sent
Hi mate Sorry, I sent you an email on the 8th, but forget to warn you. Do you know anything about the problem?
Thank you
hi mate
sorry for very very late reply can you send me again the access? sorry i lost your email maybe i can check it using your cpanel since i cannot access using ftp
leave a comment here again once yous end it
Don´t worry, I have sent you the reply.
Thank you
hi mate
i just check your server it seems the issue is in your server
the php header is not working am not sure why 
even i tried to view your phpinfo its not showing as well so this might be issue in your server
Ok, I’ll try to contact them. I ask them something specific?
Thanks
ask them why this is not working
@header("Content-type: application/vnd.ms-excel");
reply sent
reply sent
hi mate
sorry but that is got nothing to do with the csv issue 
to be honest am using this csv code for a long time
and am not sure why its not working in your server 
hi,
How can i make Admin SMS credit to be applied for all the merchants SMS transaction.
go to admin -> SMS Settings ->Use admin SMS credits to send SMS?
and tick Use admin SMS credits to send SMS?
hI,
And one more thing is that, How to set SMS Template common for all merchants from Admin. SO that SMS like… Order Placed , Order Processing, Order on the way etc
hi mate
sorry those are not available right now 
Hello basti,
Can you advise if custom work can be done to create a portal so customers can call in to a call center and place their order?
In addition, any progress on orders being printed at a restaurant using some sort of reciept printer (sms,gprs,wifi,etc)? The feedback I have received from restaurants is that they prefer something that prints their orders as they are received.
hi mate
technically you can do that just create a new modules for you call center
and for the printing
i already ordered online a thermal printer
unfortunately the status is still ship
it will take around 25 days to 1month to arrive on my country
Can you provide an estimate to the cost of you creating this call center module?
sorry mate am not available to do that 
hi basti,
how can i not include vouchers/discounts/points in commission calculation?
hi mate
you can modify the files ajaxadmin.php and look for the functions placeOrder
which code is it where i can delete it or change it
in this section
sorry but i cannot give the exact code but this is the section you need to change
if ( Yii::app()->functions->isMerchantCommission($this->data['merchant_id'])){
$admin_commision_ontop=Yii::app()->functions->getOptionAdmin('admin_commision_ontop');
if ( $com=Yii::app()->functions->getMerchantCommission($this->data['merchant_id'])){
$params['percent_commision']=$com;
$params['total_commission']=($com/100)*$params['total_w_tax'];
$params['merchant_earnings']=$params['total_w_tax']-$params['total_commission'];
if ( $admin_commision_ontop==1){
$params['total_commission']=($com/100)*$params['sub_total'];
$params['commision_ontop']=$admin_commision_ontop;
$params['merchant_earnings']=$params['sub_total']-$params['total_commission'];
}
}
/** check if merchant commission is fixed */
$merchant_com_details=Yii::app()->functions->getMerchantCommissionDetails($this->data['merchant_id']);
if ( $merchant_com_details['commision_type']=="fixed"){
$params['percent_commision']=$merchant_com_details['percent_commision'];
$params['total_commission']=$merchant_com_details['percent_commision'];
$params['merchant_earnings']=$params['total_w_tax']-$merchant_com_details['percent_commision'];
if ( $admin_commision_ontop==1){
$params['merchant_earnings']=$params['sub_total']-$merchant_com_details['percent_commision'];
}
}
}/** end commission condition*/
Hi basti can you check if i did it right i am not sure?
/*Commission*/
if ( Yii::app()->functions->isMerchantCommission($this->data['merchant_id'])){
$admin_commision_ontop=Yii::app()->functions->getOptionAdmin('admin_commision_ontop');
if ( $com=Yii::app()->functions->getMerchantCommission($this->data['merchant_id'])){
$params['percent_commision']=$com;
$params['total_commission']=($com/100)*($params['total_w_tax']+$params['voucher_amount']+$params['points_discount']);
$params['merchant_earnings']=$params['total_w_tax']-$params['total_commission'];
if ( $admin_commision_ontop==1){
$params['total_commission']=<b>($com/100)*($params['total_w_tax']+$params['voucher_amount']+$params['points_discount']);</b>
$params['commision_ontop']=$admin_commision_ontop;
$params['merchant_earnings']=$params['sub_total']-$params['total_commission'];
}
}
?? can u check
Hi! First of all, I love this software, seems great for what i’m about to start. It covers full requirements and this is awesome. I’m currently running over a small issue but it would be great if you can provide me some help or instructions in order to solve it. When i add google maps latitude and longitude on a merchant’s account, this merchant doesn’t appear anymore on the search results. I have the google maps api credentials fine. But this part doesn’t seem to work on my side. What should i do to check or solve this? Thanks in advance! Sebastian
sure mate
send me your merchant login and link
so i can check
leave a comment here once you send it so i will be notified
There is some bug. Like if the url is http://yoyrsite.com/receipt/?id=12 Now if i replace 12 from any previous number i can see any user receipt. this is not correct.
hi mate
those are not bugs
yes you can see your previous order but its your order only 
you cannot see other orders
its getting the customer id 
Hi Basti. There is a bug on checkout page
When you use voucher, in the order start shown line tip, but a tip off in the settings. And after remove voucher, tip still stay on.
How to fix it?
sorry what do you mean? screenshot please
hi mate you are correct
i display the tips 
anyways open the file assets/js/store.js look for functions apply_voucher() and remove this line display_tip(0,0);
I need change /restomulti/merchant/FoodItem/Do/Add to ==>> /restomulti/merchant/SoccerItem/Do/Add.
hi mate
yes you can but you need to change the coding and url structure for that if you know a developer you can hire them and do the changes but right now you cannot change this if your not a developer as it will break the code
thanks
Hi Basti. In the mercahnt’s menu page at the right side there is the cart and below it there is a 2 option drop down menu to select (Delivery / Pickup). Can you provide me some quick fix to change it in 2 radio buttons instead of drop down menu. ??
Thanks
hi mate
open the file views/store/menu.php and look for that drop down
this drop down has jquery actions you can find it in assets/js/store.js
How can i hide /restomulti? and change others urls like : /merchant/add/...
hi mate
don’t install the kmrs on the folder restomulti just copy the entire files to your root directory
and for /merchant/add i suggest don’t change this since it will break the code unless you have a developer to change this for you
why dont you have a mobile app for admin where we can control and manage like the web admin? not all maybe update order, update merchant status, enable order etc. because currently the admin is not responsive
hi mate
sorry but i don’t have plans for mobile admin 
web admin will be responsive in feature updates
thanks
at line 2478 in store.js we have:
/auto get geolocation/ if ( $(”.forms-search”).exists() ) { if (navigator.geolocation) { if ( $(”#disabled_share_location”).val()==”“){ dump(‘detect current location’); navigator.geolocation.getCurrentPosition(success_geo); } } else { //error(‘Geo Location is not supported’); } }
but google says: store.js?ver=3:2483 getCurrentPosition() and watchPosition() no longer work on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gl/rStTGz for more details.
So, if you put a ssl cert in your domain, the Karinderia Mobile App do not work with https. How to solve it?! Please update the documentation file to use Firebase. Google change Cloud Message and now is confuse to generate API Key to Push Notifications
hi mate
thanks for the info mate
mobile app does work with https
i have a client that use https and its working fine 
your are putting a wrong api link in your config.xml
just create your api key here https://developers.google.com/mobile/addThanks for answer Basti. I had solved the problem with SSL and nginx. What do you think about a git repository with gitlab? Maybe can help you with development and mates. Your domain codemyapps it seems parked in some service like sedoparking and no have content. Maybe you have a centralized place for documentation you will maybe changes more fastly. If you want do a Business I have a proporsal for you. I can host for you. I have purchased all your products, except Karenderia driver.
hi mate
thanks for the offer mate are you familiar with the krms already? i mean are you able to configure or install the web and modules?
btw i have new domain http://bastisapp.com/kmrs/
its more fast that my previous hosting
Yes Basti. Your job is amazing! I configured krms to run on nginx with php 7
glad to hear that mate cheers 
My apps dont show!!!!Some translation missing and i have beeing begging help from you!!! i be begger with my money!! if you help then help if not stop shaking people away each and every day to other day… thats realy bad!!!
hi mate
what do you mean its not working? this is the first time i heard is not working
please do verify again mate there is no issue with the translation make sure you use the latest mt_language_file.php