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 Biiim I checked my code and I only found 2 differences, the first is the 2 `use` commands before the require: use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; require 'includes/PHPMailer/src/Exception.php'; require 'includes/PHPMailer/src/PHPMailer.php'; require 'includes/PHPMailer/src/SMTP.php';… How Build Html form ? Programming by Kirubel_2 <!DOCTYPE html> <html style="font-size: 16px;" lang="en"><head> <title>Comment</title> <script src="js/jquery.js"></script> <link rel="stylesheet" href="sign.css"> </head> <body … Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner More problems. I incorporated the coding Biiim provided. Before any changes, after submission, would display the correct (yellow) screen. After code changed, not only will still not send email but screen turns blank white. URL provider, IONOS, told me that the Host is smtp.ionos.com and the Username and password are for an email address associated … Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim Hi David, > More problems. I incorporated the coding Biiim provided. Before any changes, after submission, would display the correct (yellow) screen. After code changed, not only will still not send email but screen turns blank white. URL provider, IONOS, told me that the Host is smtp.ionos.com and the Username and password are for an email… 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? How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Hanginium65 I wrote a Python script that included the python-swiftclient module to connect to the OpenStack Object Storage and upload some files to the OpenStack Object Storage container It works great if I upload a file that ends with the extension .gz however, I’m getting an error regarding the ‘TarFile’ object having no attribute ‘read’ after running my … 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 … to connect to the SMTP server. You can no longer connect with just a username and password. 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: 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: 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: 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: Proxy - passing data via college proxy Programming Software Development by Oxiegen In Internet Explorer. Go to Internet Options->Connections->Lan settings. If you enable "Automatically detect settings", you should no longer have to manually configure the proxy settings for each environment. When you laptop is behind a proxy, those settings should be detected and your browser configured accordingly. If that doesn'… Proxy - passing data via college proxy Programming Software Development by lulemurfan Hello, I'm making a application to use in college to retrieve my calendar and other things in VB.NET. But my college uses a proxy so when I connect my laptop I need to change the internet settings in my web browser to view web pages. Can anyone help me by telling me how I would send requests via a proxy server in VB.NET? Or is there a piece of … Proxy based Security Protocols Hardware and Software Networking by logicslab Dear Friends, I am Anes , doing M.Tech in Cyber Security. As part of our syllabus lab program in "Information Security Lab" we have an experiment "**Implementation of proxy based security protocols in C or C++ with features like Confidentiality,Integrity and Authentication**" . Actually I am in dark now . My doubt is 1. What … Re: proxy servers Hardware and Software Networking by blud Proxy servers are perfectly legal, only the activity done 'behind' the proxy servers usually comes into question. There are several annonymizer sites out there, and 'TOR' has become a popular and has a firefox plugin to help keep your identity safe. The obvious downside, is your traffic now has to go through other servers which could … Username change Community Center Meta DaniWeb by dave27johnson Please change my username to dave27johnson. Thanks. Proxy authentication using netsh Hardware and Software Networking by IndianaRonaldo Hi, I am behind a SQUID proxy.I need to set proxy settings for cmd.I'm using win7 so proxycfg cannot be used.I used netsh like this: netsh winhttp import proxy source=ie Internet explorer had my proxy settings already.Now the problem my proxy requires username/password authentication.I do not know how to set the username and password in … Re: Proxy authentification Programming Software Development by alone882 Finally I got something, what is wrong ? [code] Private Sub Command6_Click() Dim header As String Inet1.UserName = username Inet1.Password = password Inet1.Proxy = "192.168.120.120:17890" Inet1.AccessType = icNamedProxy header = "Proxy-Authorization: Basic " & Inet1.UserName & ":" & Inet1.Password… Re: Proxy authentification Programming Software Development by alone882 I can`t get this to work: [code] Private Sub Command6_Click() Dim header As String, Response As String Dim temp() As String Inet1.protocol = icHTTP Inet1.Proxy = "87.237.126.50:2448" Inet1.UserName = "userr" Inet1.Password = "pass" Inet1.URL = "http://whatismyipaddress.com/" header = "Proxy-… Proxy Authentication While Consuming Web Service Programming Software Development by virendra_sharma Hi, i have windows application , in that i have reference to the web service. Now when i put username and password , application calls to authentication service ( which is hosted on same machine IIS 7.5 ) i get pop up which is asking for Proxy Authentication. can anyone plz help me out for the same :) Following is the Error : {"… Proxy authentification Programming Software Development by alone882 Hi, I have created web browser that surf to the internet through proxy and now I need to create a browser that surf to internet via proxy authentication server (server required enter username and password) and I dont know how to begin program... :/ Maybe something has a small example ? Pls, help Re: Proxy Site Help Programming Web Development by M.Waqas Aslam Thanks for your reply. I had done with my work. here is the link of my testing site[Click Here](http://code4help.comze.com/) username = admin and password: admin. I took this code from net just add and remove few features as i required. Files are also attached with this post so others may also get help from it. Regards Proxy Site Help Programming Web Development by M.Waqas Aslam Hello All! I want to create my own proxy site. I googled alot and I find not a single solution in .net to do this. Everyone is using php for it. I am very new to php so i dont know how to use it. here is the code i found on net. <?php $url = 'http://www.cnn.com'; $proxy_port = 80; $proxy = '92.105.140.115'; $timeout = 0;… Re: Proxy Site Help Programming Web Development by jkon Hello, First of all let talk a bit about what is the meaning of using CURLOPT_PROXY (http://www.php.net/curl_setopt ) . The meaning is that you are going to use one other proxy server to fulfil the request and finally give results to your visitor. As I understood this has nothing to do with what you are trying to accomplish. There are several … Username & password error Programming Web Development by newbiecoder Hello everyone, I got an error from the code which I am copy-pasting from a textbook. Could you please tell me what I am doing wrong? Here are the codes: login.php: [CODE]<?php session_unset(); ?> <html> <head> <title>Please Log In</title> </head> <body> <form method"post" action=&… Username Change Community Center by Dani Now that there's a method to change a username, I think I'm going to take advantage of that. What does everyone think of me changing my username to Dani? Re: Username Change Community Center by mike_2000_17 I have to admit that I always found "cscgal" to be a rather poor choice, but who am I to speak, right? Changing it to Dani would certainly make it more obvious who you are (although "The Queen of Daniweb", "Administrator", your post count and join-date says a lot already). At the same time, just "Dani" doesn…