Ask Question Forum:
Model Library:2025-02-08:A.I. model is online auto reply
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by bbdesign
at 2024-07-12 06:24:05
Point:0 Replies:5 POST_ID:828962USER_ID:11863
Topic:
PHP Scripting Language;;JavaScript
I installed Uploadify 5 (the HTML5 version) on this page:
http://www.berksfoods.com/crazyhotdogcontest6/
When you click SELECT in the form and choose image(s), it uploads and then displays a "complete" message. Using Firebug, the POST seems to have completed successfully. However, no JPG file appears on the server.
In my uploadifive.php script, I set the upload directory as follows:
http://www.berksfoods.com/crazyhotdogcontest6/
When you click SELECT in the form and choose image(s), it uploads and then displays a "complete" message. Using Firebug, the POST seems to have completed successfully. However, no JPG file appears on the server.
In my uploadifive.php script, I set the upload directory as follows:
I created an "uploads" directory in both the root and within the "uploadify" directories (where uploadifive.php is located), to be sure. Both are set to 777 full permissions.
I'm not sure what else to try. Any advice? Anything I can add to the PHP script to try to figure out what is going on?
Thank you!
Author: bbdesign replied at 2024-07-17 02:16:13
Found problem.
Expert: Scott Fell (padas) replied at 2024-07-12 10:03:26
Very cool site.
But icecream on a hot dog?
Mustard, glowing green relish, pickle wedge, tomato wedge, sport peppers, onions and celery salt. That's a dog!
But icecream on a hot dog?
Mustard, glowing green relish, pickle wedge, tomato wedge, sport peppers, onions and celery salt. That's a dog!
Accepted Solution
Author: bbdesign replied at 2024-07-12 06:45:09
Thank you for looking, but it seems this is an issue with an md5 string that is passed to the script, I am guessing for security. I was not passing the value, so it was rejecting the post.
Expert: duncanb7 replied at 2024-07-12 06:40:13
It might be full path issue .
Please send us the exact full path of $uploadDir = '/uploads/';
I guess it is at /home/yourwebsite/public_html/uploads/, Right ?
If so, set it as
$uploaDir=$_SERVER['DOCUMENT_ROOT']."/uploads/";
Take a look at this about $_SERVER variable at http://php.net/manual/en/reserved.variables.server.php
Hope understand your question completely.If not, please point it out
Duncan
Please send us the exact full path of $uploadDir = '/uploads/';
I guess it is at /home/yourwebsite/public_html/uploads/, Right ?
If so, set it as
$uploaDir=$_SERVER['DOCUMENT_ROOT']."/uploads/";
Take a look at this about $_SERVER variable at http://php.net/manual/en/reserved.variables.server.php
Hope understand your question completely.If not, please point it out
Duncan
Author: bbdesign replied at 2024-07-12 06:34:59
I installed the Uploadify demo at this URL, and this DOES work:
http://www.berksfoods.com/Sample/
File appears in the "uploads" directory of the root. My PHP script and the demo PHP script are identical.
This must have something to do with the fact that my page is in a folder? (even though it isn't in a folder, its a WordPress-generated page).
http://www.berksfoods.com/Sample/
File appears in the "uploads" directory of the root. My PHP script and the demo PHP script are identical.
This must have something to do with the fact that my page is in a folder? (even though it isn't in a folder, its a WordPress-generated page).