Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel? Digital Media Digital Marketing by graceweb … signals and emotional storytelling really resonates—those elements create a connection that can be the deciding factor for prospects. Thanks for… Re: Cannot run exe from asp.net Programming Web Development by lennyli … implement authentication, encryption, and possibly a secure connection (e.g., using SSL/TLS). - Ensure… address ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^ TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not… a period of time, or established connection failed because connected host has failed to… Re: Cannot run exe from asp.net Programming Web Development by lennyli …. It is connected only to a wifi router without internet connection. Its IP is set to be 192.168.0.2… Re: Cannot run exe from asp.net Programming Web Development by Salem … did it even give you `print("Waiting for a connection...")` ? Consider making your server main like this. if __name__… Re: Cannot run exe from asp.net Programming Web Development by lennyli … did it even give you `print("Waiting for a connection...")` ? > > Consider making your server main like this… Database Connection Failing in MySQL – Need to Hire Developers in the USA Programming by YashSmith I'm facing a database connection error in my MySQL-based application. The credentials are correct, … developers in the USA to resolve and optimize the database connection. Re: Database Connection Failing in MySQL – Need to Hire Developers in the USA Programming by rproffitt Isn't that a little basic for the Dev Technosys company to not fix themselves? What happened to the coders and developers you had? Multiple MySQL connections + transactions Programming Databases by Dani … the middle of a transaction with a different connection? e.g. // Open Connection 1 and connect to Database A // Start transaction with… Connection 1 // Write some stuff with Connection 1 // Open Connection 2 and connect to Database B // Write… Re: Multiple MySQL connections + transactions Programming Databases by Reverend Jim … one database at a time but you require a separate connection object for each one. Since queries go through the… connection object you can't run a query on more than … a time. It seems to me that transactions are also connection based so you would have to manually roll back a… Re: Multiple MySQL connections + transactions Programming Databases by toneewa You're not suppose to switch databases with a connection mid-transaction. It's by design to rollback because it … table names, and write to multiple databases on a single connection. Otherwise, just use separate connections for transactions. A database with… Re: Multiple MySQL connections + transactions Programming Databases by Dani > If the databases are on the same server and use InnoDB, you can use fully qualified table names, and write to multiple databases on a single connection. That's what I ultimately started doing instead! Thank you so much for a definitive answer to my question. Buggy career talk :-P Programming by Dani … can’t use a MySQL transaction from within a persistent connection. Here’s [when I learned that lesson](https://www.daniweb… Re: Running Apache Tomcat behind a IIS reverse proxy with SSL termination Programming Web Development by blud …defined on the error pages if they are enabled. Connection Timeout - This is generally the most common and …requests-using-tracing-in-iis) to track this down Connection Terminated - This is generally caused when the remote endpoint…the right HTTP headers, and will prematurely close the connection, this should be very visible inside the tomcat … Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani …. The second is that me being on a very fast connection in Silicon Valley and the majority of my users being… on a very slow connection overseas makes what I see in Lighthouse much *better* than… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani … other half of the time me being on a fast connection and the majority of my website's visitors being on… a slow connection makes what I see in Lighthouse better than what the… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon … of 1250px to 2500px based on the speed of the connection (@see [Click Here](https://web.dev/articles/browser-level-image… Re: Upgrade to Fiber internet Hardware and Software Networking by rproffitt … the box and put the apartment on the high speed connection. Tech unpacks gear, sets it up and done for months… Re: Upgrade to Fiber internet Hardware and Software Networking by Dani … COVID, we moved into a townhouse that had a spotty connection that became unbearably inconsistent. Apple ended up paying for us… Re: Upgrade to Fiber internet Hardware and Software Networking by Salem … caution, if your livelihood depends on a stable and reliable connection. On the plus side, at least you now have a… Re: Upgrade to Fiber internet Hardware and Software Networking by Dani … caution, if your livelihood depends on a stable and reliable connection. More than anything, my livelihood depends on the ability to… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani Actually, I take it back. I assume that, using Chrome on a fast Internet connection, and a super high screen resolution, none of the images are actually being lazy loaded. Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon …, Lighthouse audit results are influenced by factors like your location, connection, and other variables. That’s why we have tools like… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani …, Lighthouse audit results are influenced by factors like your location, connection, and other variables. That's why I disagreed with you… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon … aren't. However, using it in the same PC, location, connection, etc., provides one of the few relatively reliable tools we… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani … respond. > However, using it in the same PC, location, connection, etc., provides one of the few relatively reliable tools we… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon … assuming that people perform multiple Lighthouse audits from the same connection and discard the outliers. If you don't have Lighthouse… Re: Will AI take jobs? Digital Media Digital Marketing by ashleydent4u … data, and even generating content, but creativity, strategy, and human connection still matter. The best approach is to adapt and leverage… Re: Upgrade to Fiber internet Hardware and Software Networking by Dani First post from my new (~2 minutes old) 5Gbps fiber connection. :) Re: Multiple MySQL connections + transactions Programming Databases by Dani A slightly related question: Is it okay to use PHP's `mysqli::select_db()` function to switch databases in the middle of a transaction? This is what got me into trouble in the first place, when I started a transaction, performed some writes, switched databases, and then wrote to that second database, and then switched back, and performed some … Re: Multiple MySQL connections + transactions Programming Databases by Salem https://www.php.net/manual/en/mysqli.select-db.php I think the key word in all of this is "default". You can probably do what you want, but you have to refer to each DB by it's own handle. Using `select_db` is fine, if you only have one DB and you want to be lazy about referring to it. So you make it the default DB. But as …