Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner I just discovered some new information on why the online submission pages weren't sending as during some testing I discovered there was a way for the submitted info to be sent. Here it is. I have online submission pages on 4 websites: RadiantNewHorizonHomes.com, RTO-USA.net, SubterraneanSoundStudio.com and RebHellionRecords.com. Each of these 4 … Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner This one is becoming more perplexing. After adding in the PHPMailer coding, page would crash (e.g. blank white screen, HTML file that would display the screen doesn't even start at all, e.g. error in the 1st running PHP file). Adding the semi-colon at end of line 18 (in previously discussed code) did not work and funny thing is, the original coding… Re: Online subission forms not sending emails of submitted info Programming Web Development by Chris_103 It seems like you're experiencing issues with PHP-based email functionality, where submissions are not triggering emails to be sent. Let's dive into the code snippet you provided and see if we can identify any potential issues or improvements. Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim I checked my code and I only found 2 differences, the first is the 2 `use` commands before the require: use PHPMailer\…your email server at `smtp.ionos.com` (74.208.5.2): Type Domain Name IP Address TTL A smtp.ionos.com… 74.208.5.2 24 hrs You could possibly spoof setting up an aol… Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa ….radius ) { xUp = false; xDx = ( int ) ( Math.random() * 5 + 2 ); } if (xUp) x += xDx; else x -= xDx; if ( yUp ) y += yDy; else y -= yDy… Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa ….radius ) { xUp = false; xDx = ( int ) ( Math.random() * 5 + 2 ); } if (xUp) x += xDx; else x -= xDx; if ( yUp ) y += yDy; else y -= yDy… Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 ….radius ) { xUp = false; xDx = ( int ) ( Math.random() * 5 + 2 ); } if (xUp) x += xDx; else x -= xDx; if ( yUp ) y += yDy; else y -= yDy… How Build video-player in html And css ? Programming by Kirubel_2 …rel="stylesheet" href="../../ionicons-2.0.1/css/ionicons.min.css"…display="none"; } else{ x=document.getElementById("share").style.…display="none"; } else{ x=document.getElementById("follow").style.display… Re: How Build video-player in html And css ? Programming by Kirubel_2 … solid transparent; height: 30px; width: 30%; background: rgba(2, 21, 71, 0.506); font-family: arial; font-…cover; background-repeat: no no-repeat; overflow-y: scroll; overflow-x: auto; } .body2{ height: 100%; width: 100%; background… Re: Mastodon Community Center Geeks' Lounge by Dani I just stumbled upon this and had no idea that Mastodon was even a thing 6 years ago, pty! I first became aware of them back when Elon bought Twitter (ahem, X) and everyone fled ship trying to find an alternative. Sorry no one replied to this thread until now. Guess you were just too ahead of your time. ;) Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Thank you so much for your reply and additions! It is certainly working as I wanted. I will read through the code you have added and ask you any questions I might have. I hope you don't mind. Regards Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by Dani I’ll mark this question solved :) Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by Dani … oh, sorry, missed the bit about you still needing clarifications. Feel feee to ask :) I’ll now unmark this topic as solved. /facepalm Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Hello, Thank you again so much! All your additions are clear, but it seems like whenever two balls collide, more than one ball is added to the arraylist and painted. Any way to have just one ball added to the panel for every collision? Have some kind of a toggle flag in paintcomponent? Regards Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa Yes, this is true. Overlapping ball spawns can do that causing a chain reaction. Something like that could be done. How you handle the spawning of the new ball is what I played with a bit before. You will see better collision detection changing to: g.fillOval(ball.getX(), ball.getY(), 1 * ball.getRadius(), 1 * ball.getRadius()); Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Got it. Thank you so much! Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by vortex_1 In my opinion, implementing a feature in a bouncing balls simulation where a new ball is created when two balls collide can add an interesting and dynamic element to the simulation. This feature can introduce a sense of complexity and unpredictability, making the simulation more engaging and challenging for users. It could also provide an … Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Great reply, vortex! Agree with all your points. Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by aishamushtaq Hi, Its helpful for me. I got my answer. Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Hanginium65 Good day, Salem. My apologies for taking so long to reply to your suggestion. I refactored my code to read the contents of the tar.bz2 file and then pass them as a file-like object to the 'put_object' and also to change the content type for the file transfer to "application/octet-stream". The first was sent through to object storage … Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Salem I don't understand why you need to extract all the files from the compressed `tar.bz2` just to upload to a backup. Also, line 69 is now meaningless having just posted only a snippet of the code. Before the error, what was the last `logger.info` message? Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner Ran into some new issues. Here goes. In order to download PHPMailer, must download Composer. In order to install Composer, need a Command Line PHP.exe file. I do not have one of these. I have been using PHP services from URL provider, 1 & 1/Ionos since 2011. They said in order to get a Command Line PHP.exe file, requires SSH to 'Connect to … Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim You don't need composer or access to the php.exe. just locate the PHPmailer Directory into your web root, to keep it simple and the require links should point to where it is located. mine is `require 'includes/PHPMailer/src/PHPMailer.php';` cause I put it in a folder called includes, this should be relative to the file that is using it.… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … something in the coding not being understood by PHP 8.2. Any insights on what could be causing the blank white… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani > After code changed, not only will still not send email but screen turns blank white. That's a PHP fatal error. It could be a syntax error, or it could also be that PHPMailer is not in the location you're telling PHP to look. Do you have any way of accessing the error log? Without access to the server, perhaps through a web-based control … Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani To clarify, I am suggesting: [...] //make your email body to send here $survey = "RadiantNewHorizonHomes.com General Inquiries" . "\r\n" . "\r\n" . "Name: " . $_POST['Name'] . "\r\n" . "E-mail Address: " . $_POST['Email'] . "\r\n&… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim … something in the coding not being understood by PHP 8.2. Any insights on what could be causing the blank white… Re: Trying to animate sprite using DirectX9 Programming Software Development by Pavel_11 …sprite if(KEY_DOWN(VK_RIGHT)) { cavemanRight.movex = +5; cavemanRight.x += cavemanRight.movex; cavemanRight.y += cavemanRight.movey; } if(KEY_DOWN…(VK_LEFT)) { cavemanRight.movex = -5; cavemanRight.x += cavemanRight.movex; cavemanRight.y += cavemanLeft.movey; } if(cavemanRight… Extract Tabular Data from PDF Images using Hugging Face Table Transformer Programming Computer Science by usmanmalik57 …="red", width=2) return doc_image padding = …X coordinates, respectively rows.sort(key=lambda x: x['bbox'][1]) columns.sort(key=lambda x: x…['bbox'][0]) # Function to find cell coordinates def find_cell_coordinates(row, column): cell_bbox = [column['bbox'][0], row['bbox'][1], column['bbox'][2 GCC Fails to Recognize Parameters Programming by snah19 …' but no such parameter:". ` 1) ff_log_net_error 2) ff_socket 3) ff_http_match_no_proxy 4) ff_listen_connect 5) ff_accept 6…gt;priv_data; return NULL; } #define OFFSET(x) offsetof(URLContext,x) #define E AV_OPT_FLAG_ENCODING_PARAM #define D AV_OPT_FLAG_DECODING_PARAM static …