Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …$mail->send(); } //if (!$mail->Send()) { //echo "Mailer Error: " . $mail->ErrorInfo; //}else{ // echo "Message sent!"…/* PHPMailer exception. */ echo "Message could not be sent. Mailer Error: ".$e->getMessage(); } The program crashed ! Note: I … 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: 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,… 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: 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? 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: 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: 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: 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 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: Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by Read a Book Just as an update to this thread. I noticed weird link structure getting indexed on google after i created the new property with `www` version. Take a look how my links are getting indexed https://www.kupisi.mk/product/index.php?mainCategory=за-дома&productName=елегантен-кујнски-мијалник-од-нерѓосувачки-челик&product_id=44… Re: Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by Dani Make sure that every page has the correct link rel=canonical html tag set to tell Google what the one and only URL to the page is. Ensure there are no internal links anywhere in your site that use this wrong version of the URL. Remember, Google is finding this wrong URL somewhere! It’s not making it up :) Ideally, implement 301 redirects… Re: Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by Read a Book > Make sure that every page has the correct link rel=canonical Where should i place this tag ? > Ensure there are no internal links anywhere in your site that use this wrong version of the URL. I ensured and updated the search.php file which was redirecting to `non-www` version, now is fine. > Ideally, implement 301 … Re: Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by Read a Book I just updated the canonical url structure format into Cyrillic characters. $canonical_product_url = "https://" . $_SERVER['HTTP_HOST'] . "/product/$mainCategory/$productName/$productID"; $product_url = "https://" . $_SERVER['HTTP_HOST'] . "/product/" . urlencode($mainCategory) . "/"… Re: Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by Dani Is that what you want your preferred URLs to look like? Re: Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by Dani You are correctly implementing 301 redirects in an .htaccess file. Ensure that the redirects point to the exact same URL as you have in the canonical. Additionally, ensure that all internal links throughout your site point to that same URL as well. Re: Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by bijutoha I've noticed this: We can locate the solution when I submit my website to GSC. ![www-non-www-bijutoha.png](https://static.daniweb.com/attachments/4/0a9e8f11115e2ecf94e9000eeffef05e.png) Re: Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by Dani I guess that’s changed since I submitted my site what I feel like is at least a decade ago. Re: Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by ani03 If you using the permanent redirection then there is No problem, when the user enter your non www version it redirects to www version. As Dani told you have to change your Google Analytics property and google Search Console property from non www to www version. Re: Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by AndyBeohar Changing your website from non-www to www can have benefits for SEO consistency and branding, but the impact may vary depending on your specific circumstances. It's generally considered a good practice for long-term SEO, as it can help standardize your URL structure and improve domain authority. However, it's important to implement proper redirects… Re: Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by jofrachalya142 This doesn't matter as much in terms of SEO and as per my experience it ain't a ranking signal, it just help the users to open the website if they search it using "www". Adding on, it just help you in technical aspects. Re: Mariadb10.11.6 Glarea single failed node startup stuck failure Programming Databases by rproffitt From https://stackoverflow.com/questions/78269177/mariadb10-11-6-galera-single-failed-node-startup-stuck-failure where they call it out as a bug waiting for a fix. Re: Mariadb10.11.6 Glarea single failed node startup stuck failure Programming Databases by rproffitt The problem is still unresolved. Until the bug is fixed. Be sure to tell all that you don't accept this as a bug and want a fix now. Re: Mariadb10.11.6 Glarea single failed node startup stuck failure Programming Databases by rproffitt I wonder if the last other stable releases show this issue? "Stable release: 11.3.2 / 16 February 2024; 46 days ago" or the most recent release of MariaDB 10.11: MariaDB 10.11.7 Stable (GA) That is, many fixes don't get released for out of date versions. The new version is how many fixes are issued. Re: Mariadb10.11.6 Glarea single failed node startup stuck failure Programming Databases by toneewa I wonder how these IP addresses are issued. Static, dynamic, or is DHCP on? It reminds me of the time a network printer that stopped working, after the power went out. Other devices connected to the network after it's setup. Then, after rebooting, it got a different IP, but the host still thought it was on the old one. I've seen the same thing when… How Do I address ERROR: access violation writing 0x0000000000005140, Programming Web Development by A_957 …that occurred within my application. This type of error apparently usually points to a problem where the …0) return response except Exception as e: logging.error(f"Error generating model response:'{user_input}': {e}") return &…quot;Error processing your request." @app.route('/chat', …