29725 comments found.
Hi Basti, sent you email regarding payment gateway and custom_field1 and custom_field2. Thanks.
sent
Reply sent to your email. Thanks.
sent
Hi mate,
Please see https://isol.ca/kmrs/20191228-00.png : I setup Date & Time
Please see https://isol.ca/kmrs/20191228-01.png : On Desktop can see time.
Please see https://isol.ca/kmrs/20191228-02.png : On mobile size can’t see time
How to fixe it?
your correct the mobile view is not fixed
let me prepare the quick fixed
also kindly search in comment section as i think i already posted the fixed here
Invoices are not working .. Why?
sorry can you give more information why its not working?
I put an invoice + commission option. Select a daily invoice option. But when you go to an invoice section, nothing appears, no admin panel or restaurant panel.
did you run the cron jobs for processing the invoice?
you can find the cron job link in admin -> cron jobs
Basti , here is an update on the printer i was able to get it to work , now its printing in English and working properly, Basti it was a little headache at first, god bless you man !
glad to hear that mate
i agree its hard at first
cheers
Hi Basti, as for the printer i have followed all the steps that you said, it is now printing in English how ever the wifi password that prints out were do add that information, as that needs to be added for the printer to be connected properly.
Please advise
all good i believe 
where can i remove this validation , image link- https://ibb.co/zVWGKM2
you can remove that in components/ajaxadmin.php function setDeliveryOptions
for booking table function is bookATable()
I have put one item in merchant category but it’s category is unpublished
But still that item is coming when customer is searching it by search by food name
How can we hide totally whole category not to show any item from it
hi mate
can you provide screenshot where is this one?
1) This is screenshot of merchant panel
https://drive.google.com/open?id=19twUj2Yqz8fmHxgSwuwN4fhPTxW9INPCas you can see there is one category is in pending status but when we are searching by food name on website and mobile app 2 it shows that merchant name in search list . this screenshot is attached below
https://drive.google.com/open?id=18Y74wgK8ne8uB1SYNCe8Ejy7KcpZtrLB2) Same problem is with category scheduler
Example: there are two category
Category 1 (Schedule)
Category 2 (Regular)
If we have set Category 1 to display only on Sunday and category 2 whole week but when we search item from category 1 from Mon to sat on mobile app 2 , website & mobile app 1 it display that item
So, i mean to tell you that we don’t want to show that item and it category when it is schedule to not display on that day
ah mate you mean when you search by food name in the backend?
i think am searching food name not food categories for it
Not in backend i am searching it on website
sorry my mistake on front end am searching for food name not the food category
So please can you give any fix for this problem
ah mate i think there is no problem the query will get the status of food item not the category
Solution sir
ah mate take a look at the file controller/storecontroller.php and look for function actionAutoFoodName
change the query to
$stmt="SELECT item_name
FROM
{{item}}
WHERE
item_name LIKE ".FunctionsV3::q("%$str%")."
AND not_available ='1'
AND status in ('publish')
Group by item_name
ORDER BY item_name ASC
LIMIT 0,16
";
I wil try it and what about category scheduler sir i have explain you with example in above reply
about the category sheduler where is this one? on front end
2) Same problem is with category scheduler
Example: there are two category Category 1 (Schedule) Category 2 (Regular)
If we have set Category 1 to display only on Sunday and category 2 whole week but when we search item from category 1 from Mon to sat on mobile app 2 , website & mobile app 1 it display that item
So, i mean to tell you that we don’t want to show that item and it category when it is schedule to not display on that day
1. for web where is this search category?
2. for mobile app 1 and mobile app 2 kindly post this to its section i will answer you there
reason is that i need you to post there so every one is aware of this if has issue or not
Sir i am not searching category, iam searching item from that category
2) Same problem is with category scheduler
Example: there are two category Category 1 (Schedule) Category 2 (Regular)
If we have set Category 1 to display only on Sunday and category 2 whole week but when we search item from category 1 from Mon to sat on mobile app 2 , website & mobile app 1 it display that item
So, i mean to tell you that we don’t want to show that item and it category when it is schedule to not display on that day
ok mate
can you provide screenshot in web?
and in mobile app post it to mobile app with screenshot
1) there is one item named (Pineapple Coconut Cookies) from (cookies) category as you can see in below screen-shot
https://drive.google.com/open?id=1p6-CD_SxaNEodYfb7-QCodNtyNA6ZoYG ____________2) but cookies category is schedule by scheduler on merchant panel and uncheck for all days as you can see in below screen-shot
https://drive.google.com/open?id=1f4KsRR_sKZe1SYLErwqxurGb14BWtvCC _______________3) Now, when we search it by food name on website front page [ item named (Pineapple Coconut Cookies)]<- see point first for this name
Screen-shot is here
https://drive.google.com/open?id=1wx1a7rz17DFj2_7I3zFgk84merdhcqs5 ________________4) Also is shows that merchant name on search page after searching by food name
https://drive.google.com/open?id=1yscXyAh0IfeX888f1y8tdQqANpc1t5DPThis is all i can explain. Just i want not to show merchant name on search page ( point 4) when it is schedule on merchant panel not to show on that day
thanks mate for the screenshot now i understand what you mean
let me check on my end if we can have a quick fixed for this one
Yes sir please
Hello sir have find any quick fix for this problem
Hello sir have find any fix
sorry wait for my next reply
Okay sir
cheers
ok mate do this
in controllers/StoreController.php
look for function actionAutoFoodName()
and replace this function with this
public function actionAutoFoodName()
{
$todays_day = date("l");
$todays_day = !empty($todays_day)?strtolower($todays_day):'';
$datas=array();
$str=isset($_POST['search'])?trim($_POST['search']):'';
$db_ext=new DbExt;
$stmt="SELECT merchant_id,item_name,category
FROM
{{item}}
WHERE
item_name LIKE ".FunctionsV3::q("%$str%")."
Group by item_name
ORDER BY item_name ASC
LIMIT 0,16
";
if ( $res=$db_ext->rst($stmt)){
foreach ($res as $val) {
$include_results = true;
$merchant_id = $val['merchant_id'];
$enabled_category_sked = getOption($merchant_id,'enabled_category_sked');
if($enabled_category_sked==1){
$category = json_decode($val['category'],true);
if(is_array($category) && count($category)>=1){
$category_id = '';
foreach ($category as $categorys) {
$category_id.="'$categorys',";
}
$category_id = substr($category_id,0,-1);
$stmt2="
SELECT cat_id from
{{category}}
WHERE
cat_id IN ($category_id)
AND
$todays_day='1'
";
if(!$res2 = $db_ext->rst($stmt2)){
$include_results = false;
}
}
}
if($include_results){
$datas[]=array(
'name'=>$val['item_name']
);
}
}
echo json_encode($datas);
}
}
edit but not working sir
mate
please verify that is working 
i did a test before sending it to you
Can you please tell me after editing this code what result will come in front end
it will only show food item which is available
on category scheduler
i migrated to aws lightsail lamp server . cant login to admin or merchant just does nothing do even try to login is this a permission issue maybe??
its not the permission its how you migrated
send me the link and ftp i will check
email me here
https://codecanyon.net/user/bastikikang#contactleave a comment here once you send it so i will be notified
cheers
btw your support is expired it will be great if you can renew it
cheers
Regards Basti
I am very sorry for your father’s situation, I hope to improve soon. And if it’s not much indiscretion, he heard in some comments, that he needs a little expensive surgery .. Could you tell us what the cost is? ... Additionally I would like you to help me with a question that I have reference to the code. I have enabled to display the category image of the restaurant. Using menu 2. As the following image shows. However, now I am working with the mobile app, I want the category image, which is shown in the application to be different from the one shown on the web. Then I am adding an additional image (as a field when adding a category and clearly that is saved in the database) that can be loaded from the backend, into the category_add file, as shown in the following image….https://ibb.co/HFS6SfY
But I am having the following inconvenience: In advance I regret the length, but I believe that if I sent you part of the code you can better understand what I have done.
1. When uploading an image, the 2 preview is loaded, that is, for each image uploaded, it does not load its own preview, but it is the same for both images, for I am editing this code in merchant.js .. you could take a look ( all he says at the end _web are my changes): https://ibb.co/bPqGQB0
if ( $(”#sau_merchant_upload_file_web”).exists() ){ sau_merchant_progress_web = $(”#sau_merchant_upload_file_web”).data(“progress”); sau_merchant_progress_web = $(”.”+sau_merchant_progress_web); sau_merchant_preview_web = $(”#sau_merchant_upload_file_web”).data(“preview”); }
sau_merchant_field_web = $("#sau_merchant_upload_file_web").data("field");
var uploader = new ss.SimpleUpload({
button: 'sau_merchant_upload_file_web',
url: ajax_admin + "/uploadFile/?"+ addValidationRequest()+"&method=get&field="+sau_merchant_field_web + "&preview=" + sau_merchant_preview_web ,
name: 'uploadfile',
responseType: 'json',
allowedExtensions: ['jpg', 'jpeg', 'png', 'gif'],
maxSize: image_limit_size,
onExtError: function(filename,extension ){
uk_msg(js_lang.invalid_file_ext,"warning");
},
onSizeError: function (filename,fileSize){
uk_msg( js_lang.invalid_file_size,"warning");
},
onSubmit: function(filename, extension) {
busy(true);
this.setProgressBar(sau_merchant_progress_web);
},
onComplete: function(filename, response) {
busy(false);
if (!response) {
uk_msg( js_lang.upload_failed );
return false;
} else {
dump(response);
if( response.code==1){
$("."+sau_merchant_preview_web).html( response.details.preview_html );
} else {
uk_msg( response.msg );
}
}
}
});
2. The new browse_web upload field that I created to upload the new category image, by clicking on the save button, does not save the image path in the database, in the field I created for this … simply Save nothing.
3. For some reason on the web, the new image I have added is not shown (if I add it from the database), it only shows the default image Example https://ibb.co/jJx3vP9 .. for this in menu-merchant-2.php I have edited the getFoodDefaultImage_web function, to:
style = “background: url (’<? php echo FunctionsV3 :: getFoodDefaultImage_web ($ val [’ photo_web ‘], false)?>’);”>
FunctionsV3.php add the following function:
public static function getFoodDefaultImage_web ($ photo_web = ’’, $ small = true) { $ path = self :: uploadPath (). ”/ $ photo_web”; if (! file_exists ($ path) || empty ($ photo_web)) { if ($ small) { $ url_image_web = websiteUrl (). ”/ assets / images / default-food-image.png”; } else $ url_image_web = websiteUrl (). ”/ assets / images / default-food-image-large.png”; } else $ url_image_web = websiteUrl (). ”/ upload / $ photo_web”; return $ url_image_web; }
Basti, I know you can look a little tangled up, but I would appreciate any guidance you can give m
hi mate
thanks mate really appreciate your concern,
he need bypass and aicd pacemaker for his heart
the cost is very expensive
and we cannot afford it
we are selling our land to get funds for his operation 
1. i think you can use some other functions for uploading images you can check the admin.js
take a look at function createUploader you can use this functions
2. same as 1
3. edit the file conponents/functionsv3.php function getFoodDefaultImage
on this line
$url_image=websiteUrl().”/assets/images/default-food-image.png”; and $url_image=websiteUrl().”/assets/images/default-food-image-large.png”;
cheers
Please, where can I safely buy a supported printer for karenderia?
am not affiliated with this site but someone confirm to me that they can get the printer on this link
https://shop.tbfocus.com/item.php?id=601948084506#4213987208608btw this printer is for kmrs printer addon
https://codecanyon.net/item/karenderia-printer-modules/21590153thanks
Hello , I’m testing the comission setting but i cant see the amount made today in comissions in 2 orders.. look the Setting : https://prnt.sc/qgneg9 , Look the Orders: https://prnt.sc/qgneon
what is your merchant type?
did you check it on admin -> merchant comission
Hi! I installed everything correctly, but when entering the admin it shows an error 500 – internal server error. Server Mod_rewrite is correctly enabled. Can you give me some possible solution. thanks
check the file .htaccess
the content should be like
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
hi basti, 1. i need all the search option that is search by location,restraunt and the rest of option integrate in the search bar means, currently we need to click on each button to make separate search , i dont need the buttons to present but i need all the functions to be integrated in search bar, is it possible? 2.does the addon export/import allows me to import bulk food products ? using an xml or csv file ?
hi mate
1. you mean you want other search options when you use search by location? like search by restaurant name etc
2. sorry it does not
thankyou for your reply 1. no, what i meant is like we can search by 4 different categories, like restraunt name , location so and so , but these search works one by one , means if we need to search by location we need to switch to search by location option , or if we need to search by reastrunt name , we need to click the search by resatraunt option, what i exactly need is like in zomato we can search in the search bar whatever we want without further clicks or further switching to options , i need to integrate all the search options into single option in the search bar., am i clear ? 2.so can i pls know what is the purpose of import/export addon ?
3.am planning for grocery store, there are lot of products, so for each grocery store, its not posible to add product one by one, so is there way to bulk import the products ? Thankyou
hi mate
1. we can do that actually but this one needed changes and new code
2. exportaddon it can copy the existing merchant information and its all food item
and you can export and import the existing merchant
3. sorry at the moment we cannot do bulk import, reason is the data is complex it has categories and addon which we cannot do in a csv
cheers
I am migrating from one server to another the only problem that has arisen is that when they open the app and place an order to the cart the error appears: failed any solution?
must be the export of db you have done
during import of db there is error?
if yes you need to redo the import of db
its how you import your database
during import there should not have any error
you need to import the database without any error if there is you need to redo again the import until there is no error
during export don’t include view tables
view tables are the following
driver_order_view
driver_task_view
mobile_registered_view
points_trans
view_merchant
view_order_details
view_ratings
https://imgur.com/a/Calk46z
Thanks for your response during the import of the database, there were no errors, so what would be the steps for a correct migration because everyone works correctly only when they place an order the problem appears error: failed
the last thing will be mysql strict is enabled in your new server
turn off mysql strict in your server and try again
if does not fixed send me your site and ftp access i will check include in the email what is the issue
email me here
https://codecanyon.net/user/bastikikang#contactleave a comment here once you send it so i will be notified
cheers
Mate, I am sorry day before only i know about your father problem. How is he now? i am sorry continually mailed you. Please just fix only one vulnerability which is a) High Vulnerability Cross Site Scripting
Please help me mate
its fine mate no worriess
its very hard for us for me and my family at this moment i haven’t check all my emails
will reply to you when i check my emails
Hi,
I have questions regarding changing and redesign the app. 1- what is the best app I should use to change the design 2- if there is free lancer can help me with this requirement
hi mate
1. sorry app or web kmrs? you are in kmrs so my answer is for kmrs you need to look for design there’s a lot here in codecanyon look in theme forest
2. you can look for freelancer or developer to implement the new design you desired
cheers
Dear Basti i wish everything will be ok for your father. I am trying to change server i have transfer everything but i have the following problem in backend and modules
the version of mysql is Server version: 5.5.64-MariaDB
Updating database… MYSQL VERSION=>5.5
Fatal error: Uncaught CDbException: CDbCommand failed to execute the SQL statement: SQLSTATE42000: Syntax error or access violation: 1067 Invalid default value for ‘date_created’ in /var/www/vhosts/foodeasy.gr/delivery.foodeasy.gr/yiiframework/db/CDbCommand.php:543 Stack trace: #0
thanks mate
you need to ask your hosting to turn off mysql strict
all this error will be gone
or manually add default value in each table
which take long time cause i have many tables
turn off mysql strict is the simpliest and quick solution
Thanks mate i havent notice this
cheers
hi guy
any question that i did not answer kindly re-post them again here
cheers
Hi basti , sorry to hear hes still in the ICU, trust and believe he will be out pretty soon
I know i have left you tuns of email did you check, i did send you the information for the apps as well, let me know when will you be able to complete it for me. In the mean time take your time as i know your hands are very full. Cheers
thanks am hoping and praying that all will be fine
i replied in your email
Hi basti, as for the theme can i purchase an new one.? Can i purchase SEO on envato market thst can work with karenderia? I need need a beautiful cover page is there a theme you recommend? Can you check on the apps please. As for the payment gate way its now showing pay with credit card its showing stripe and braintree. I would like for customers to pay per kilometers and not flat rate for mile. Eg, a customer order but lives far away 50cent per kilometers would be more in distance, rather than $5 For the flat in mile. By this driver earn more. Can you assist.
hi mate
try to look at theme forest
there is plenty of themes there
but adding the theme requires
new coding
i suggest hire a developer to do this for you
will do reply in your email today
cheers
for delivery fee you can do that in merchant panel -> delivery charges rates