-
it looks to me like your user "Lau" does not have access to the phpInv database (ether that or you don't have remote access). you need to login to mysql, select the database by typing:
use phpInv;
Then type:
GRANT SELECT, INSERT, DELETE ON phpInv TO lau@'localhost' IDENTIFIED BY 'password for lau account';
then do a a flush privileges by typing the following:
FLUSH...
2009-11-04 15:47:07 UTC by nobody
-
Same Problem am facing too, any help please!
thanks in advance!
2009-11-04 05:51:08 UTC by nobody
-
Hello. When I try to export my data prom phpinv in csv I have problem with format of csv . Data isn't displayed corectly and you can't do anything with data whitin. If some one have solution for this it will be appreciated.
2009-09-30 12:21:45 UTC by nobody
-
hi,
i am testing the phpinv 0.8.0, get blank page on http://localhost/phpInv/
any idea's?
thanks
Nef.
2009-06-25 01:27:48 UTC by nefkho7
-
I first of all, thank you very much for your work!
And now a request :)
Is there a way to have a automatic auto incremented inventory number when I insert a new item?
Thank you.
2009-04-16 11:23:23 UTC by nobody
-
Tested today everything work just fine. This solution is exellent.
2009-03-18 17:45:09 UTC by nobody
-
I solved this issue. It seems that is only firefox specific error.
Change in inc/session.php on line 26
$session['useragent']=str_prepare(substr($http_user_agent, 0, 50));
value of 50 to a bigger value egg. 100
and in mysql table phpinv_session change the field useragent to same value as in inc/session.php
(egg. 100)
2009-03-18 11:28:27 UTC by nobody
-
Exellent solution. Worked like a charm.
Thank you very much.
2009-03-18 10:47:42 UTC by nobody
-
Add the following two lines to inc/variables.php
isset($_GET['keyword']) ? $keyword = $_GET['keyword'] : $keyword = $_POST['keyword'];
empty($_GET['keyword']) ? $keyword = '.' : $keyword = $keyword;
This should solve the problem of the search.
2009-03-16 11:59:30 UTC by nobody
-
Same problem here with the search .. no matter what i search for it shows all content.
2009-03-16 11:55:21 UTC by nobody