-
Posts
922 -
Joined
-
Last visited
-
Days Won
1
Everything posted by phppup
-
I don't have access to my computer at the moment, but... The first script is a basic HTML form (with some JS and CSS links) that is saved as a PHP file. To combine them, I have simply cut and pasted the form code (in its entirety) below the PHP code (displayed previously). I have not changed any file names or paths. Also, after deeper investigation, I saw a line in a jQuery file (not my forte) that was written as "data.html" . Is it possible that it is falling to find "data" because AFTER my modification there is no longer an HTML file? If this is true, can I redirect it to the PHP file? Perhaps a better question would be "What is the benefit to keeping my form and the PHP that process it within a single file? Thanks for the help and HAPPY THANKSGIVING.
-
I already have a working PHP/HTML uploading form that I've been working on and tweaking as a single PHP file. Now, I am attempting to integrate a progress bar. It seems almost impossible to find a working script to show the progress of multiple files as they upload. However, I have one that is "good enough" and have broken it down thusfar so that I can effectively integrate it into my working script. At this point, (aide from the JQuery, CSS, etc.) it consists primarily of two files: The first is a PHP file containing the form and basic links for function and style. The second is a PHP upload file that is handling the "heavy lifting." I have broken it down to this: $dir = 'uploads/'; $count = 0; if ($_SERVER['REQUEST_METHOD'] == 'POST' and isset($_FILES['files'])) { // loop all files foreach ( $_FILES['files']['name'] as $i => $name ) { // now we can move uploaded files if( move_uploaded_file($_FILES["files"]["tmp_name"][$i], $dir . $name) ) $count++; } echo json_encode(array('count' => $count)); } No names or file locations have been changed and it functions as originally designed in this condition. However, if I combine the first file with this file, I loose the echo json_encode(array('count' => $count)); result, which is expanded in another file to be a final message of "You have uploaded $count files successfully." What am I doing wrong or missing? Is there an easier way to do this? A link to a fancy progress bar for multiple file upload would be wonderful, as most that I've found actually do not work.
-
setting SMTP in php.ini to make mail() function work
phppup replied to ajetrumpet's topic in PHP Coding Help
The link you posted does not connect to a definitive article. Please double check it. -
I have an index HTML form that has a JavaScript link and action = 'xyz.php' Everything works fine. I've seen PHP scripts with HTML form after the closing tag ?> and they work. Yet when I included my HTML g form after my PHP code, some of my JS stopped working. What are the protocols to combining PHP and HTML? Which should run first? When is the action run?
-
Thanks greatly to cyberRobot. Using the diagnostic PRINT line assured me that the UPLOAD is being grabbed and effectively moving files. Now I need to focus on the code. At this point, I think these lines are where my problem lies if($dir = opendir($startingFolder)){ while(($file = readdir($dir))!== false){ The original scripting (which works) is designed to take folders from an established folder rather than from an upload. So my thinking is that I need to initiate a transition. I have tried replacing these lines with foreach ($_FILES["upload"]["error"] as $key => $error) { $tmp_name = $_FILES["upload"]["tmp_name"][$key]; if (!$tmp_name) continue; $name = basename($_FILES["upload"]["name"][$key]); if ($error == UPLOAD_ERR_OK) { but that is apparently incorrect. What coding can I use to bridge the gap to allow the uploaded files to continue through the scripted process?
-
I am double checking my code and I have had the correct syntax in place (ie: $startingFolder = $_FILES['upload']; ) yet I am not getting a result unless a switch back to $startingFolder = 'myLocalstorage/'; (at which point everything runs fine. Is there a diagnostic or echo that I can use to confirm a connection to the uploading items. My upload is confirming that the items are selected, but I am not receiving a success message nor am I seeing a result in my destination folder when I upload.
-
In actuality the quotes are in the correct location. It's the damn software that I am trying to use to create the post that keeps shifting things. $startingFolder = $_FILE['upload']; ['justsinglequotesethere'] But I still am not getting any results. PS: should echo $startingFolder give me the name of the tmp folder or list its contents? What do I need to complete the connection? I HATE AUTOCORRECT. yez, I h@te it soooo much.
-
Thanks to all, but I am still confused. I have read both Barand's references earlier, and in fact have quotes on my array index. Am I correct in expecting $startingFolder = '$_FILE['upload']; to work as a valid replacement to $startingFolder = 'LocalFolder/' or am I missing something. Isn't the code that effectively loops through the folder's files adequate to loop through the array? Should I be linking to the tmp folder instead?
-
I have a PHP script that modifies images that are stored in a local folder related to $startingFolder. Essentially, I can use $startingFolder = 'anyFolder/'; $finalFolder = 'endResult/'; To manage the variables and direct the source and destination of the scripts actions from this starting point. I'm trying to extend my capabilities so that I can use the script while uploading images. Rather than UPLOAD several images to $startingFolder and then run the script, I thought it would be more efficient to handle this in one script. However, I am having trouble making the CONNECTION so that this can be accomplished. What is the proper way to 'grab' the files during upload? How can I access the files during the process? I have a working HTML <input type='file' name='upload[]' multiple > And have tried $startingFolder = '$_FILE[upload]'; but I am missing the mark somewhere. Please help.
-
After a lot of reading and some progress, there are now a whole new set of questions that have emerged. So this thread requires more discussion and opinion for guidance, rather than actual code solutions. I have found different approaches to uploading image files. Some upload directly to a destination folder. Some upload to a database. Some do both. It seems more practical to upload image files to a folder (although I do recognize the bonus of having information about the individual files stored for reference), but is there a benefit to using one instead of the other? For space? Speed? Other implementations?
-
That's exactly what I was trying to avoid. LoL. Thanks.
-
So a decent script would include a php file that connects to the server, and validates the file type or 'scrubs it' for security purposes?
-
Are you saying that even if the JavaScript is on the server, it will not be able to put the image files on the same server?
-
An obvious answer would be ok. Sometimes the most difficult solutions are in plain sight. I am not doing the images in a database, so I am looking at JS scripting. I want sure if the destination folder is required to be at the top of a script, or file some specific guidelines. I'm sure I'll eventually find the answer, but I was hoping for a clue that might help me save some time.
-
It always seems so simple.... LOL Hello to my old friends, I have been toying with adding an UPLOAD SCRIPT for moving images from a desktop to a website in order to eliminate the need to log into the server to post images. I've seen a few online scripts of various degrees and some with demos), yet the one blaring question remains: Where is the line that dictates where the files end up? So many of the scripts explain how wonderfully they look and operate, but they do not indicate where to edit in order to control the endpoint. Any insight, as well as guidance to avoid pitfalls with regard to this venture will be appreciated. Happy Halloween, as if coding isn't scary enough (at times). *wink*
-
Can I simply change the MP4 extension to AVI just to confirm functionality?
-
I opened the webpage in both Firefox and Chrome and got the same result. I'm going to conclude that since these are the same browsers that played the video from W3 (both while at their URL and after saving the file locally) that it is not a browser issue. How do I proceed regarding the codecs, or is their a simpler / more effective way to make a simple screen recording for use on a webpage?
-
This is a first time effort to create a video of my local pc workstation screen. Attempt #1 utilized an application provided in Windows 10 to create the MP4 file. Attempt #2 was to convert a Powerpoint 2010 presentation into an MP4 file Both seemed to go well, and produced files then when clicked independently on the desktop, will play their clip. However, when called from a local webpage "No video with supported format" is the message displayed where the working video is expected. <video width="400" controls> <source src="mov_bbb.mp4" type="video/mp4"> <source src="mov_bbb.ogg" type="video/ogg"> Your browser does not support HTML5 video. </video> <video width="400" controls> <source src="Presentation2.mp4" type="video/mp4"> <source src="Presentation2.mp4" type="video/ogg"> Your browser does not support HTML5 video. </video> I borrowed a video clip from W3 and it seems to work fine, which leads me to believe that either I am creating a damaged file or the file is not truly MP4. The file PROPERTIES indicate it is MP4 in all instances. Where did I go wrong?