[PHP] Open-source browser-based POS system?

2003-09-02 Thread John Almberg
Anyone know of an open source, browser-based Point of Sale system? -- John -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Open-source browser-based POS system?

2003-09-02 Thread John Almberg
items? -- John Chris Sherwood wrote: a quick search on google revealed a few things http://www.google.ca/search?q=browser+based+POSie=UTF-8oe=UTF-8hl=enmeta= try that and see if any of those meet your requirements Chris - Original Message - From: John Almberg [EMAIL PROTECTED] To: [EMAIL

[PHP] Installing PHP and MySQL on Linux machine

2003-03-05 Thread John Almberg
I've got both MySQL and PHP working independantly on my Linux web server. That is, I can view PHP web pages via Apache and I can access MySQL from the command line, set up databases, tables, etc. What I can't do is get them working together. When trying to make a connection in the usual way:

[PHP] Problems with sessions

2003-02-07 Thread John Almberg
I've got an odd problem . . . I've got a PHP site (PHP 4.2.2, Apache 1.3.26, Linux box) that uses sessions to track a user_id for each user. I use the user_id to grant various rights. This works like a dream 95% of the time. But every once in awhile, the session information gets lost. It's so

RE: [PHP] File upload via HTML forms

2001-04-02 Thread John Almberg
Howdy, You should be able to read this file using the file system functions. The PHP process (if it is set up properly) should have read access to this directory. The problem you will have is *writing* it to your own directory, as the PHP process probably *doesn't* have write access to your

RE: [PHP] This PHP list

2001-03-29 Thread John Almberg
True, but you have to remember that a lot of 'newbies' are actually superb graphic designers with a lot of experience developing static websites. They are grappling with new demands from their customers for more dynamic features. If they don't quite grasp the difficulty of what they are trying to

[PHP] Permission denied

2001-03-23 Thread John Almberg
Hi all, I'm trying to upload a file from a client browser to my server. On the client side, I've got: FORM ENCTYPE="multipart/form-data" ACTION="upload.php" METHOD=POST !-- INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1000" -- Send this file: INPUT NAME="userfile"

RE: [PHP] Permission denied

2001-03-23 Thread John Almberg
Hi Adam, thanks for your quick repsonse. I'm just renting space on a (Linux/Apache) server, so I don't have any control over how PHP is configured on the machine. Perhaps there is a way for me to change my 'local' PHP configuration? I don't know much about this aspect of PHP, obviously. I'm just

RE: [PHP] Permission denied

2001-03-23 Thread John Almberg
Adam, Just ran phpinfo and you are correct: the Apache User/Group is "nobody". H'. This sounds like a problem. Hope there is an answer! - John -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [PHP] Permission denied

2001-03-23 Thread John Almberg
Whoopee!!! After two days of propeller-spinning, I finally uploaded a file successfully!!! I had to use an FTP connection to do it, because my PHP process didn't have permission to write files to my directory, but that's fine. Here's the code snippet that worked the trick, with my

RE: [PHP] I need an expert to tell me what I am doing wrong

2001-03-23 Thread John Almberg
You don't say where the failure is, but I'm guessing its when you do the mysql_query. Your INSERT statement looks a bit odd. Try: $sql = "INSERT INTO orders (product,name,email) VALUES ($product,$name,$email)"; John -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] Problems uploading Files

2001-03-22 Thread John Almberg
Hello Sebastian, What a timely posting! I am trying to figure out how to allow a user (using any internet-connected pc) to upload a file to my PHP-enabled server. I am trying to use PHP and the FTP functions, but can't figure out how to address the file on the user's machine. Any hints from