Table of Contents
Project: POS Management and Inventory System Project in PHP and MySQL with Source Code
About POS Management and Inventory System in PHP MySQL Project Free Download
POS Management and Inventory System Project in PHP MySQL Free Download enables you to manage inventory, sales, purchases, customers, invoices, receiving payments, and more. It will also allow you to make purchases and sales from anywhere, anytime. Whether you run a small business or a large company It’s the solution you need to manage inventory, purchases and sales – all in one app.
Online POS Management and Inventory System Features
These are the following features of Online POS Management and Inventory System in PHP MySQL:
- Easy POS and Dynamic dashboard
- Items , Adjustment , Transfer
- Quotations , Sales , Purchases
- Returns Customer & Supplier
- Users ,Customers, Supppliers
- Currency , Units , Category , Backup
- Payment Sales , Purchases
- Payments Report
- Overview & warehouse stock charts
- Purchases & Sales report
- Customers & suppliers reports
- Product quantity alerts
- Mail notification system addedd
- Uses Structured And Customizable Sass Code
- Integrated With Vuex,Vue Router
- Dark Version Included
- Multilingual 14 languages and More Will be added soon
- RTL Support Adeed
- Pure Vue Js ,No JQuery
- Clean And Organized Code
- Well Documented Code
- Standard Folder Stucture
- Easy POS and Dynamic dashboard
- and Many More..
Script Comes With
- Excellent support with a fast response rate.
- Fix any bugs or broken content.
- Help get you setup and installed!
- Secure Database that uses prepared statements so no SQL Injection!
- Protects against CSRF attacks!
- HTML Filter to protect against XSS attacks!
- Built using the latest Strong LARAVEL Framework.
Server Requirements
These are the following server requirements of Online POS Management and Inventory System:
- PHP >= 7.3.0
- Mysql 5.x or higher
- BCMath PHP Extension
- Ctype PHP Extension
- Fileinfo PHP Extension
- GD2 PHP Extension
- JSON PHP Extension
- Mbstring PHP Extension
- OpenSSL PHP Extension
- PDO PHP Extension
- Tokenizer PHP Extension
- XML PHP Extension
POS Management and Inventory System Installation
Installation in Server
These are the steps on how to install POS Management and Inventory System in Server:
Step 1 : Login to cPanel and navigate to File Manager
Step 2 : Not develop to work in sub folder. create a subdomain or use it in main domain., then click “Upload”
Step 3 : Select your zip file and wait for upload to complete
Step 4 : Unzip the uploaded file
Step 6 : Go back to Cpanel and navigate to Databases
Creating a new database
Before installing, you will need to create a new database. If you already know how to do this or have already created one, skip to the next step.Please use empty database. In most cases you should be able to create a database from your cpanel.
Useful resources
cPanel – MySQL Database Wizard
Plesk – Website databases
Now you need to create a new user. On the same page go to create a new database user
Now add the user to the database.
And select full permissions on the database to that user
Setup Installation : Access the url yourdomain.com/setup and complete the installation
Setup Wizard
Step One:
Name your application
Select Environnement : Local in localhost and production in Server
App Debug : it’s better to choose false In server
![Complete POS Management and Inventory System with Barcode in PHP MySQL [UPDATED 2024] 6 pos management with inventory system installation](https://www.campcodes.com/wp-content/uploads/2021/11/pos-management-with-inventory-system-installation.jpg)
Step two:
- DB HOST
- DB PORT
- DB DATABASE
- DB USERNAME
- DB PASSWORD
- You can test connection with database
![Complete POS Management and Inventory System with Barcode in PHP MySQL [UPDATED 2024] 7 pos management with inventory system installation 2](https://www.campcodes.com/wp-content/uploads/2021/11/pos-management-with-inventory-system-installation-2.jpg)
Last Step:
Click in Confirmed and waiting for generate database
Notes : It is not recommended to close the browser or stop a process Installation
Once the installation has ran the empty file installed will be placed into the /storage directory. If this file is present the route /install will abort to the 404 page.
Installation in Localhost
You need to download XAMPP or LAMPP Server
Step 1 : Go to C:\Windows\system32\drivers\etc\ open the “hosts” file in Administrator mode.
Step 2 : Add the following code to it. Here
127.0.0.1 stocky.local
Step 3 : Now go to, C:\xampp\apache\conf\extra for xampp users and for the wamp user “C:\wamp\bin\apache\Apache2.4.4\conf\extra” and open “httpd-vhosts.conf” file. Now add the following code into it.
Notes :Change the Document root as per your project also add domain name as you define into the “hosts” file.
<VirtualHost stocky.local:80> ServerAdmin webmaster@stocky.local DocumentRoot "C:/xampp/htdocs/stocky" ServerName www.stocky.local ServerAlias stocky.local <Directory "C:/xampp/htdocs/stocky"> Options Indexes FollowSymLinks Includes ExecCGI AllowOverride All Require all granted </Directory> ErrorLog "logs/stocky.local-error.log" CustomLog "logs/stocky.local-access.log" common </VirtualHost>
Step 4 : Last but the important step is to restart your Xampp or Wamp
Setup Installation : Access the url http://stocky.local/setup
Nginx
If you are deploying your application to a server that is running Nginx, you may use the following configuration file as a starting point for configuring your web server.
Please ensure, like the configuration below, your web server directs all requests to your application’s public/index.php file. You should never attempt to move the index.php file to your project’s root, as serving the application from the project root will expose many sensitive configuration files to the public Internet:
server { listen 80; server_name example.com; root /srv/example.com/public; add_header X-Frame-Options "SAMEORIGIN"; add_header X-Content-Type-Options "nosniff"; index index.php; charset utf-8; location / { try_files $uri $uri/ /index.php?$query_string; } location = /favicon.ico { access_log off; log_not_found off; } location = /robots.txt { access_log off; log_not_found off; } error_page 404 /index.php; location ~ \.php$ { fastcgi_pass unix:/var/run/php/php7.4-fpm.sock; fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; include fastcgi_params; } location ~ /\.(?!well-known).* { deny all; } }
read more : https://laravel.com/docs/8.x/deployment#nginx
Related Questions for Installation
Question 1: Do i need VPS OR Dedicated Server?
ANS: No you can run our product with shared server too.
Question 2: Which Hosting Provider will be best you think?
ANS: Any hosting provider who provide Cpanel Based Hosting.
Question 3: What is Cpanel?
ANS: Cpanel is a Control panel for server. You can Check More Here
Question 4: Don’t have Cpanel?
ANS: No worry, its working with any control panel but Cpanel is too easy to manage, for that we recommend Cpanel based hosting.
How To Edit Code?
Once You Install The Product on Your Server, You Will have Two Folder and Few Files.
On Folder “assets”, We keep all kind of asset like CSS, JS, Images. So if You Want To Edit Or Change Any Asset, Have a Look on This Folder.
On Folder “core”, We keep The Core of Laravel.
We Maintain Laravel Structure(MVC) on This Project.
“core/routes/web.php” All Routes (URL) in This Folder. You can find the ControllerName@FunctionName Here.
“core/app” All Models are in This Folder.
“core/app/Http” All Controller are in This Folder. You can Change anything you want if you need to change any functionality.
“core/resources/views” You Have All HTML Structure Here. You can Change anything you want if you need to change anything on HTML.
Template HTML Structure
The HTML template uses Latest Bootstrap v4 with valid HTML5 tags. This theme is a responsive layout with 12 column Support column. All of the information in content area is nested within a class and comes with predefined classes.
CSS Files and Structure
Mainly three main CSS files are used in this theme. The first one bootstrap.css, second one is style.css which for this template and third one is responsive.css to control responsive layouts.
Used Css File For Various Purpose :
bootstrap.min.css (in css Folder)
font-awesome.min.css (in css Folder)
jquery.circliful.css (in sass Folder)
font-awesome.min.css (in css Folder) slick.css (in css Folder)
swiper.min.css (in css Folder)
style.css (in css Folder)
Responsive.css (in css Folder)
If you would like to edit a specific section of the site, simply find the appropriate label in the CSS file, and then scroll down until you find the appropriate style that needs to be edited.
jQuery and JavaScript
- jQuery
- Bootstrap (bootstrap.min.js)
- gmap (gmaps.js)
- Highlight (highlight.min.js)
- Isotope(Isotope.pkgd.min.js)
- Jquery UI(jquery-ui-slider.min.js)
- Circliful(jquery.circliful.js)
- Counterup (jquery.counterup.min.js)
- Ripple (jquery.ripples-min.js)
- Slicknav(jquery.slicknav.min.js)
- Tubular(jquery.tubular.1.0.js)
- Lightcase (lightcase.js)
- Map Script (map-script.js)
- Particles (particles.min.js)
- Raindrops (Raindrops.js)
- Slick (slick.min.js)
- Swiper (swiper.min.js)
- All Plugin Activation File (main.js)
- jQuery is a Javascript library that greatly reduces the amount of code that you must write.
- Most of the animation in this site is carried out from the customs scripts. There are a few functions worth looking over.
In addition to the custom scripts, I have implemented few “tried and true” plugins to create the effects. This plugin is packed, so you won’t need to manually edit anything in the file. The only necessary thing to know is how to call the method.
POS Management and Inventory System Modules
These are the modules of POS Management and Inventory System:
POS Printer Settings
Guide to Setting Up Receipt Printer to work with POS Small Receipts
To set up receipt printer do the following:
1) If printer is not already installed, follow manufacturer instructions to set up the printer and install the software.
2) Go to settings for your printer in your operating system.
Note: The next instructions are for Windows 10 printer settings.
- Go to your Start Menu and click the Settings icon.
- Go to Devices, then Printers and Scanners. This is your printer settings.
- Once in your printer settings, find the receipt printer. Click the printer icon.
- Next click Manage, then click Printer Properties.
- Click the Advanced Tab.
- Click Printing Defaults.
- In the lower right corner of the Printing Defaults screen, click Advanced
The setup of the receipt printer is complete. It should properly print small receipts.
Note: These instructions are for Windows 10. If you are using an earlier version of Windows the settings should be similar. If you are using another operating system, find your printer size, find where to set the paper size and set it to 72mm x 200mm.
Print barcode/labels
Go to /app/products/barcode
1) select warehouse
2) select Product
3) Set quantity
4) choose Paper size
5) click on Update
5) click on Print
Login
login by default
Email : admin@example.com
Password : 123456
you can change password for security purpose
Dashboard
Dynamic dashboard
- Today Sales
- Today Income
- Today Expenses
- Today Profit
- This Week Sales & Purchases
- Top Selling Products This Month
- Payment Sent & Received This Week
- Top 5 Customers This Month
- Recent Sales
![Complete POS Management and Inventory System with Barcode in PHP MySQL [UPDATED 2024] 14 pos management with inventory system](https://www.campcodes.com/wp-content/uploads/2021/11/pos-management-with-inventory-system-794x1024.png)
Products
to create a new product it’s very easy
- Product Name (required)
- Product Code (required)
- Category (required)
- Brand (optional)
- Barcode Symbology (required)
- Product Cost (required)
- Product Price (required)
- Product Unit (required)
- Sale Unit (required)
- Purchase Unit (required)
- Stock Alert (optional)
- Order Tax (optional)
- Tax Method (optional)
- Note (optional)
- you can add multiple product image
- you can add multiple variant of product
you can manage product list
- Edit Product
- View Details Product
- Delete Product
- Generate Product list in PDF
- Generate Product list in Excel
- Filter product by code , name , category , name
Transfers
to create a new Transfer it’s very easy
- From Warehouse (required)
- To Warehouse (required)
- You can manage Transfer list
- Edit Transfer
- View Details Transfer
- Delete Transfer
- Generate Transfer list in PDF
- Generate Transfer list in Excel
- Filter Transfer by Reference , To warehouse , From Warehouse , Status
- Status (required)
Adjustments
to create a new Adjustment it’s very easy
- Warehouse (required)
- Select Product (required)
Expenses
to create a new Expense it’s very easy
- Date (required)
- Warehouse (required)
- Expense category (required)
- Amount (required)
- Details (optional)
You can manage Expense list
- Edit Expense
- Delete Expense
- Generate Expense list in PDF
- Generate Expense list in Excel
- Filter Expense by Date , Reference , warehouse , Expense category
Quotations
to create a new quotation it’s very easy
- Customer (required)
- Warehouse (required)
- Status (required)
You can manage quotation list
- Edit quotation
- View Details quotation
- Delete quotation
- Change to Sale
- Send quotation on email
- Generate quotation list in PDF
- Generate quotation list in Excel
- Filter quotation by Date, Reference , Customer , Warehouse , Status
Sales
to create a new sale it’s very easy
- Customer (required)
- Warehouse (required)
- Status (required)
You can manage sale list
- Edit sale
- View Details sale
- Delete sale
- Change to Sale
- Send sale on email
- Generate sale list in PDF
- Generate sale list in Excel
- Filter sale by Date, Reference , Customer , Warehouse , Status , Payment status
Sales POS
Easy POS
- Barcode Scanner
- you can search for product by name or code
- Filter Product by Brand , Category
![Complete POS Management and Inventory System with Barcode in PHP MySQL [UPDATED 2024] 21 pos management with inventory system free download](https://www.campcodes.com/wp-content/uploads/2021/11/pos-management-with-inventory-system-free-download.jpg)
POS Invoice
Purchases
to create a new purchase it’s very easy
- Supplier (required)
- Warehouse (required)
- Status (required)
You can manage purchase list
- Edit purchase
- View Details purchase
- Delete purchaseSend purchase on email
- Generate purchase list in PDF
- Generate purchase list in Excel
- Filter purchase by Date, Reference , Supplier , Warehouse , Status , Payment status
Sale Returns
to create a new Sale Return it’s very easy
- Customer (required)
- Warehouse (required)
- Status (required)
You can manage Sale Return list
- Edit Sale Return
- View Details Sale Return
- Delete Sale Return
- Send Sale Return on email
- Generate Sale Return list in PDF
- Generate Sale Return list in Excel
- Filter Sale Return by Date, Reference , Customer , Warehouse , Status , Payment status
Purchase Returns
to create a new Purchase Return it’s very easy
- Supplier (required)
- Warehouse (required)
- Status (required)
You can manage Purchase Return list
- Edit Purchase Return
- View Details Purchase Return
- Delete Purchase Return
- Send Purchase Return on email
- Generate Purchase Return list in PDF
- Generate Purchase Return list in Excel
- Filter Purchase Return by Date, Reference , Supplier , Warehouse , Status , Payment status
Settings
System Setting
- Edit Currency
- Edit Logo
- Edit Name Company
- Edit Server SMTP
Config SMTP
Go to /app/settings/System_settings and put your config smtp
Host : Host smtp mail server
Port : 25 or 587 or 465 or 2525)
username : your username smtp mail server
password : your password smtp mail server
Encryption : tls or ssl
Complete Online POS Management and Inventory System Project
- Name of Project: Online POS Management and Inventory System Project
- Language: PHP
- Databases used: MySQL
- Design used: HTML JavaScript, Ajax, JQuery, Bootstrap
- Browser used: IE8, Google Chrome, Opera Mozilla
- Software used: WAMP/ XAMPP/ LAMP/MAMP
Demonstration
Login Details as below :
Email : admin@example.com
Password : 123456
I hope this Online POS Management and Inventory System Project in PHP MySQL with Source Code will help you with what you are looking for and hope that you will learn something with this project that is useful for your future projects.
Related Projects: Complete Ultimate POS with Inventory Software Free Download, Complete Inventory and Sales Management System using PHP MySQL, DepEd Equipment Inventory System using PHP/MySQLi, Simple POS and Inventory Management System in PHP/MySQL, Simple Product Inventory System using JavaScript, Sales and Inventory Management System using PHP CodeIgniter and MySQL, Pharmacy Inventory Management System in PHP MySQL, Computer Sales and Inventory System in PHP MySQL, Online Inventory Management System in PHP MySQL, Advanced Inventory Management System in PHP MySQL, Grocery Sales and Inventory System in PHP MySQL, Complete Multi Store Inventory Management System in PHP MySQL
WhatsApp me for errors fixs
Hello, So there is no one posting the solution for server error 500. Please share the solution for hostinger and localhost.
I found the video how to fix 500 error in youtube.
just for share: https://youtu.be/hBSTlM2E7Dw
If you are have issue in installing it go to app/Http/Controllers/SetupController and comment out the artisan commands. That will work
I have access to the complete source code and solutions. Please contact me via WhatsApp at +2348167013743 or +2349132064109, and then email me at freeinnotech@gmail.com or inndeveloper247@gmail.com.
Hi innocent IM still waiting for the script
Just right now, I fixed the 500 Server Error.
For installation and modification on this project you can inbox on WhatsApp
+2348055139724
Hey Please provide the required steps and solution to fix 505 server error
500 server error po how to fix
run
php artisan migrate
and inside the folder storage/framework create a folder ‘sessions’ and you are good to go
hi
Email : admin@example.com
Password : 123456
this user and password not work with your lastest [UPDATED 2024].
so what is the user and password ?
I’m trying to install it locally, but I am getting the below error. Please how do I solve that?
Warning: require(C:\xampp\htdocs\vendor\composer/../symfony/polyfill-php80/bootstrap.php): Failed to open stream: No such file or directory in C:\xampp\htdocs\vendor\composer\autoload_real.php on line 41
writte me on my whatsapp i can help you ( +2250595052016)
Hi Admin
if POS is very helpful. but alot of people have problem on setup page: HTTP ERROR 500. so if you happy to share this POS on free so you should happy to solve this problem.
how to fix server 500 error
Edit the env file
Hi, what to edit?
How did you guys solve the 500 server error, please help
can someone please me, am getting 500 server error. Newer version please??
WHERE IS THE DATEBASE?
sir can you add default discount fixed price for products in add product tab.
May 29 2024
download button file not found!
Download it from the bottom of the page.
new version is not working and error say “500 SERVER ERROR”
Same error for me. did you find any soulution?
I want to modify the vue js code but it’s not updating on the browser, how can I update it?
so noone has been able to run this thing ??
working like charm but still have few bumps here and there
Yes contact me on WhatsApp for any error
+923071475693
can you make a video tutorial on setting it up on localhost im having a hard time figuring how to run your system and I really need this system because for my capstone and almost complete pos system plss help i need a step by step tutorial
WE CAN WORK TOGETHER THIS iS MY CAPSTONE TOO EMAIL ME AT MARKSALVA230@GMAIL.COM
kindly add these features i have encountered in other pos. payment integrations, loyalty points and loyalty cards. end of day report on sales and product sold and remaining stock. good day
Admin ineed you help in installing it its shows 500 error plz help me solve it or get paid for installing this
Change your settings in your .env file.
where sir?
What needs to change in the .env file please for this to work
Hello dears, i have same issue did you fixed please? if yes how?
Have the LAMP installation process? With php8 and MySQL 8
where is the source code? I cannot find the download link
It’s in below the project description with the ‘Download Here’ button.
file is not found!
Download in the Attached Files below and not in the Pink Download Button.
The link says the file was not found. Can you help me find it?
Please download it in below the description and not on the Pink Download button.
Hi, it doesn’t work. tried by following all steps.
something weird here…
same and its sad
There is a bug in this new update. it does not work. It shows “server error: 500” after host it under your instructions.
same issue, did you fixed?
i have same issue, did you fixed it sir?
Which XAMPP version need for this project?
You can have the latest
how to fix 500 error sir
please give me the details about Introduction
Overview with problem statement
Project Objective and Scope
1. Existing System
2. Proposed System
Applications
of this project
Hello, feel free to contact me for a very good POS system.
Email me here.
Thank you.
mr.ares.zeus@gmail.com
how we can find good version of Pos Sytem?
Hello, feel free to contact me for a very good POS system.
Email me here.
Thank you.
please send me the source code. shariarahmmedsc@gmail.com
Please where can i found the code source to change the configuration of th pos print
is this project is full version or demo/trail version
Hello sir first of all I am vary grateful for you for offering such valuable project but I am suffering a problem while setting up this project when I reach the last step of the setting the project when I redirect to “http://127.0.0.1:8000/setup/lastStep” there accures page error so I can’t use the software please tell me solution for this problem thank you
hello did you solve this error?
hello , if i have 2 warehouses and i want see list of product and the quantity in each warehouse ,something like staut inventory , where i can do it
does it work with barcode scanner devices?
Can I run this POS in XAMPP as local?
yes
Looking to pay for setup file and download working configuration. belive i saw a $10 fee can the author please contact me with via email also would like a few fields changed to my needs if possible.. please contact me tonibrooks362@gmail.com
For those who are having the setup, please use an older version of xampp, I used xampp-windows-x64-7.3.30. Thank you
It system can’t select the warehouse. So being it not possible to make purchurse, and use the pos module
An excellent project, weldon sir.
The only challenge I have right now is quantity while adding product. No space or quantity
This is look so professional. But unfortunately I cant install properly, Can anyone help me please? My Conntact Number is +8801728889516 or Email: mhabirj3@gmail.com. Hope admin or anyone help me to install this.
Do you have the latest version v4.0.5/6 for this project?
Good product, but I can’t go pass setup.
Anyone need help instantly regarding any software/application project on campcodes can contact me right now. He will get my services instantly. Whatsapp +923006037178
Regards
Senior Software Engineer
Has the problem involving warehouses been fixed, and in case the bug is still present, where can you take action to fix it ?
Hello admin i really admire your work. and i was using this version for almost a year. I wonder if you have the latest version? I would really appreciate if you could give us also the latest version. Thank you and have a nice day. 🙂
Someone customized the product management by batch id? for example when they buy a product assign an specific batch id then for tracking it will be helpful
can’t the default currency be changed. thats a big issue you know?
Same here, how to edit the currency with thousands separators? please help
I need the full version. How much?
How much for full version
i have problem installation on server, using 000webhost. i don’t know how to install on 000webhost
same here, anyone has a tutorial to install this on webhost
Hi. Do you have the latest version for this: https://stocky.untitledsoft.com/login
I will upload it within this week.
have you already update it?
did you upload the new version?
how can i get the latest version
Hi, did you find the latest version?
Hi, did you find the latest version?
Hello admin, I’m trying to run the project on a localhost, but I can’t get to the setup page.
I’m trying on XAMPP for Mac.
Can you help me please?
What is the problem?
The setup page doesn’t initialize. It only shows a blank page.
Reach out on this email for debugging of any kind
debugactivetechnology@gmail.com
I would appreciate if admin to could a short video on how to edit the logon screen and change image etc.
I can help you on that
how to edit the login screen and change the image please
Anyone have a later version, this version seems to have some bugs and glitches.
i’ve follwed the instructions but couldnt install the setup nothing is working. can you assist?
Hi. can i change the default currency from dollar? my country currency not dollar
Hi thank you for sharing this application, anyone know I can change the login screen background image, plus the application seems to have some glitches, anyone have a later version? if so please share.
anyone would like share the source code to me? thanks
You can freely download this by clicking the “Download Here” Button.
Thanks i need this very much
Hi Admin, how can I update the system from lower version to the latest version while retaining the data from the older version??
Thank you. hope you can respond to this.
File not available
When clicked on backup, it generate a backup sql file with 0 bytes.
i add the correct dump_path in .env and the issue remaining the same.
Kindly if you know how to solve it i would appreciate that.
Thank you for your great app 🙂
Can this be used commercially?
Can this me used commercially?
please bring VTU script please 🥺
Hi, in the POS page, the default place holder for the warehouse dropdown is “Choose Warehouse”, is it possible to set to specific warehouse? I tried to modify the code in pos.vue, but it doesn’t work. Thank You.
Can I use phpMyAdmin to host it?
I can not edit this software, any help?
available in 10 dollars complete project
I need a complete project
you can contact me debugactivetechnology@gmail.com for any kind of support on this software.
fee included
Bonjour Campcodes
Avant votre application marche très bien mais après la mis a jour,
Application ne marche pas
Pouver vous expliquer plus precisement quelle probleme vous avez rencontre?
Anyone need help instantly regarding any software/application project on campcodes can contact me right now. He will get my services instantly. Whatsapp+923006037178
Regards
Senior Software Engineer.
Anyone need help instantly regarding any software/application project on campcodes can contact me right now. He will get my services instantly. Whatsapp+923006037178
Regards
Senior Software Engineer.
Barcodes not showing/printing up after updating
Barcodes not showing up when trying to print them after updating
Envato User ID
Purchase Key ,
WITHOUT THIS INFO, WHY THE TILE IS complete pos?????
does it work on hostinger
it is not free so , please declare that for visitors
This is completely free.
how to edit the source code. it installs the project. but after edit and refresh nothing is updated on browser. any help would be appreciated.
I have a week trying to solve the same issue. Some help please. There are a lot of bugs, and the system can be edited, it can’t select the warehouse, my trying to make some personalization, but it’s not working
I cant find testDB this is the error: http://localhost/setup/testDB 404 (Not Found)
I am installing as Localhost. I do the edits (step 2 & 3)
It shows “This site cant be reachedCheck if there is a typo in stocky.local”
please help !!!
I need help how to edit the images? I want to change images in the website. Willing to pay
you can contact me debugactivetechnology@gmail.com
Warehouse option not show plz help
Hi Team, i tried to setup this project on my local meachince but it was not successful. i felt documentation was not complete for local host setup. can you help me with more details on step by step process to succesfully compelte the setup.
LET ME BREAK DOWN THE INSTALLATION PROCESS
Download Xampp version 7.3.0
Install it
Copy the POS files to htdocs folder in xampp
You can delete the files you find in the htdocs folder before adding POS files
Then open xampp control panel and start mysql and Apache
Then go to your browser and in the url bar type localhost
It should bring you to the setup page
Cheers
thank you. was stuck on it till i saw ur post
how it doesn’t work on me
Hi
i already hosting your POS so how do i update to your new version ?
please let me know to my email. soonpiseth2017@gmail.com
many thank
Hello, I need the source code
Anyone need help regarding application setup, purchase code issues or software customizations then contact me right now. whatsapp contact: +92-3006037178
hi
the POS system still have may place that incomplete such as:
1- POS invoice: not show product name, quality, price. not show customer phone number, not show shipping cost.
2- Expenses page it’s culculate wrong amount. it’s mean if i create 3 expenses with amount 2$ per expenses so in Total 6$ in report but when i remove 1 expenses transaction the report still remind 6$ not reduce 2$ that i already delete.
so if developer has read my comment please help to reply to my email: molycaca21@gmail.com
thank you
Hi! Kindly guide me on how to install it on my shared hosting account using cpanel.
Do you have a tutorial on how to deploy on 000webhost?
where to access the login page and how to connect database?
I want to know is this have a expire date or trial period?
i like to know is this software working totally free? is it not a trial version?
can you please help me to install this project in my pc
yes
Can i edit for my country. I am from myanmar
No setup folder/files found. Plz help
same problem here please help
same here. Did you manage to Install?
There is no option to remove invoice POS naming on the receipt again no subtotal
Hi Sir,
I need source code of it, i will pay for that.
how about the barcode scanner ? it automatically detected ?
Hi!
Great project, is there going to be any future developments?
learn laravel
Can I use it for the production environment? For my clients?
After changing in host file, running for setup it showing blank page? Helpppp
localhost can’t currently handle this request.
HTTP ERROR 500
i have the solution wsp +51 926 469 514
Sorry but your Wsp its not working, how can i contact you?
Please help me install it on mac os xampp
Good morning sir. How to use it using xampp ?
Wondered why when I try and alter a product unless there is at least 1 the system can’t find it
WHEN I CREATE A PRODUCT? I CANNOT ADD A QUANTITY; CAN YOU HELP ME ? THANKS
I can help you install this using cpanel
At a low cost you can contact me @ +2347042736124
I’m a website developer I have installed different script like this using jimdesigndomain.com
I highly recommend
Hello ! Please can you help install the project?
can you please help me install this on xampp i need a demo, i will pay you some money.
you can reach me here for assistance 08077335342
I will help
HALO, ANYONE WITH SETUP FOLDER PLEASE
Yes
Are u able to share?
hey can you share it with me too ? please!
daryarecord@gmail.com
please how can other computers on the same local network access it?
how can i add new languages?
you have done very good job, thank you for sharing.
is possible to calculate tax row wise. usually tax will be calculate after discount of each item based on product tax settings.
so bottom tax total will be calculated from sum of the row tax.
Please guide me. how to achieve this.
I installed with the help of video on this site. It wonderful and excellent software.evryting is as per per my requirement.Good job done.
But I noticed one issue (may be its my fault)
When clicked on backup, it created a backup sql file with 0 bytes.
Can you please help me.
we are finding it hard to deploy it on xampp as local user can you give us details on how you edited your host files in the etc and htdocs directory?
contact me on +256772222018 whatsapp and i help you out
Please i need some modification on this project i am paying for it
+2348160992336
Hit me up +1 806 414 0168
you can contact me debugactivetechnology@gmail.com
404
Error!
Sorry! The page you were looking for doesn’t exist.
Please check your installation setting.
can’t find your number in whatsapp.I need the source code. will pay for it.
Can you please provide source code ? i can pay for that.
Did you get the source code? Kindly let me know coz i have a modified version of the source code
harika bir paylaşım olmuş. Kitap alıntıları için kullandım
i like to know is this software trial version?
For some modifications on this project. Inbox on WhatsApp
+1 806 414 0168
i can’t find your given number in whatsapp