Re: What's your favorite productivity hack outside of coding? Community Center by jacobss One of my favorite productivity hacks outside of coding is the Pomodoro Technique. Re: What's your favorite productivity hack outside of coding? Community Center by Reverend Jim Odd that something so basic and obvious needs to be named. Of course, "Pomodoro Technique" is a lot shorter than "go hide in the server room so my boss won't keep interrupting me so I can get some work done" technique. At least that's what I used to call it. Re: What's your favorite productivity hack outside of coding? Community Center by Dani I don’t think there’s a better answer than that. Productivity hack when not coding are none other than breaks from coding. It’s so simple :) Re: What's your favorite productivity hack outside of coding? Community Center by Dani So basically my Palo Alto technique :) Re: What's your favorite productivity hack outside of coding? Community Center by Reverend Jim >So basically my Palo Alto technique :) A lot easier and more pleasant in mid-winter in Palo Alto than here in Winnipeg. Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …, after submission, would display the correct (yellow) screen. After code changed, not only will still not send email but screen turns… //'d. The 'includes' directory name from Biiim's code was changed to PHPMailer and is in the web root directory (each… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim …, after submission, would display the correct (yellow) screen. After code changed, not only will still not send email but screen turns… //'d. The 'includes' directory name from Biiim's code was changed to PHPMailer and is in the web root directory (each… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … doesn't know either. All they said was that something changed in Feb 2024 (last on line submission form I received… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim … the file EDIT2: > All they said was that something changed in Feb 2024 (last on line submission form I received… 'Prepare for the Earliest Possible AGI Deployment Scenario' Community Center by Johannes C. … of people saw the information, that their minds or actions changed. I hope very soon we can understand how people “typically… 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 … What's your favorite productivity hack outside of coding? Community Center by Dani … my laptop with a completely fresh perspective. Unfortunately, Palo Alto changed a lot during COVID. Nowadays, it's much more like… Re: Installing programs from Github Programming Software Development by Reverend Jim …. As long as the source code and packages have not changed there is no need to reconvert so subsequent runs should… Re: Trying to animate sprite using DirectX9 Programming Software Development by Pavel_11 … an order in your code;just found some places and changed it; if you want to make it more readable;do… 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: ASUS Laptops - my experience Hardware and Software by Reverend Jim … got the laptop everything was formatted NTFS so if they changed that then bad on them. I will make sure to… Re: Improve HAVING BY performance Programming Databases by Biiim …'t have to be re-run again when nothing has changed, you generally don't need to bother with this though… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim In your code where you write `mail($to,$subject,$message,$headers);` if you want to get error messages or "do something if it fails" you need to alter it a bit to something like: if(mail($to,$subject,$message,$headers)){ //if successful do something }else{ //if error do something else } //or… 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 if mail() is returning false. The coding I'm using has worked (e.g. sent email with submitted info) for 13 years and now stopped working. My URL/PHP provider, Ionos, claims it won't send because all recipient email addresses need to be authenticated and a new STMP PHPmailer… 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. 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: What Would You Like To See In A SearchEngine ? Community Center Geeks' Lounge by Dani Why would I, as the website publisher, fill out a form on your search engine's website anytime I update a page? Re: What Would You Like To See In A SearchEngine ? Community Center Geeks' Lounge by Dani Just genuinely curious what ever became of this project? 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&… Why am getting different syntax errors when running a Python script Programming Software Development by Tom_45 …, the error message invalid escape sequence on \d, so I changed it to look for a numeric range. When I ran… Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … I received was on 2/6/2024. No coding was changed at all, just nothing sends at all. I tested multiple… Re: import image from database image folder to pdf using fpdf Programming Web Development by thir …('./uploaded_img.png/'.$gambarvk_image,150,25,50,20, $image_format); FATAL ERROR changed to; Fatal error: Uncaught Exception: FPDF error: Unsupported image type… Re: Why am getting different syntax errors when running a Python script Programming Software Development by Tom_45 After I posted this question I noticed that I was missing the raw string indicator and the capture group enclosing parenthesis on the findall, which explains the subscripting error. So, hold off on the answers for now. I'm still having other issues with multiple file runs, though. Re: Why am getting different syntax errors when running a Python script Programming Software Development by Tom_45 Finished the assignment and was able to work out the bugs I was encountering. In addition to the issues I mentioned in my last reply, I had several instances of not indenting properly so that statements like exit() were not executing because their indention made them part of an if statement. Re: Postfix authentication problem Hardware and Software Linux and Unix by chickenbirds > I am trying to set-up Postfix on my Ubuntu local web development machine for send-only e-mails using Gmail so I can test e-mails sent by a web app I am developing. Even though this is an old post I wanted to reply as I found it while trying to setup my own postfix mailrelay on my private cloud server with Debian that hosts our small …