Error when sign in with Google Community Center Meta DaniWeb by John_165 Get error when sign in with Google ![Screenshot_2025-05-14_005909.png](https://static.daniweb.com/attachments/4/6b4328258653e90c1306dd4197d61570.png) Re: Error when sign in with Google Community Center Meta DaniWeb by Dani Thanks for the heads up! I’m able to reproduce it and I’ll look into it shortly. I’m currently still in bed. Re: Error when sign in with Google Community Center Meta DaniWeb by Dani It should be fixed now. Unfortunately it's been broken for quite awhile and I didn't realize it. It broke on the 5th of the month when I went through all the code and mass-added a wrapper that ran some sanitization stuff. So sorry about that! Either way, it's fixed now. Re: Error when sign in with Google Community Center Meta DaniWeb by Dani A little more information: I had a variable called `$uri` that I assumed was a URI, and so decided to be smart and add a sanitization wrapper around it to ensure it was a valid URI. It turned out that the variable was *not* meant to store a fully-formed URI but actually only part of one, and therefore always failed the check. Re: Lots of new members but no one posts Community Center Meta DaniWeb by John_165 Why do spammers want to sign up? What do they gain from programming forums? Re: Lots of new members but no one posts Community Center Meta DaniWeb by Dani > Why do spammers want to sign up? What do they gain from programming forums? A very … Re: Hi everyone, I'm Ron McLeod Community Center Say Hello! by Dani Hi Ron and welcome to DaniWeb! Thanks for taking the time to sign up and join us in our little corner of the web. Something tells me that @Reverend Jim and @rproffitt will be along any moment to greet you as well ... ;) Re: I looking for long term cooperation possible client. Programming Software Development by Stiven_1 Sorry, I used a code I had practiced before to sign up quickly. This code is This JavaScript code simulates a basic blockchain — like a mini version of Bitcoin — without a network or mining. It helps you understand how blocks are linked and verified. Re: Need Coding Help With A Project Programming Software Development by Dani … saying things like this can make them feel intimidated to sign up and ask their own questions or post their own… Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel? Digital Media Digital Marketing by graceweb This was a fascinating read, Victor! The way you applied psychological principles like authority bias and loss aversion really shows how impactful small tweaks can be. I especially appreciated the emphasis on emotional storytelling, it’s often overlooked but clearly powerful. Thanks for sharing such actionable insights! Re: Lots of new members but no one posts Community Center Meta DaniWeb by trcooke Profile spam for sweet sweet SEO internet points. Create an account, put a link in the profile, but never post anything thus reducing the likelihood of triggering the spam alarms and getting deleted down by the site moderators. It's the back-link on a public facing web page that they want, and for that there's no difference between a forum post … Re: Lots of new members but no one posts Community Center Meta DaniWeb by Dani > Profile spam for sweet sweet SEO internet points. Create an account, put a link in the profile, but never post anything thus reducing the likelihood of triggering the spam alarms and getting deleted down by the site moderators. > > It's the back-link on a public facing web page that they want, and for that there's no difference … Re: Lots of new members but no one posts Community Center Meta DaniWeb by Dani > It's the back-link on a public facing web page that they want, and for that there's no difference between a forum post and a profile page. From an actual SEO perspective, there's a very strong difference between a forum post and a profile page (not all pages are created equal), but for the purposes of this discussion, I digress. The Strength to Recreate Your Life Community Center by dustinharber34 … decision to recreate your life is not a sign of failure. It is a sign of strength. Change often begins with a… Re: Riddles Community Center Geeks' Lounge by Reverend Jim … in some cattle. The second thing was to erect a sign with the new name of the ranch, which was "… Re: How to Choose the Right Mobile App Development Company? Programming Mobile Development by jonathannweyer … and how they solved them, that’s usually a good sign of real experience. Re: Time for some humour before Jan 20 Community Center Geeks' Lounge by Reverend Jim … bible belt when he sees two men putting up a sign that says "**Turn Yourself Around. The End Is Near… Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel? Digital Media Digital Marketing by asadkhan12 Your post perfectly highlights the power of behavioral psychology in funnel optimization! The results speak for themselves—small yet strategic psychological tweaks can make a massive impact on conversions. Trust signals, emotional storytelling, and cognitive ease are often overlooked but make all the difference. The way you broke down each … Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel? Digital Media Digital Marketing by graceweb It’s amazing how just a few strategic changes can turn a struggling funnel into a success story. The emphasis on trust signals and emotional storytelling really resonates—those elements create a connection that can be the deciding factor for prospects. Thanks for highlighting those key takeaways! It’s a good reminder that sometimes it’s not … Re: The Strength to Recreate Your Life Community Center by Dani Reminds me of the decision to pack up and move from New York to California. Best decision I've ever made. Re: Sign extend 16 bit to 32 bit Programming Computer Science by shrughes … the most significant bit of the 16-bit integer (the sign bit, for signed 16-bit integers) is used to fill… cast up to a 32-bit signed integer using the sign extension described above. If zero extension were used instead, y… £ sign Programming Software Development by johny112 … programme, but when it prints the results , it doesnt print £ sign [CODE]cout <<"Salary is £ "<<… someone please tell me how to print the outcome with £ sign. thanx Re: £ sign Programming Software Development by Narue >it doesnt print £ sign Your text editor is using Unicode, but the console is using extended ASCII. Try this instead: [code=cplusplus] cout<<"Salary is \x9C "<< salary_without_overtime <<endl; [/code] Re: £ sign Programming Software Development by johny112 [QUOTE=Narue;483247]>it doesnt print £ sign Your text editor is using Unicode, but the console is using extended ASCII. Try this instead: [code=cplusplus] cout<<"Salary is \x9C "<< salary_without_overtime <<endl; [/code][/QUOTE] that code doesnt work. any more help? Sign extend 16 bit to 32 bit Programming Computer Science by kinger29 I am trying to write a program that either zero extends or sign extends a 16 bit input to a 32 bit output, what exactly is meant by sign extending a number? I believe zero extending would be adding 16 0s in the 16 Most Significant bits, Is sign extending just keeping the most significant bit as the sign? Sign Up Form into Database Programming Web Development by mskwarcan … trying to do is having a sign up form that they can fill out, click sign up and have all the information… ID="signUpButton" runat="server" Text="Sign Up" /></td><td><… Sign an s/mime email using pfx file Programming Web Development by saadi06 … in the pfx format and I am trying to sign s/mime email with it using openssl but I … key. Here is my code that I am trying to sign the file $privkey = 'file://'.realpath('email.pfx'); openssl_pkcs7_sign("…, $password),$headers ,PKCS7_DETACHED ); My question is how can I sign the file using pfx certificate or I have to convert… £ sign issue Programming Web Development by BenWard Hello, I'm having some trouble with a £ sign, it's being displayed to the user as the <?&… United Kingdom (usually coloured in red and preceded by a - sign if my online banking is anything to go by) I… the answer. What is the usual resolution to displaying a £ sign through an AJAX request please? Thanks Ben Re: Sign extend 16 bit to 32 bit Programming Computer Science by thoughtcoder C decides whether to sign extend or zero-extend when you cast an integer type based on whether it's signed or unsigned. Re: Sign in once to access all parts of a site Digital Media UI / UX Design by bwallace … different tables but when you go to sign in at one of the original sign-in pages it says you can't… sign in even though your user exists. We think…