29717 comments found.
I have same question as Drupiler above (how to bulk upload restaurants with coordinates?).
Furthermore I have this error when trying to order with an address set on the map:
Column not found: 1054 Unknown column ‘google_lat’ in ‘field list’’ in /var/www/html/yiiframework/db/CDbCommand.php:358\nStack trace: #0 /var/www/html/yiiframework/db/CDbCommand.php(1278): CDbCommand->execute(Array)\n#1 /var/www/html/protected/components/DbExt.php(29): CDbCommand->insert(‘{{order_deliver…’, Array) #2 /var/www/html/protected/components/AjaxAdmin.php(2737): DbExt->insertData(‘{{order_deliver…’, Array) #3 /var/www/html/protected/controllers/AdminController.php(124): AjaxAdmin->placeOrder()
I can see that the fields google_lat and google_lng are indeed missing in table mt_merchant! This seems to be a bug, how can it be for such a prominent feature?
Please let me know if you can fix this promptly.
Thank you
Correction: I mean the fields are missing in table mt_order_delivery_address.
Strange, I simply added the missing fields (one more was formatted_address) and it worked! How come these fields were missing in a fresh installation? Also, I hope there is no further impact from this. Please have a check Basti. Thanks!
hi mate
sorry about that you are correct actually this fields is in the update controller this was introduce in the very last version
just run the update database in your admin panel and it will update your database with this fields
btw this new fields is for mobile app addon
Thank you, I have solved it by creating the three fields manually.
cheers
Hi Basti, One question about the Social media login (facebook and Google+): I see both on your demo page. However, I could not find them on our site even with the new update (11/2016). Is there any setting/configuration issue? Thanks
you need to set the config for that in admin -> Social Settings
Thanks Basti. The google + can be displayed. However, others like Facebook, Tweet, Instagram still are missing on the page. we found there is option for Google + (“Enable Google + Login”) but not such option for others, only “Disabled Facebook login”. Is there anything for example setting Facebook URL is also needed? if yes, how to set Facebook URL? should be “https://en-gb.facebook.com/login/. ” Thanks again.
Other questions: how to set Client ID, client secret (password?) in google login? How to set App ID, App secret, Facebook URL for Facebook login? need to clear out. Thanks.
Basti, we already figure out the google login: client ID and secret. still not clear about Facebook login. Thanks
hi mate
facebook login is very easy see this link
https://developers.facebook.com/docs/apps/registerWe did it. Thanks, Basti. Cheers!
cheers mate 
Hello, will this act as an all out service so I don’t have to use someone elses backend services and etc? Meaning I can take customer orders place them threw the back end driver stuff etc? I am trying to cut out the middle man if this works as an all out service I will much rather use it if this is a one time fee. I was hoping I could put my own logos on stuff etc?
your correct this is stand alone app
please do check the demo 
kmrs has different addon like mobileapp , merchant app , driver app etc which you will purchase separately
cheers
hi basti
how can i list me postcode like this: https://gyazo.com/15f1c413fcf17851e55b6d87df80296f
because it is currently like this: https://gyazo.com/0541c31148c0dd52363f43ea062b79a9
hi mate
you need to add some kind of class so that it will be cut off
see this sample css for truncating text https://css-tricks.com/snippets/css/truncate-string-with-ellipsis/thanks
Hi bastii you did this on my server. Can you show me in which files you did this?
hi mate
that would depend in what part this show on the website?
Only in admin panel in Merchant list
open the file components/ajax.php and look for functions merchantList
change the line $val[‘post_code’]
to
"<span class="\"truncate\"">".$val['post_code']."</span>",
i am not sure basti, i placed the code but it’s not working?
it should
make sure your css is correct with a fixed width
how do i check that? can you please check it i already sent you my ftp
check again next time i will charge you 
oh i am sorry i had to delete my cache thnx

