1,168 Recommended Topics
Remove Filter ![]() | |
Back in the day, I was a high schooler and daniweb.com was a website about my Yorkie and Maltese!! However, I couldn't help my nerdiness and interest in web development, and there was an "HTML Tutor" section as well. (Also, please just tell us about it without this turning into … Web Development off-topic | |
Hi all, For the past few years I've been working on this visual web dev tool called Webfoundry: https://webfoundry.app/ It allows you to visually manipulate the DOM to create components and page templates, add JavaScript bindings, and build anything the browser can accomodate. It's different from existing competitor products in … Web Development html-css javascript web-design | |
Does anyone have any experience with Google Analytics consent mode? In the HTML head, I have: gtag('consent', 'default', { 'ad_storage': 'denied', 'ad_user_data': 'denied', 'ad_personalization': 'denied', 'analytics_storage': 'denied', 'wait_for_update': 500 }); Then, a javascript function is called from within the bottom of the HTML page that, based on the flow of … Web Development google-analytics google-api | |
How i can i buy web hosting on my blogsite? My site: [Food Recipes](http://www.foodrecipesall.blogspot.com/) Web Development web-design | |
Any predictions for the next Macromedia/Adobe Flash? Web Development off-topic | |
One of the biggest advantages of web development is how quickly we can get things into production. We all remember Mark Zuckerberg's motto in the early days of Facebook to move fast and break things. It wasn't my motto, as well, per se, but I certainly had (and still have!) … Web Development software-architecture | |
I'm facing a confusing issue with one of my websites. When I test in Google Pagespeed Insights, the performance score is 99/100 and there are no visible LCP (Largest Contentful Paint) issues reported. However, in Google Search Console, I keep getting warnings about LCP problems on some URLs. I’ve double-checked … Web Development html-css javascript web-design | |
The company I work for uses SVN, with full control over backups on other servers and strict access restrictions. Consequently, my interaction with Git, and GitHub specifically, has been primarily as a user or consumer. Over the years, I have created many things that could be packaged as plugins in … Web Development github javascript | |
I'm not quite sure what happened except Charlie Foxtrot Tango, what a mess. I zoomed out to avoid fowl language and the tangerine sky but some sort of revolt is going down. Example:  Either it's the new ownership, which the new owner has some prior black hole you just … Web Development algorithm-pseudocode web-design | |
Looking for a little guidance, for a seemingly not such a complicated project for a website. Maybe y'all could assist me with the optics of this? I want a page on my site to have some input bottons, that will access an astrological database, for some end-user basic information, which … Web Development database-design php | |
At long last!! Rejoice! [Now only if most browsers supported the darn thing.](https://caniuse.com/css-if) Web Development html-css | |
For me, it's jQuery, of course. It just works and I don't think it's as much of a performance hit as everyone seems to think. Google Analytics 4 comes in a close second, because, well, it's GA4. Need I say more? Web Development off-topic | |
I'm someone who always relies on `console.log` for development. I was just wondering if anyone out there in Internet land ever uses `console.log` in production? Say, for status messages or notifications, perhaps? What about the less known about `console.info`? Web Development javascript | |
Mine is [infinite scrolling](https://infinite-scroll.com/). Runner up, by the same folks, is the [masonry tiles](https://masonry.desandro.com/) featured on our homepage. Web Development javascript:jquery | |
As you may know, yuo can customize the error pages in Cloudflare, such as for a WAF block, etc. For some reason, since the switchover to the new error pages dashboard, the custom font I always use isn't working. I can see that it converted https://cdn.daniweb.com/font.woff into inline base64 for … Web Development cdn:cloudflare cybersecurity html-css:bootstrap | |
I know Cloudflare has functionality to block AI bots. However, I heard something about them charging AI bots for access and then passing that money off to the website. Has anyone else heard of this before? Web Development cdn:cloudflare | |
Is it possible to use the Vary header with an HTTP 301 redirect? I understand that 301 redirects are meant to imply the resource has permanently moved, and to forget about the old location, pretty much. My use case is to use `Vary: Cookie` and have different behavior based on … Web Development http-protocol | |
How do you keep up with the latest trends in web design? Web Development web-browser web-design | |
This question is probably more suited for Cloudflare's community forums, but I figured I might as well ask it here (and there), and worst case, I get an answer there and then I can update this thread with the answer. So, from the Cloudflare domain overview, I click on Error … Web Development cdn:cloudflare javascript | |
For those of you with blogs, forums, etc: What do you use to manage spam and are you happy with your existing solution? I know Akismet is really popular among Wordpress users. We have our own custom anti-spam bot that we use here and I'm trying to gauge whether it … Web Development abuse-scam-spam api php:wordpress | |
Hi Everyone, Web development can be both exciting and challenging, but having the right tools makes all the difference. If you're starting out or looking to improve your workflow, consider using popular frameworks like React or Vue for streamlined front-end development. On the back end, Node.js and Django are solid … Web Development developer-tools javascript:node.js python:django | |
I’m working on a travel planning form that adjusts based on the selected nationality. For example, if someone picks a country like India, the form should display whether they need an electronic visa for places like Sri Lanka, and maybe show a short message or guide link. I’m using JavaScript … Web Development javascript json php | |
![]() | Hi All, Been messing about as usual and managed to trash my long suffering laptop. Luckily all my data is backed up and it was a simple matter of SugarSyncing everything to the new one - a monster HP Envy - which I love, but it came with Windows 8 … |
I try to remove the last character from a string with Japanese text and emojis using this code: <?php $text = "私の名前はダバーです👩🚀"; $new_text = substr($text, 0, strlen($text) - 1); echo $new_text; The output breaks the characters and shows garbage. How do I fix this? Web Development php | |
Hi everyone, I recently switched my app from a paid-only model to a free trial in order to encourage more installs. The app provides features like AI lead quality scoring, quote-to-order conversion, BI dashboard, and customer chat – mainly focused on helping merchants better manage quote requests. However, even after … | |
Just as the topic title suggests, any jQuery 4 beta users out there who could let me know what it's like? The wait for v4 gold release is killing me. Also, please don't make fun of me for being a jQuery user. DaniWeb has been built on jQuery for decades. … Web Development javascript:jquery | |
I was thinking of building a little tool that compares a webpage's DOM structure before and after javascript execution and performs a diff. I know that the functionality is already built into some paid SEO tools, but was just curious if you thought that having a standalone feature would be … Web Development javascript web-design | |
I use PhpStorm and was wondering if there was a way/plug-in where, for each php file, to reorder the functions in alphabetical order? I'm not even sure if this is something that's commonly, or ever, done, but it would help me out quite a bit. | |
I've been working on DaniWeb's code base in PHP for over 20 years, and so, as you could imagine, a lot of it existed before PHP started specifying function return types. (I think that started in PHP 8, right?) Is there any performance benefit to going back through all of … Web Development php | |
Do you use Cloudflare, Fastly, or something else? Do you cache HTML content at the edge or just static files? Just curious what DaniWeb members do and their reasons. I was really late to the Cloudflare game, but I've been here for a few years now. I was hesitant for … Web Development cdn:cloudflare cloud-computing | |
I happily just discovered the Cache-Control rules *stale-if-error* and *stale-while-revalidate*. I came across [an article](https://developers.cloudflare.com/cache/concepts/cache-control/) on Cloudflare's site that says that those two directives are ignored if CF's Always Online feature is enabled, so I've gone ahead and disabled that. However, I'm confused by the following quote: > The stale-if-error … Web Development caching cdn:cloudflare | |
Id like to know as to how to go about creating a web service that validates a registerd user to my site. Also how to register a new user to the site. What steps shall i take in order to do this? Im using Visual Studio 2008 (.NET Framework 3.5) … Web Development asp.net microsoft:sql-server | |
Here's a quick bit of code to upload a file in PHP. Web Development file-system php | |
I know that this is probably a hopeless question, but are there any automated scripts that would *reliably* and *automagically* convert my thousands upon thousands of lines of jQuery code into native Javascript? Web Development javascript | |
In my increasingly futile attempt to remain using the now-defunct CodeIgniter 3 framework, I came across something that I figure might be worth sharing in case anyone else is maintaining older PHP codebases and suddenly things start breaking after a PHP upgrade. With PHP 8.2, there’s a new warning that’s … Web Development php:codeigniter | |
Here is the function that I use here at DaniWeb to manage flood control. It keeps track of how often a specific user or IP address is making a request, and increments a counter. If there have been no requests after 5 minutes, the counter resets to 0. It returns … Web Development php:codeigniter redis | |
In 2025, a successful website goes beyond just good looks. It needs to be fast-loading, mobile-friendly, and accessible to all users. Strong user experience (UX), clean navigation, and clear calls to action are essential. Integrating SEO best practices, secure protocols (HTTPS), and scalable backend systems is also vital. Websites should … Web Development seo web-design | |
I want to post Pins using Pinterest API. I have tried to generate code using ChatGPT but it returns an error. Here is my code so far ... <?php $clientId = "xxx"; // Replace with your App ID $clientSecret = "xxx"; // Replace with your App Secret $redirectUri = "xxx"; … | |
And is it bad or what because sometimes I think I might get carried out Web Development off-topic | |
Hi DW, I'm trying to mark attendance register which has the date for which that register is being marked for as well as the date which the register is actually marked on. For Date as well as Marked Date. I also have two time picker textboxs which one is for … Web Development php | |
what are the challenges?? Web Development business-entrepreneurship finance | |
I have tried to read https://www.daniweb.com/programming/web-development/threads/386380/cannot-run-exe-files-in-asp-net-application but still lost in trying to achieve something. I installed the latest .net framework, and IIS on the latest updated windows 11. I wish to achieve the following: Have a webpage with a button, when pressed, it will launch a webpage that runs a … Web Development asp.net microsoft:visual-studio microsoft:windows-10-11 | |
Hi everyone, I'm getting a 401 Unauthorized error when trying to call the Management API from my web app. I've already checked my token, headers, and API endpoint, but nothing seems to work. However, I’m still confused and can’t figure out where exactly I’m going wrong. I feel like the … Web Development api | |
what is sharepoint policy management software, and how does it benefit organizations ? Web Development sharepoint | |
Never published this before, so this is a DaniWeb.com Exclusive :) If your WP-Site has a lot of K-Links, you should consider using this script. It definetly works. For now... ## **Negative SEO** through spamming Backlinks can be a huge problem for the visibility of a webpage. ## You can … Web Development apache php:wordpress seo | |
Probably a silly question, but is Argo Smart Routing (the usage-based product) only applicable to content served at the origin? Otherwise, does it makes sense to be spending money to find a more efficient path between the end-user and the edge? Isn't the edge already pretty darn close? Web Development cdn:cloudflare | |
How can lazy loading improve web portal performance by reducing initial load times and optimizing resource usage? What are the best techniques to implement lazy loading in images, components, and data fetching using JavaScript frameworks like React, Vue, and Angular? How does lazy loading impact SEO and user experience? Web Development javascript seo web-design | |
Let’s learn from each other’s fails! What’s a mistake you made in your early days of web design—and what did it teach you? Web Development web-design | |
Hello There, I am looking for MUI React-based admin template in the TypeScript version for my project. Can you guys suggest some React Admin templates that are comprehensive and easy to use? I really appreciate any help you can provide.! Web Development javascript typescript | |
If I want to use Bootstrap 5 for my admin dashboard and avoid Tailwind, which templates should I consider? Web Development html-css:bootstrap |
The End.