Re: AirTM API: How to Build a Form? Programming Web Development by Dani I can see that the URL that you linked me to has 4 steps to create a purchase. The first one is to create a Purchase via an HTTP POST request. That can be done with a cURL request. cURL requests require some backend programming such as via PHP or some other language. Are you using a server-side language to write your web app? If so, which one so… Re: Do you participate in any other communities? Community Center Geeks' Lounge by Dani I was talking to Chris (the DiC founder/owner) a little bit before he decided to shut it down. He was saying he's been so busy with his other businesses that he spent maybe 5 minutes on it over the past 5 years, so he lost interest, and it wasn't paying its server costs. At least in the case of DaniWeb, it *also* isn't even coming close to … 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 … 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: What's up with XOAuth? Programming Web Development by Dani For my particular use case, I use a PHP library called [Bounce Mail Handler](https://github.com/voku/PHPMailer-BMH) (formerly PHPMailer-BMH) that was last updated in 2019. It connects to the email server via SMTP using a username and password. I am trying to do the least amount of work possible to modify this library to connect via SMTP using … Re: How Do I address ERROR: access violation writing 0x0000000000005140, Programming Web Development by Dani I don't have any python experience, sadly, but I am super awesome at jQuery. Once you solve this server-side problem at hand, if you find yourself with the jQ side of things not working, please don't hesitate to post. Re: What's up with XOAuth? Programming Web Development by Dani … to connect to the SMTP server. You can no longer connect with just a username and password. Re: How to Code a Load More Button? Digital Media Digital Marketing Search Engine Strategies by MarkMarketer Creating a "Load More" button is a common feature when it comes to handling large data sets. The idea is to load a small amount of data initially and then load more data as the user requests it. This can be done with a combination of HTML, CSS, and JavaScript. This guide will take you through creating a simple "Load More" … Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani The first thing I will say is never output `$_POST[]` content directly into the HTML without escaping it first. You are leaving yourself wide open to an HTML injection attack. Not only that, but you're also leaving yourself open to invalid HTML. All it takes is to wrap your user-sent variables with htmlspecialchars to make sure they're HTML-escaped… 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: Theory on the VPN Programming Mobile Development by sankut It seems you're curious about how apps like Ha Tunnel Plus, NPK Tunnel, and TLS Injector work, enabling internet access without using mobile data. Here's a brief explanation: Tunneling Technology: Apps like Ha Tunnel Plus use tunneling protocols, possibly SSH2.0, to create a secure connection between your device and a server. This allows you to … Re: Theory on the VPN Programming Mobile Development by hazeeq Let's assume I already have a remote server with internet access, how do create such a setup similar to how ha tunnel plus works so that I am able to make a connection betweethe server and my physical device without data. Even if I have cellular data then we can use that to make the connection thereafter we can use the remote server's internet to … Re: Theory on the VPN Programming Mobile Development by hazeeq @MrM it is indeed true that ha tunnel plus basically allows a physical device to use a remote server's internet access capabilities. This however seems to require a network provider but no data is needed to connect. Since the last time this topic was discussed is 2 years ago. I'm curious to know whether you have found the solution to how this … How can I resolve the 'SSL_ERROR_NO_CYPHER_OVERLAP' error in Firefox? Programming Web Development by premdparmar I'm facing an SSL-related issue in Firefox with the 'SSL_ERROR_NO_CYPHER_OVERLAP' error. It seems there's a problem with encryption algorithms between the browser and the server, hindering the establishment of a secure connection. Any guidance or solutions would be appreciated. Re: How can I resolve the 'SSL_ERROR_NO_CYPHER_OVERLAP' error in Firefox? Programming Web Development by Dani Does the web server have an updated SSL certificate installed? Re: How can I resolve the 'SSL_ERROR_NO_CYPHER_OVERLAP' error in Firefox? Programming Web Development by sankut If you're encountering the 'SSL_ERROR_NO_CYPHER_OVERLAP' error in Firefox, it indicates a failure to establish a secure connection due to an encryption algorithm mismatch between the browser and the server. Here are steps to resolve the issue: Update Firefox: Ensure your browser is updated to the latest version, as newer versions often include … Re: How can I resolve the 'SSL_ERROR_NO_CYPHER_OVERLAP' error in Firefox? Programming Web Development by Dani Sankut, are you sure the problem is with the web browser, and not the web server? Re: The Roles and Responsibilities of a Full-Stack Developer Programming Web Development by Deftsoft A Full-Stack Developer is a professional with expertise in both front-end and back-end technologies, capable of handling various aspects of web development. The roles and responsibilities of a Full-Stack Developer encompass a wide range of tasks, including: **1. Front-End Development:** * User Interface (UI) Development * Client-Side Scripting… Re: Website as a proxy Hardware and Software Networking by rproffitt Not all can do this. Google this: "How to check a website if it can act as HTTP proxy server or not?" Read this: https://cwiki.apache.org/confluence/display/httpd/ProxyAbuse which covers that server and how it is configured. Re: Can someone please advice me for hoe can i prevent xss attacks ? Programming Web Development by gottaloveit In whatever code language is running on the server, use a well known database library that is well documented and features XSS aka sql injection prevention. Re: How do I fix a 403 error with C# when trying to access SharePoint? Programming Software Development by rproffitt I have not used this system so read https://www.sharepointdiary.com/2018/06/sharepoint-online-powershell-remote-server-returned-error-403-forbidden.html and hope it's one of the seven issues noted there. Next up is to try https://www.reddit.com/r/sharepoint/ Re: What is the best dedicated server Hardware and Software Linux and Unix by yousaf11 Your summary emphasizes key considerations when choosing a hosting provider. Here's a Unix command-inspired reply: bash Copy code echo "Absolutely, no one-size-fits-all in hosting. Your unique needs define the best provider. Remember, the lowest cost isn't always the wisest investment. Support infrastructure matters—performance means … Re: What is the best dedicated server Hardware and Software Linux and Unix by cored0mp I had decent luck with Hostinger, but like some of us here I'll admit that I'm shopping around. Re: Get error please help me the server threw an exception. Programming Software Development by pritaeas At what line exactly did the exception trigger? Re: Get error please help me the server threw an exception. Programming Software Development by tinstaafl Have you tried looking at the answers on this page? [Click Here](https://stackoverflow.com/questions/973206/what-causes-error-hresult-0x80010105-rpc-e-serverfault) Re: PHP Contact Form to Send SMS Programming Web Development by geethu_3 Hello, nice tutorial .I used this form but not send sms . Could you please help me solve this problem. Re: PHP Contact Form to Send SMS Programming Web Development by pritaeas What exactly is your problem? As stated in a reply, SourceSMS is no longer available. Re: Theory on the VPN Programming Mobile Development by hazeeq Can a website be made to act as a proxy Re: How can I resolve the 'SSL_ERROR_NO_CYPHER_OVERLAP' error in Firefox? Programming Web Development by rproffitt This is now something we might see if some site is not maintained. You contact the web master and ask them to fix it. The second reason could be trying to use a very old version of Firefox on say Windows XP. You left out what Firefox version so do try it on a current smartphone and PC that is up to date. Re: Change-a-Letter-or-Two-Game Community Center Geeks' Lounge by happygeek server