11,568 Posted Topics
Re: Hi there! Welcome to DaniWeb! Thanks for joining. What brings you here? | |
A couple of years ago, I began using a Cloudflare worker to track my Googlebot traffic in Google Analytics. The initial code I used, and thought process to get there, is [here](https://www.daniweb.com/digital-media/digital-marketing/threads/522837/bot-traffic-in-google-analytics), but here's what my code looks like today: const analyticsId = 'UA-98289-3' addEventListener('fetch', event => { event.passThroughOnException() event.respondWith(handleRequest(event)) … | |
Re: Don't be mad at the quality of your formal education for not being able to figure this one out because, unfortunately, this is simply not doable. There's no way for you to gain direct access to Quora's database of questions and users. You simply can't query a database that you … | |
Re: A promise object consists of a block of code, as well as a name for a callback function if the block of code is successful, and a name for a callback function if the block of code is a failure. Here, you're creating a new promise in which the constructor … | |
I'm not understanding the recent obsession with companies switching their social presence from Twitter to Mastodon. Whatever you think of Elon Musk, how does that affect someone's day to day use of Twitter? Mastodon looks to me, at least at the surface, as just a Twitter clone. What am I … | |
As you may know, [Google Question Hub](https://questionhub.google.com/) lets you type in keywords or topics you wish to write about on your site, and you're presented with a list of questions that Google wants to encourage you to write about. For example, I typed in PHP and was presented with questions … | |
Re: It looks like people are typing random spam into your search queries. Your search results page should be noindexed or blocked in robots.txt. | |
Re: Hello and welcome to DaniWeb. You tagged this topic mysql ... May I ask why? Do you have a MySQL question? | |
Re: I would start with [W3Schools](https://www.w3schools.com/html/default.asp). | |
Re: I think your issue is you are using the wrong tool for the job. Use an address validation API that doesn't return results as SimpleXMLElements. They're annoying to work with, and there's no reason for it. What a horribly unintuitive API that is. I have experience working with the Google … | |
Re: > The last time a developer needed Fedex tracking they used their API. And if they didn't understand the API then they contacted Fedex. The OP was specifically looking for something similar to the FedEx API but for courier services that operate throughout India. From what I can tell, FedEx … | |
Re: I just saw this post now but I’m on my phone in bed about to go to sleep. I’ll help you out tomorrow. JQuery is my jam. :) | |
Re: This seems like spun content. Did you write it? What are you trying to say? | |
Re: I gather from your question that you have one table that lists products and their prices. However, I'm confused what the ss table is meant to do? What is ss_keys referring to? Are you meaning to do something like this: SELECT products.prod_id as Product_id, products.prod_name AS Product_name, products.prod_price AS Product_price, … | |
Re: I guess I’m confused by your question, as off-page SEO means content on other pages that links to your site or talks about your brand. In any case, as pretty much all content on the web is written in HTML, off-page content is HTML just as your own webpages are … | |
Re: Hi Sohan! It’s nice to meet you. What type of digital marketing do you focus on? Social media? PPC? SEO? Advertising? It’s quite a big industry out there! :) What is your favorite part? | |
Re: I have had really good experiences hiring on Upwork. Another good site for this kind of talent is TopTal. If you are not a developer yourself, my recommendation would be to first find a developer who wants to join your project, who had experience building eCommerce APIs, and then let … | |
Re: Did you have a question or were you just sharing this little tidbit? Do you do a lot of email marketing campaigns? Can you recommend any suggestions to improve any of these statistics? | |
Re: Not sure if this is relevant. It’s pretty old. https://stackoverflow.com/questions/22469713/managing-tweepy-api-search | |
Re: I don’t know python so this is completely a stab in the dark, but what if you do lowercase writer() instead of Writer()? | |
Re: Because there is far less competition for the top spot. Lots and lots of different shoe store websites are all trying to rank for “shoes”. But there’s far fewer trying to rank for “blue running shoes with orange laces”. | |
Re: The service doesn’t need to be that reliable if you just need it for one time use. One and done. Or use your own phone number. | |
Re: SEO is changing every day, but yes, I think think a big part of SEO is seeing what spammy SEO techniques people are trying to use, and find a way to counter them and prevent them from continuing to work. 2021 was all about guest blogging no longer being effective. … | |
Re: The MySQL query, as you have it, is incomplete, as `?` is not valid MySQL. I'm also not sure what, specifically, you mean by wild card match or fuzzy match query. When you use the LIKE keyword, you compare the column to a string that may include `%` or `_`. … | |
Re: Hi and welcome to DaniWeb. My first thoughts, while spending a moment or two browsing your site, is it appears at first glance that the game descriptions are low quality content / spun content / content that is copied/pasted from elsewhere on the web / written by AI bots. I'm … | |
Re: Echoing what Skillz is saying, you need to access the files either by a domain name or by an IP address. If you are on a shared hosting plan, and it's not a feature of your hosting company's control panel, you most likely can't use the IP address option. | |
Re: Hi Sanjay! Welcome to DaniWeb! What brought you here? | |
Re: I think that a lot of restaurants are already using Grubhub, DoorDash, etc. built into their POS. So perhaps there's a way to integrate in a way that is low barrier to entry for the restaurant? | |
Re: Online reputation management is when you put out a bunch of positive articles and content about your brand (business profiles, press releases, etc.) with the goal of having them rank higher in the search results any negative press you may want to bury from being easily discovered when people Google … | |
Re: Perhaps I'm missing something, but you are setting the unencrypted password that the end user types in into $password. You're then using an SQL query to select a row where the password is the value of that unencrypted password. If your passwords are stored in the database encrypted, it would … | |
Re: When looking at the code block you have posted above, what does it spit out on lines 102 as the password? Is MySQL successfully returning a row with the domain being passed in? It's possible that the MySQL query is succeeding but there's simply zero rows returned, and therefore $db_password … | |
Re: DaniWeb now has [an official tool that does this](https://www.daniweb.com/tools/backlinks). | |
Re: I would definitely build your own dynamic sitemap if the list of pages on your site change frequently (e.g. a blog or user generated content). I'm glad you were able to get it working. | |
Re: Google is really good at detecting this type of autogenerated content, and it also can tell when content is spun like this to appear somewhat different. May I ask the reason for multiple pages if they all will have the same or mostly the same content? If there’s a valid … | |
| |
Re: Is your project on Github? If not, put it on Github. Does your project have a website written in English, with English documentation? If not, that's something else to try. | |
Re: Yes, it's possible, but how to do it depends on if you are using Nginx or Apache. If it's Apache, you will need to add a mod_rewrite rule to an .htaccess file and upload it to the domain root. The contents of the .htaccess file would look something like this: … | |
Re: Were you also hit by the [Google Helpful Content Update](https://developers.google.com/search/blog/2022/08/helpful-content-update) that ran the week before the September core update? I saw a big win from the helpful content update, and then it crashed right back to where it started after the core update. Unfortunately, Google hasn't announced anything specific that … | |
Re: Did the code you provided not work? I haven't tested it, but it should give you the two numbers in the variables $first and $second. I think a problem you might be running into is that the & character has a special meaning in URL query strings. For example, a … | |
Re: I coded DaniWeb in php and can help you with any questions you may have. | |
Re: Your webpage has the line: <meta name="robots" content="noindex"> in the `<head> ... </head>` section. Remove that line and Google will be able to index that page. | |
Re: I'm not sure, but [maybe this could help you?](https://php-decimal.io/#introduction) | |
Re: Because it gives businesses an opportunity to engage with their customers and prospective customers, and learn and understand their needs and wants, in a way that was never achievable before. And it gives customers an opportunity to feel heard by big brands. | |
Re: [Here you go](https://www.daniweb.com/digital-media/digital-marketing/search-engine-strategies/threads/538406/what-is-search-engine-optimization-strategies) | |
![]() | Re: I would do if (...) { } else if (...) { } else if (...) { } else { } It's not good practice to short circuit the page by calling exit; in the middle of an if-else block. You might also wish to look into [try/catch blocks](https://www.php.net/manual/en/language.exceptions.php) for errors. |
Re: I have no experience with Java or Derby. But your code seems to connect to a database whose files are stored at a path on the C:\ drive. That type of file system convention doesn’t exist on macOS, which is Unix-based. Instead, try replacing the path with something like /home/username/softechdb. | |
Re: I think guest posting still works, for now, but Google is getting smarter about whether it’s spun content for backlinks, or whether the guest poster is actually a leader in the field that the blog is about and of importance to the audience. I think that guest blogs do carry … |
The End.