Click to See Complete Forum and Search --> : Image uploading problem still isn't solved


Harry7979
May 14th, 2004, 03:10 AM
Hey,
A couple of days back, I'd posted a topic that said that I'm having problems uploading images. To recall, here it is once again,

Upload of images works on the PC using Internet Explorer. Does not work on the Mac with IE.

Does not work on either computer system in Netscape.

Look like it is both system and browser problem.

To, the moderators and all senior programmers:
I'm expecting help from someone as soon as possible. This was and still is urgent.

Thanks to everyone.



:)

enfekted
May 15th, 2004, 10:13 AM
Not sure if I can help you too much, because I don't know perl. But since this sounds kinda urgent, I'll throw my 2 cents in.

I have a code that uploads images. This works fine on our normal pc's (IBM pc's). But, when we try it on Macintosh, it gives problem. Please, help me with the code that will resolve this problem.

1. What do you mean by "it gives problems"? I think we need a more specific explanation of the situation, error messages, bad data that is passed, etc.

2. If the problem is dependant upon the OS of the client it doesn't seem like this should indicate a problem with your Perl script since that should be running on the server.

3. The only difference that I know of between PC & Mac (as far as uploading of a file in HTML) is the following:

<input type="file" id="example">
<script language="JavaScript">
// On a PC
example.value == 'C:\somedirectory\somefile.txt';

// On a Mac
example.value == 'somefile.txt';

// When the value of the form element is referenced on a Mac the full path is not shown.
</script>