1745 comments found.
today_sale(Today’s Sale) in pos shows sales of all stores. Is it possible to show only the selected store?
No, I will add the option in next update. Thank you
I have been trying to run this script using wamp or xampp none is working please I urgently need solution
Please provide the details. Can you access the installer? Where is the problem, please share the page. Thank you
this is bad, I can’t use the script.. every effort is proven abortive please help me out. I am using wamp server. trying to install, it will not display anything, severally tried yet nothing, is the fault from the script or what?
May I know what is your php and mysql version? Simple POS require php7.4 or php8.0
You just need to move the download file to the wamp www and access them in browser. If the browser shows blank page please check the wamp server error logs to know the cause.
If you install on live server and have issue we can check but we can’t check the local setups. You can try installing it on live server.
Thank you
I have done that, created database, trying to initialize the installations nothing happens
php is 7.4.9
please what is happening ?
Yes, please let me know what is happening. Are you able to install it? If you need help, please ask at the support portal https://tecdiary.net/support and we will need access to your server to check and suggest the solution. Thank you
Hi Admin, i can not install it. please to help.
how to print receipt auto?, use Windows, Xprinter
Hello, I hope you have already installed the item. For auto print, you can enable in settings and it will open browser print dialog or send print command depending your printing settings. For better response time, please ask at support portal https://tecdiary.net/support Thank you
do you have saas version ? let owner register limit feature for sale per month per feature
No, we don’t have SaaS version for this item yet. Thank you
how to setup customer screen dual android tablet ?
This item is for computers only. Thank you
I was going to buy the WINDOWS INSTALLER VERSION but i need something that will update entries on web database either automatically when internet connection is on or whenever the user pushes collected data online through some inbuilt backup means. Please does your Simple POS application in any way does this? Let me know so i can proceed to decide on purchase. Client waiting urgently
No, there is no such option to sync with live server. Thank you
Hi, we just sent an email on your website. We renewed our support but we aren’t able to send a ticket on your portal. We are having an issue with the Stripe API. When we enter the code it cuts off the last 7 characters. Can you tell us how to correct this (we understand php, css, html, etc.) or can you fix this so we can test the stripe functionality? Thank you
Hello,
Please validate your purchase code and ask questions for your support items.
I suspect that might be due to settings table column length, you can check `stripe_secret_key` and `stripe_publishable_key`
Thank you
Thank you, can you tell us where to locate this file? We looked through the style.css pages but do not see where to modify the table length.
Look forward to hearing from you soon.
We have tried to validate the code and it’s not working please help us we are just trying to get the Stripe api code to save correctly. Where can we find this table in the code so we can make the adjustment? Thank you
Hello,
I was talking about database not css. You can run the following query on your databaseALTER TABLE `tec_settings` CHANGE `stripe_secret_key` `stripe_secret_key` varchar(191) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NULL, CHANGE `stripe_publishable_key` `stripe_publishable_key` varchar(191) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NULL;
Thank you
Thanks for the info that’s awesome, however I’m not familiar with how to run a query on my database. I looked at videos online but I do not want to make any mistakes. Do I copy and paste the code above? If you can send me an email (reymionbizhub@gmail.com) or reply here with the process info that would be great.
Thanks
Can you please send me the details on how to make this adjustment please. Thank you
Hello,
Please open your database in any application tablesplus or phpMyAdmin then select the database and SQL tab. Paste the above query and run. Then you can check again.
Thank you
Hi, for Online Deployment, is there a way to allow specific devices to access only? or maybe set working hours only since I am worried maybe may Staff/Cashier will access the system at home outside working hours. thank you
Hello,
No, there is no such option but you can modify the code to restrict login as you need.
You can allow your site from your shop ip only by using any security service like cloudflare.
Thank you
Please solve this. During installation i get this message ” Could not connect to MYSQL!”
Please check with your server admin for correct database details and type them correctly. Thank you
Hi You don’t have the saas version of it.
No, we don’t have saas version yet. Thanks
How does the customer get their gift card? It’s not printed on the receipt. It only shows “Gift Card”. What about the number?
Hello??
Hello,
If you add the payment for pos order using gift card the payment method should be gift card and it should mention the card number too. Please test on live demo.
Comment’s response time is 5 days, it could be more for non-supported members. While official support response time is 1 – 2 days. Please post your support queries/questions, bugs, and feature requests with details at Tecdiary Official Portal – https://tecdiary.net/support After registration, you need to validate your purchase code to add item to your supported list. Once items are green in the support portal, you would be able to ask questions.
Thank you
You didn’t get me. If a customer buys a gift card with cash, how does he get the code? On the receipt, it’s written “Gift Card” only. No code.
ah, yes the card number is not printed as on receipt. I will check about this in next update. This item is next in the update list. For now you can print ther card along the receipt. Thank you
Please let me know when the app is updated or just send me the modified code separately. Thank you.
Hello,
You can edit the `themes/default/views/pos/view.php` and replace `echo $row->product_name;` with
echo $row->product_name . ' '.($row->product_name == lang('Gift Card') ? $row->product_code : '');
Thank you
Just bought this. Can I use an Android barcode scanning app with your system or does it have to be a physical one? Also, I don’t see no documentation on how to make the barcode reader connect with your system.
Thanks.
Hello,
This is a web based pos, if you can use a scanner to scan code and type on web page that should be fine.
Thank you
I still don’t understand how to connect a barcode reader (app or physical) with your system??
You just need to install it on your machine. The reader does nothing more than type a code. So, no setup required, on scanning the code it will type the code to input and system will find the product and add it to order. Thanks
How will it type the code to input?
Please provide step by step instructions. Thank you.
Also, can I use an Android app to scan the product?
Hello,
Thers is no steps or setup. Please install the reader on your machine and start scanning the barcodes. No mobile app can be used to scan code.
Thank you
You could have just sent me to a Youtube video bruh. Finally got it here: https://youtu.be/aAZ5E2L0qqs
I am glad that you have understood. Thank
Hello Where i can change that everybody can see the suspended sales, Not only the user how make the sale. Please where i find that file in the script? Thanks Alot
Found it by myself
Change File by directory app/models file Site.php row 251, Change it to
public function getUserSuspenedSales()
{
$user_id = $this->session->userdata('user_id');
$store_id = $this->session->userdata('store_id');
$this->db->select('id, date, customer_name, hold_ref')
->order_by('id desc');
//->limit(10);
$this->db->where('store_id', $this->session->userdata('store_id'));
$q = $this->db->get_where('suspended_sales', ['store_id' => $store_id]);
if ($q->num_rows() > 0) {
foreach (($q->result()) as $row) {
$data[] = $row;
}
return $data;
}
return false;
}
Hello,
I am glad that you have managed it yourself.
Comment’s response time is 5 days, it could be more for non-supported members. While official support response time is 1 – 2 days. Please post your support queries/questions, bugs, and feature requests with details at Tecdiary Official Portal – https://tecdiary.net/support After registration, you need to validate your purchase code to add item to your supported list. Once items are green in the support portal, you would be able to ask questions.
Thank you
hello, i interesting this simple pos, i need some question, 1 can be print with thermal printer? 2. can used barcode scanner?
Yes, you can print using thermal printer and can use any barcode scanner to add items to order. Thank you
thanks and one more, how about a thousand separators for rupiah? need an extra custom price? it tested from the demo there is a different if only change from currency 25,500.00 in rupiah thousand used with a dot. should be like Rp 25.600,00
You can update Money and Number Format in system settings. Those are for display. The inputs are standard. Thanks
Hello,
Please download the latest file and upload it again. You have missed uploading some files as I see 404 errors.
Comment’s response time is 5 days, it could be more for non-supported members. While official support response time is 1 – 2 days. Please post your support queries/questions, bugs, and feature requests with details at Tecdiary Official Portal – https://tecdiary.net/support After registration, you need to validate your purchase code to add item to your supported list. Once items are green in the support portal, you would be able to ask questions.
Thank you
How is the installations of this solution difficult, I am getting 404 file doesn’t exist Please I urgently need assistance
Hello,
Okay, so you can install. Please make sure that you have upload the .htaccess file as most that cause the 404. Other thing to check is mod_rewrite, it should be enabled and configured to use .htaccess file from site directory. Lastly the base_url in app/config/config.php
Please double check these and I am sure you should find the cause for 404. If you need further assistance, please ask at the support portal.
Comment’s response time is 5 days, it could be more for non-supported members. While official support response time is 1 – 2 days. Please post your support queries/questions, bugs, and feature requests with details at Tecdiary Official Portal – https://tecdiary.net/support After registration, you need to validate your purchase code to add item to your supported list. Once items are green in the support portal, you would be able to ask questions.
Thank you
I am unable to run this script locally please what is happening
I don’t have clue what is happening? Please follow the installation instructions from the help folder. Thank you
I am running it locally using wamp server, unfortunately it doesn’t work
the script is showing nothing at installations
You just need to move the files to your www/htdocs folder and access them in browser? I have no clue what is not working. Please validate your purchase code at support portal https://tecdiary.net/support then ask question there for better response time. Thank you
the current file is not working
Please try on the live server and if you have any issues, ask the questions at the support portal and we will help you check. Thank you
Hi, Just bought this solution unfortunately, no installation manual and does not respond when executed using local server, please I need attentions immediately
Hello,
Please describe the issue in detail. What do you mean by ‘not respond’? Can you access the installation page?
Comment’s response time is 5 days, it could be more for non-supported members. While official support response time is 1 – 2 days. Please post your support queries/questions, bugs, and feature requests with details at Tecdiary Official Portal – https://tecdiary.net/support After registration, you need to validate your purchase code to add item to your supported list. Once items are green in the support portal, you would be able to ask questions.
Thank you
Hi, I just purchased and installed on localhost. I configured my receipt printer. When I press “Print Order” button on the POS page, it prints the order well, but the “PRINT BILL” button is doing nothing. Also when sale finalizes, PRINT button do nothing. Do you know what can be the issue?
Your refund request has been approved. Thanks
The image you are attempting to upload doesn’t fit into the allowed dimensions.
Any guideline?
Hello,
Product image should be 800×800 pixels or smaller while the logo max dimension is 300×80 pixels
Comment’s response time is 5 days, it could be more for non-supported members. While official support response time is 1 – 2 days. Please post your support queries/questions, bugs, and feature requests with details at Tecdiary Official Portal – https://tecdiary.net/support After registration, you need to validate your purchase code to add item to your supported list. Once items are green in the support portal, you would be able to ask questions.
Thank you
Hi, can I import custom products from Woocommerce?
No, there is no such option but only import products with csv file. Thank you