Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Hanginium65 … is the error File "/opt/scripts/netbox_backups_transfer.py", line 69, in <module> file_contents = file_tar_bz2.extractfile(file_info).read… 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? Paris Olympics Ticket Information Chatbot with Memory Using LangChain Programming Computer Science by usmanmalik57 … question. ## Putting it All Together - A Command Line Chatbot To create a simple command-line chatbot, we will instantiate an empty list… How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Hanginium65 … recent call last): File "/opt/scripts/netbox_backups_transfer.py", line 57, in <module> file_contents = file_tar_bz2.read() AttributeError: 'TarFile… Re: How to disable the automatic swipe effect on the product page? Programming Web Development by Dani Hello, Google Search Console is showing that vidceo is not the main content of the page, because I don't see any video on [this page](https://www.kupisi.mk/product/index.php?mainCategory=%D0%B7%D0%B0-%D0%B4%D0%BE%D0%BC%D0%B0&productName=%D1%83%D0%BD%D0%B8%D0%B2%D0%B5%D1%80%D0%B7%D0%B0%D0%BB%D0%BD%D0%BE-%D0%BF%D0%B0%D0%BC%D0%B5%D1%82%D0%BD%D0… Re: How to disable the automatic swipe effect on the product page? Programming Web Development by Read a Book WOW finally solved! Thank you so much DANI !! Removing the autoplay from the `// Product Gallery Swiper1 ==` solved the problem! Thank you so much! Here is a product page with a video https://www.kupisi.mk/product/за-дома/глава-за-туш-со-филтер-за-прочистување-вода/41 Re: How to disable the automatic swipe effect on the product page? Programming Web Development by Dani Glad you were able to get it working. I am seeing the product page with a video you're referring to. The video does not autoplay. Are you wanting the video to autoplay? (I don't think it should. It's a bad user experience.) Is Google not considering these pages as having video content? 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… Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … for one thing. No emails are being received. Last on line submission form I received was on 2/6/2024. No… all, just nothing sends at all. I tested multiple on line submission forms on several websites. Same thing, nothing is sending… fix everything before is the same on all the on-line submission pages. It appears to be an issue with PHP… The Rise of AI Scams: Deciphering Reality in a World of Deepfakes Community Center by Johannes C. … ourselves from falling for deepfakes? Critical thinking remains the first line of defense: verifying information through multiple credible sources, identifying logical… we venture further into this era of technological sophistication, the line between reality and fabrication becomes increasingly blurred. Awareness, education, and… Re: i don´t understand this syntax error when using OpenCV Programming Databases by Audun … "C:\Users\Audun Nilsen\open cv - tot.py", line 8 image = cv2.imread("C:\Users\Audun Nilsen\Pictures… "C:\Users\Audun Nilsen\open cv - tot.py", line 1, in <module> import cv2 # OpenCV for image… Hi everyone, I'm ដំណើរ Community Center Say Hello! by ដំណើរ arguments passed in /var/www/gamebar/html/kh/api/redirectpage.php on line 14 A module that comes with Python, doesn´t register? Programming Web Development by Audun … "C:\Users\Audun Nilsen\open cv - tot.py", line 1, in <module> import cv2 # OpenCV for image… Re: i don´t understand this syntax error when using OpenCV Programming Databases by Audun … just said nothing and went back to an empty "line", or whatever. I suppose that´s a good sign… ABC for Github-programs and Python Programming Software Development by Audun … the current folder you have selected in your terminal / command line: python -m venv openai-env" The instructions said nothing… Re: How Do I address ERROR: access violation writing 0x0000000000005140, Programming Web Development by rproffitt … script at each step so I could nail down which line of code threw the error. Tutorial on that at https… Re: Improve HAVING BY performance Programming Databases by Reverend Jim If I had taken the ChatGPT reply, reworded, then posted it, would that have been OK? Or would that be plagiarism? What if I posted my reworded version AND credited it as a rewording of a ChatGPT generated answer? Then that just makes me look like an idiot. Where is the line? Re: Improve HAVING BY performance Programming Databases by AndreRet … consideration from others. IMHO Reverend Jim were not out of line here, merely posted a scenario which could have helped... I… Re: Htaccess Problem Url Friendly Programming Web Development by Dani …> I have this php: I see you have on line 3 `if($mod_rewrite == 'Off') {`. Where do you set the value… 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 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: How to disable the automatic swipe effect on the product page? Programming Web Development by kimnancy I recommend checking the lightgallery documentation or reaching out to their support forum for assistance with disabling the automatic swipe effect on your product page. It might provide you with specific guidance on the code modification you're looking for. Re: Hi everyone, I'm ដំណើរ Community Center Say Hello! by Reverend Jim Can you be a little more specific as to the nature of your problem? Re: i don´t understand this syntax error when using OpenCV Programming Databases by Audun Sorry for the weird formatting.. Re: A module that comes with Python, doesn´t register? Programming Web Development by Reverend Jim I tried installing python 3.12 and had the same problem. I typically wait a bit before installing the latest and greatest because I have found it can take a while before packages are upgraded to be compatible (usually wxpython). I was able to install the individual packages under python 3.10. I know that the "next to latest and greatest" … Re: i don´t understand this syntax error when using OpenCV Programming Databases by Reverend Jim What happens if you open a python shell and just type "import cv2"? As I said in your other thread, the problem might be with python 3.12. It imports ok under 3.10. Re: Hi everyone, I'm ដំណើរ Community Center Say Hello! by Dani What is all of your code? What are you trying to accomplish? That doesn't appear to be a full error message either.