Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani … turns blank white. That's a PHP fatal error. It could be a syntax error, or it could also be that PHPMailer… to look. Do you have any way of accessing the error log? Without access to the server, perhaps through a web… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim … your blank screen, like Dani pointed out, there is the error on line 18 that needs a semicolon on the end… 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: i don´t understand this syntax error when using OpenCV Programming Databases by Audun …;C:\Users\Audun Nilsen\Pictures\417507225_372771342183154_3253415116081493518_n.jpg") SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3… Re: i don´t understand this syntax error when using OpenCV Programming Databases by Audun …. I suppose that´s a good sign? It says syntax error a lot on there too. What sort of programs do… How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Hanginium65 … was not found!") else: print("An error occurred checking for the existence of the object "… was not found!") else: print("An error occurred checking for the existence of the object "… + obj2) Below is the error I got after running the script. Python … Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Hanginium65 …file couldn't be sent and I got the error regarding the 'NoneType' object having no attribute …Please see below the attempt I made and the error which occurred afterward. # Create a new object … Set the appropriate content type... ) Below is the error File "/opt/scripts/netbox_backups_transfer.py", line 69,… Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …,$message,$headers); } else { // ReCaptcha validation failed, display an error message or take appropriate action // Example: redirect back to the… form page with an error message header('Location: form.php?error=recaptcha'); exit(); } ?> ` ` Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim … `mail($to,$subject,$message,$headers);` if you want to get error messages or "do something if it fails" you…($to,$subject,$message,$headers)){ //if successful do something }else{ //if error do something else } //or var_dump(mail($to,$subject,$message,$headers… 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 Dani … your mail server? Do you have access to the PHP error log somewhere that might say if `mail()` returned any errors… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner I do not have access to the PHP error log nor do I know how to check to see … Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner Re: Biiim's post, the coding you suggest to get error messages looks like something good to try and the PHP Mailer stuff looks the same as the generic code I got from Ionos. It sounds like all these methods are appearing favorable for solving the problem. This kind of troubleshooting can be very frustrating so thanks for your help. Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by Read a Book … i was getting errors Invalid SSL Certificate (Error 526) `I am still getting the error but they are 100% sure it will… Mariadb10.11.6 Glarea single failed node startup stuck failure Programming Databases by mx_983 …:05:09 mysqld_safe WSREP: Running position recovery with --disable-log-error --pid-file='/var/lib/mysql/data-server-recover.pid' 240403…=mysql --wsrep_on=ON --wsrep_provider=/usr/lib64/galera/libgalera_smm.so --log-error=/data/log/mariadb/mariadb.log --pid-file=/run/mariadb/mariadb… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …) { /* PHPMailer exception. */ echo "Message could not be sent. Mailer Error: ".$e->getMessage(); } // $subject = "Comments and/or Questions… Re: Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by Dani … the www version if you're getting an SSL certificate error. It seems to me as if the SSL certificate was… A module that comes with Python, doesn´t register? Programming Web Development by Audun … that comes with Python, doesn´t register. This is the error message: %Run 'open cv - tot.py' Traceback (most recent call… ABC for Github-programs and Python Programming Software Development by Audun …;, which looks like CMD to me, I get a syntax error. "To create a virtual environment, Python supplies a built… Re: What's up with XOAuth? Programming Web Development by toneewa … ($bmh->send()) { echo 'Bounce email sent successfully!'; } else { echo 'Error sending bounce email: ' . $bmh->getError(); } //... ?> Re: Hi everyone, I'm ដំណើរ Community Center Say Hello! by Dani What is all of your code? What are you trying to accomplish? That doesn't appear to be a full error message either. Re: Improve HAVING BY performance Programming Databases by Biiim … `SELECT sum(points) total FROM ... HAVING points > 10` (will error cause points doesn't exist in the temp result set… Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim … not fun, especially when disk 39 frequently had a read error. @toneewa - it may seem as if I am being picky… Re: ASUS Laptops - my experience Hardware and Software by toneewa … not fun, especially when disk 39 frequently had a read error. Not that many, I still have them. Highest was 6… Re: i don´t understand this syntax error when using OpenCV Programming Databases by Audun Sorry for the weird formatting.. Re: i don´t understand this syntax error when using OpenCV Programming Databases by Reverend Jim What happens if you open a python shell and just type "import cv2"? As I said in your other thread, the problem might be with python 3.12. It imports ok under 3.10. Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Salem First, let's prepare two tar files using different compression schemes for demo purposes. $ cat foo_1.txt This is file 1 $ cat foo_2.txt This is file 2 This is file two This is file too # Three tar files, two compressed and one uncompressed for reference $ tar -j -c -f foo.tar.bz2 foo_1.txt foo_2.txt… Re: GCC Fails to Recognize Parameters Programming by toneewa While I haven't used DJGPP for a couple decades, I decided to install the ffmpeg library and do a test program another way. For me, the declarations worked changing: #include "os_support.h" #include "avformat.h" #include "internal.h" #if CONFIG_NETWORK #include "network.h" #… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani I wonder if the problem is that your php mail() function is configured to use SMTP in your php.ini file. A lot of SMTP servers switched over the past year or so to using XOAuth2 for authentication. A username + password in your config settings will no longer suffice to establish a connection. You can see me complaining about it [here](https://www.… 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 …