admin login refresh the page
can you send me your admin login and ftp access so i can check?
email me here https://codecanyon.net/user/bastikikang#contactleave a comment here once you send it so i will be notified
Hi
Sent you a mail. Please check and reply. Thanks
reply sent
How can i fix this??
hi mate
sorry but looks like your server mysql strict is enabled you have to ask your hosting to disabled mysql strict to off
and try again
cheers
Is there an alternative way? What hosting do you know it does?
My hosting does not disable mysql strict.
Install2.php okay, but the admin and merchant area does not work.
hi mate
its because your mysql strict is enabled
is there is any way you can disabled the mysql strict ?
right now that is the only way to fixed the issue 
Do you know any hosting that does this?
am using a2hosting and bluehost and hostgator most of the hosting today mysql strict is disabled
i suggest choose a2hosting vps and choose the nearest server from your country
did you change hosting already? send me your ftp access and admin login so i can check
email me here https://codecanyon.net/user/bastikikang#contactleave a comment here once you send it so i will be notified
E-mail sent
hi mate
check again your admin login
cheers
admin login from my site ? Email Sent
sorry ?
The error continues. Sending email with login / password.
sorry what is the error ?
hi mate
looks like your mysql strict is enabled can you ask your hosting to disabled this for you
cheers
I have made purchase of your products. In which the push notification is not received at the mobile end after following your documentation too. Help me out.
hi mate
can you post your question in mobile app ? this is kmrs
Hey! just a quick question. Im about to upload quite a large number of restaurants through the CSV bulk uploader. My question is, where do I upload their co-ordinates? – longitude and latitude. I can see that the coordinates are visible from mt_view_merchant, but I cannot find a table where I can upload them into. I do not mind working with SQL inserts, the only thing is that I cannot add the co-ordinates to a view. Would really appreciate the quick help! Thanks man!
hi mate
you can find it on _options table these will be change on the coming update it will be included in merchant table it was my mistake to separate in another table
cheers
Has this been addressed in the November Update by any chance?
sorry not yet available 
hi, i installed system but i have a problem. problem is: PHP message: PHP Notice: Undefined property: AjaxAdmin::$Array in /var/www/restomulti/protected/controllers/AdminController.php on line 124 PHP message: PHP Fatal error: Uncaught Error: Function name must be a string in /var/www/restomulti/protected/controllers/AdminController.php:124
why could it be? thx.
hi mate
open the file controller/admincontroller.php and look for the functions actionAjax and change the
if (method_exists($class,$data['action'])){
$class->$data['action']();
echo $class->output();
} else {
$class=new Ajax;
$class->data=$data;
$class->$data['action']();
echo $class->output();
}
to
if (method_exists($class,$data['action'])){
$action_name=$data['action'];
$class->$action_name();
echo $class->output();
} else {
$class=new Ajax;
$class->data=$data;
$action_name=$data['action'];
$class->$action_name();
echo $class->output();
}
hey bro . i try to change calendar setting but i had some problem with that
first how can i change it to persian calendar and second question is should i use zend framework??and how??
thank you
hi mate
already answer in different comment section
also am using yii framework
you cannot use this in zend framework
Hi,
My google api has stopped working on the site but continues to work on the mobile app … any idea why ???
Thanks
dont worry….sorted 
cheers 
How i change the homepage search auto-suggestion to France, right now USA address on the top of list.
set your country in admin -> settings -> Country and tick Set Google Default Country On?
Hi basti, where you can modify these http://imgur.com/a/ywGNu ? I have to change the icon, color and hide the merchant “Published Merchant”.
another question: Ingredient required before add to cart http://imgur.com/a/PzA0A before the upgrade, it worked, no more now. how to do?
1. you can find that in views/layouts/merchant_tpl.php
2. no changes for this one it should work as before
please verify again
cheers
Hi basti, 1) Ok; 2) I tried and tried but nothing,It works on your demo?
send me your website and ftp access so i can check
email me here https://codecanyon.net/user/bastikikang#contactleave a comment here once you send it so i will be notified
ok, sent
hi mate
sorry i forgot to ask your admin login? can you send me your admin login and what merchant to check for the ingredient should be required?
Ok, sent. the merchant’s Pane&co However, all merchants will not work
hi mate
i just check your website ingredients and cooking ref is required i just tried on my end
its working fine
I know that I expressed myself badly,i need to default check http://imgur.com/a/p1gh2 before the upgrade was ok, now no longer
sorry what do you mean before it has default check ?
sorry mate i did not add any code for default check for ingredients
That is, i have all the ingredients checkboxes checked by default when a client choose a food item. I tried Your Code
<?php
$ingredients_default=true;
if (isset($_GET['row'])){
$ingredients_default=false;
}
echo CHtml::checkbox('ingredients[]',
in_array($val,(array)$item_data['ingredients'])?true:$ingredients_default
,array(
'value'=>$val
))?>
but it does not work, even with a hard refresh browser
hi mate
sorry that is not the default checked that is when you edit the item on the cart
284440bd-dfe8-4945-89c2-2df3f3c30066 Hi Coskun,
Can you submit a support ticket to Karenderia support on themeforest. My host has some issues as it has been sending out 3000 emails, the logs show this:
2016-12-11 06:41:02 1cFxok-002dt2-KO <= root@cloud05.mycpanelcloud.co.uk U=c7sq1b3a P=local S=874 T=”Cron <c7sq1b3a@cloud05> http://www.qatarfoodservice.com/cron/fax" for c7sq1b3a 2016-12-11 06:41:02 1cFxok-002dt1-Ks <= root@cloud05.mycpanelcloud.co.uk U=c7sq1b3a P=local S=898 T=”Cron <c7sq1b3a@cloud05> http://www.qatarfoodservice.com/cron/ProcessBroacast" for c7sq1b3a 2016-12-11 06:41:02 1cFxok-002dt5-MB <= root@cloud05.mycpanelcloud.co.uk U=c7sq1b3a P=local S=886 T=”Cron <c7sq1b3a@cloud05> http://qatarfoodservice.com/cron/ProcessPayout" for c7sq1b3a 2016-12-11 06:41:02 1cFxok-002dt6-Ou <= root@cloud05.mycpanelcloud.co.uk U=c7sq1b3a P=local S=888 T=”Cron <c7sq1b3a@cloud05> http://www.qatarfoodservice.com/cron/ProcessSMS" for c7sq1b3a
I need them to tell us how we stop these notifications occuring as it is severely impacting others on the server and therefore my host is concerned.
If you can submit a support request and let me know the answer from them.
Thanks
coskun karacali
sorry what is the concern here ? those are crons are you using shared hosting ?
We don’t have cribs setup for these, can we disable them? We are getting error emails that these don’t exist.
hi mate
sorry but i don’t understand what you mean?
if you did not run the cron jobs then no process will be done?
hi, can you please tell me how to disable mobile verification for merchant? I have clicked “Disabled Verification?” but it still asks me to enter verification code when i try to login merchant account. Thanks
sorry what do you mean?
did you tick the admin-> settings -> Disabled Verification?
Hello Mate,
My website was working fine in locahost now a 500 error is showing when loading the inner page. I tried in Windows and Ubuntu.
Can you please help me to get rid of this issue?
My local URLs are: http://localhost/automobile/store/browse/ http://localhost/automobile/store/searcharea?s=Al+Awir%2CDubai&display_type=listview&city=Dubai&street=Al+Awir&filter_cuisine=21%2C22%2C23%2C24%2C25Thank you
hi mate
you need to enabled your server mod_rewrite and allowoverride
Thank you
cheers
Hello
I moved the files from localhost to LIVE server. I can’t login the admin and merchant account
Firebug gives me the error:
/admin/ajax 500 Internal Server Error ReferenceEroor: data is not defined uk_msg (data.msg); (with info: admin.js?ver=1(line 279, col 10)
I tried to login to admin or merchant panel , nothing happen Please provide the solution asap
Error log :
Invalid datetime format: 1292 Incorrect datetime value: ‘2016-12-11T16:46:18+05:30’ for column ‘last_login’ at row 1’ in /home/yummymdu786/public_html/yiiframework/db/CDbCommand.php:358 Stack trace: #0 /home/yummymdu786/public_html/yiiframework/db/CDbCommand.php(1313): CDbCommand->execute(Array) #1 /home/yummymdu786/public_html/protected/components/DbExt.php(40): CDbCommand->update(‘{{admin_user}}’, Array, ‘admin_id=:admin…’, Array) #2 /home/yummymdu786/public_html/protected/components/AjaxAdmin.php(97): DbExt->updateData(‘{{admin_user}}’, Array, ‘admin_id’, ‘1’) #3 /home/yummymdu786/public_html/protected/controllers/AdminController.php(124): AjaxAdmin->login() #4 /home/yummymdu786/public_html/yiiframework/web/actions/CInlineAction.php(49): AdminController->actionAjax() #5 /home/yummymdu786/public_html/yiiframework/web/CController.php(308): CInlineAction->runWithParams(Array) #6 /home/yummymdu786 in /home/yummymdu786/public_html/yiiframework/db/CDbCommand.php on line 358
hi mate
looks like your server mysql strict is enabled you need to ask your hosting to disabled this for you
if you migrating from local to your server just copy all the files and export the tables except for the following tables view_merchant view_order_details view_ratings this is special tables is called a view table
after you have copy all the files you need to edit to files to suit the new configuration of your server 1. .htaccess you will need to change depends on where you install your files if you install it on main root the htaccess should be like this
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
if you install it on a folder called restomulti htaccess should be like this
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /restomulti/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /restomulti/index.php [L]
</IfModule>
2. edit the file protected/config/main.php and change the database connection to your new server details
'db'=>array(
'class' => 'CDbConnection' ,
'connectionString' => 'mysql:host=localhost;dbname=restomulti',
'emulatePrepare' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'tablePrefix' => 'mt_',
),
thanks
I contacted my hosting provider .they said, its not possible to disable the mysql strict because its shared hosting. there is any other solution ?
shall i send the FTP details to you ? can you fix the issue please
please its very urgent mate
I Sent the FTP details to you via https://codecanyon.net/user/bastikikang#contact
please check mail
hi mate
sorry for late reply i check your server it seems your new server mysql strict is enabled can you ask your hosting to disabled this for you? or try running this command in your phpmyadmin
SET @@global.sql_mode= ””;
can you ask your hosting to disabled this for you?
—yes, I contacted my hosting provider .they said, its not possible to disable the mysql strict because its shared hosting.
or try running this command in your phpmyadmin
SET @@global.sql_mode= ””;
—I tried but it comes error Access denied; you need (at least one of) the SUPER privilege(s) for this operation

sorry mate but you need to disabled your mysql strict
try using a2hosting bluehost or hostgator instead
upgraded version only having this problem
yes its because those shared hosting mysql strict is disabled
in bluehost hosting am using shared there myssql strict is disabled actually most of the hosting this days have this configuration
Friend,
I have a new hostgator hosting. And I’m configuring the system with the latest version. I am using bkp from sql and doing the insert via phpmyadmin.
But when I save some configuration by the system admin it returns me the message: The CSRF token could not be verified
How do I fix it? I am using the files on ftp with the latest version, 3.4.
print: http://imgur.com/a/XkRFP
My friend, I do not know what I’m doing. I downloaded the last file I have here and I threw it into the hostgator hosting and installed it. And I get the message I reported up.
What if? What would be the solution?
hi mate
its your file its not update anyways send me your website and ftp access i will fixed this one for you
email me here https://codecanyon.net/user/bastikikang#contactleave a comment here once you send it so i will be notified
Sent friend
When I make the change, it tells me which file has been changed so I can save it.
hi mate check again
your server is weird its generating different crsf token
am not sure why
hi mate!
I was able to access the admin. Will the problem return? Did you change what file?
yes i did i remove the validation of crsf token cause your server token is changing always am not sure why is that happening 
Friend,
I was creating the user of a partner, but it is giving problem.
See the print: http://imgur.com/a/ZiHCv
hmmm i already remove all the crsf token in your server anyways can you open the file components/ajaxadmin.php and look for functions addAdminUser()
remove this
if ( $_POST[Yii::app()->request->csrfTokenName] != Yii::app()->getRequest()->getCsrfToken()){
$this->msg=t("The CSRF token could not be verified");
return ;
}
All right, buddy. Thank you.
cheers
Hi
I have test translated some text thats in the front end, uploaded the file from admin and changed the default settings to use my language, but its not working. Any idea why?
can you send me your admin login so i can check? also what language did you set as default on the front end
I have snet you an email with login info and url.. I have set the language to swedish and translated some (not all), but there is no changes at all.
reply sent