If you already install ultimatepos, you just go to the backup option on the sidebar and in that place you can create backup automatically with the apphi guys how to backup database ultimatepos?
If you already install ultimatepos, you just go to the backup option on the sidebar and in that place you can create backup automatically with the apphi guys how to backup database ultimatepos?
sign as superadmin
I signed in as SuperAdmin and gone through administrative backup and after i click create new backup but it didnt generate any db files, how?If you already install ultimatepos, you just go to the backup option on the sidebar and in that place you can create backup automatically with the app
Check if you have the folder rights to do itI signed in as SuperAdmin and gone through administrative backup and after i click create new backup but it didnt generate any db files, how?
I have folders rights to do but not generating backupsCheck if you have the folder rights to do it
sign in as superadmin can make backup. if there is no superadmin is there any other solution?sign as superadmin
@planet, superadmin is defined in .env file.
add your username to ADMINISTRATOR_USERNAMES=
other solution is to edit app\Providers\AuthServiceProvider.php but you should now what you are doing:
if you remove backup permission here, you should add it to permissions table
share an image from the main windows of the app also the .env to check itactually I already have all the addons but I don't understand to complete them. looks like the manual thing works as well rather than nothing. thanks for the input. man.
Perfect! you need to set your username in line 11. For e.x. if you create your name account(when installing the app) with the name peter_smith, then you must put that name in line 11. The result should be, ADMINISTRATOR_USERNAMES= peter_smith
I've seen the support documentation from ultimatepos, there should be an additional modules menu to add addons. it uses index php.Perfect! you need to set your username in line 11. For e.x. if you create your name account(when installing the app) with the name peter_smith, then you must put that name in line 11. The result should be, ADMINISTRATOR_USERNAMES= peter_smith
If you don't do it, there are no administrators and you cant see the administrative options.
p.d.: For this kind of situations, you can make use of the support documentation of the ultimate pos page
Yes, the additional modules will appear when you set your username as an administrator. Do you already test it?I've seen the support documentation from ultimatepos, there should be an additional modules menu to add addons. it uses index php.
There no error in the ultimate pos ! Verify that all the requirements for the program to work in your computer are update . Or reinstall it ! Plus ultimate pos works much better on server host than a local hostHi, friends
Some time ago I experienced the problem above and I was quite dizzy with the problem. But after I looked for myself in some code and help location ideas of files from @Onsongo about the location of the file, I made changes to a few lines of code so that the program runs smoothly and normally.
Here's a solution, and hopefully it can help all of the members here!
Please change the file index.blade.php which is located at the location: "....\[Your_Project_Name]\resources\views\home\index.blade.php", focus on lines 346 -362.
Please follow the instructions below or you can replace the file I attached (please replace the original file).
From (In below is normaly code/unchange) :
PHP:sales_order_table = $('#sales_order_table').DataTable({ processing: true, serverSide: true, scrollY: "75vh", scrollX: true, scrollCollapse: true, aaSorting: [[1, 'desc']], "ajax": { "url": '/sells?sale_type=sales_order', "data": function ( d ) { d.for_dashboard_sales_order = true; } }, columnDefs: [ { "targets": 7, "orderable": false, "searchable": false } ],
Change To (You can replace code in below to your file):
PHP:sales_order_table = $('#sales_order_table').DataTable({ processing: true, serverSide: true, scrollY: "75vh", scrollX: true, scrollCollapse: true, aaSorting: [[1, 'desc']], "ajax": { "url": 'sells?sale_type=sales_order', "data": function (d) { d.from_dashboard = true; } }, columnDefs: [ { "orderable": true, "searchable": true } ],
I've tried the method you say, but I don't think it's perfect and it disables the popup table in the home menu.
And I tried to do it my own way by changing a few lines of code and it worked without a problem! The program runs and looks perfect. Anyway thanks for your information regarding the location of the error file.
[ICODE]
[/ICODE]
Yes, the additional modules will appear when you set your username as an administrator. Do you already test it?
Can you tell me where you are seeing the date errors to check it? thanks!Please if you do not know Laravel or PHP, do not bother using it as they are a lot of missing authorizations and some bugs related to date .
Developers let them in purpose to resolve them only to verified buyers.
Be careful and test it with fake data before using in production.
( I had to add multiple authorization check to multiple crud routes)