11,570 Posted Topics
Re: PPC has pretty much existed since the late 1990s when GoTo.com began charging for top placement in its search engine. Google didn't catch on for many years later, and now, of course, everyone knows about pay-per-click whether it's Facebook Ads, Google Ads, etc. Was there some other point to your … | |
Re: Not sure if anyone mentioned it before, but Google is very pro-white hat. White hat techniques give your site a better navigation, improve the user experience, and aid googlebot crawlers in understanding what they’re looking at. Help Google to help you. | |
Re: So the line `RewriteRule ^([a-z0-9\-]+)/?$ $1.php [NC,L,QSA]` says to rewrite anything/ to anything.php Rules execute in order, so *above* that line you can add a line that simply says: RewriteRule ^admin/page/$ admin/page.php [L] I might have a typo but that should be what you're looking for. | |
Re: https://99designs.com/blog/trends/web-design-trends-2019/ If you ask me, though, being super duper mobile friendly ;) | |
Re: Hey there!! Welcome to DaniWeb. Nice to meet you. | |
Re: Yes, check out https://repixel.co | |
Re: I get that you meant this post as a solicitation for your services, but I'll let it pass because it does contain some worthwhile information. However, I want to make sure that people reading this don't get confused when you encourage them to republish. Republishing an article that already exists … | |
Re: Hi there!! Nice to meet you. Luckily, keywords such as *best IAS coaching in Mukherjee Nagar* is a very targeted long tail query. You should be able to rank relatively successfully for it with just a handful of backlinks and an article or two on your website about why you … | |
Re: I'm confused by your question. Do you mean that Google is indexing a page on your site that doesn't exist? If so, as long as your server is correctly set to return an HTTP 404 error, Google will deindex the page. Or do you mean that you have a webpage … | |
Re: Creating a drop down can be achieved just with HTML. I’m confused what you need PHP for, unless I’m misunderstanding you? Can you show us the code you have so far so I can see exactly what you’re trying to do? | |
Re: Matt Cutts recently announced that guest blogging is now a no-no with Google. It just got too spammy for Google's liking. http://searchenginewatch.com/article/2324561/Matt-Cutts-Says-Stop-Guest-Blogging-for-SEO-Heres-Everything-You-Need-to-Know And I've been long advocating that forum posting and blog commenting do little more than make you out to be a spammer, as well. Just my two cents. | |
Re: I'm super confused by what you're asking, and reading 800 lines of uncommented code doesn't sound very fun. | |
Re: Firstly, the link to searchresult.php is a blank page, which most likely means a PHP fatal error of some sort. Try doing this instead: jQuery.ajax({ type: "POST", url: "index.php", data: { id: id }, success: function() { console.log(myData); } }); I just want to double check that your console does … | |
Re: You can never submit to enough ... Keep writing unique content, keep getting the word out any and all ways you can. (That aren't black hat, of course) | |
Re: Google has a deal with Twitter where they can see content that is behind Twitter's login wall. I'm not sure if they have a similar partnership with Facebook. However, walled content within Twitter, at least, can be used by Google's algorithm to see how many people are talking about your … | |
Does anyone have any experience with EBDA? As a publisher, how can I leverage it as an alternative to header bidding? | |
Re: The article that rproffitt linked to on SEMrush seems to indicate that the only use case for nofollow links are paid ads. That's simply not true. Nofollow was Google's recommended method anytime you were linking to content that you could not vouch for. While paid ads definitely fell under that … | |
Living in California, I periodically need to log into my computer that's back in my home in New York. Not that often, typically just a couple times a year. But today, when attempting to connect, I got an error message saying, "The remote TeamViewer is running an old version which … | |
Hi, A notification just started showing up in my AdSense that says: **Earnings at risk - You need to fix some ads.txt file issues to avoid severe impact to your revenue.** It gives me the ability to download an ads.txt file and upload it to my domain root. Here are … | |
Re: I'm not seeing the problem you're experiencing. Each line of text fades out and is replaced with the next. I'm using Chrome 77 on macOS. | |
Re: Try setting data as an array, as so: $.ajax({ type: 'POST', url: 'index.php', data: { lprice: lprice }, dataType: 'text', }); Try using `console.log(lprice)` right efore the ajax request to print out the value of lprice and make sure that lprice is being accurately retrieved. | |
Re: Google Analytics is a Google product that lets you add a snippet of Javascript to every page of your site, and it tracks visitors, and information about those visitors. You can find out lots of interesting insights about your traffic, track conversions, marketing campaigns, etc. Google Search Console, formerly known … | |
Re: You probably have some whitespace somewhere else, that is not a code block. Ensure that the only lines in your message that are indented with spaces or tab are code, and they are preceded and followed by a blank line. | |
Re: rproffitt, I presume that you are trying to shame the poster for what might be a "shill" posting due to their forum signature. However, that's not the way that marketing and SEO works. Forum signatures do not show up when you're not logged in, and therefore they do not show … | |
Re: I had a 17” MSI gaming laptop that I was very happy with for many years. | |
Re: PowerBasic? Visual Basic for Applications? Microsoft Access? I THINK I know what you’re talking about but the name escapes me. It sounded something like PowerBasic but not that? | |
Re: Unfortunately I don't know of any tools that build out meta keywords and descriptions. However, I'm a little confused. Can you give an example of what you'd like to generate based on your keyword files? For example, given a specific page with content on that page, I'm familiar with tools … | |
Re: Try https://www.blackhatworld.com/forums/ They should have what you're looking for. | |
Re: You're pretty much stuck between a rock and a hard place. Google already sees all your content, and it associates a penalty with that content. You could move your content somewhere else, but, as you state, the penalty will most likely come right along with it. Instead of moving your … | |
Re: Based on the code provided, line 31 in the error message corresponds to line 34 in the code snippet posted here. Basically the error message means that it can't process mysqli_fetch_array() because the variable passed in is a boolean instead of a MySQLi result. The reason this would happen would … | |
Re: You can try https://codecanyon.net/ which is an Envato Market (same parent company as Theme Forest) but designed for scripts and plugins instead of templates. Perhaps you were just trying to post within the wrong marketplace type? | |
Re: You can do this with Google's OAuth 2.0 API. Daniel11 seems to be going around linking to tutorials on his own website, but in this case, it's not entirely applicable because you're looking for information on doing it in PHP, and Daniel's tutorial implements C#.NET. Additionally, it talks about the … | |
Re: Hi, Sorry for taking so long to see this thread. > Please supply exactly what is broken. Error messages along with what you expected to happen. They did. > Good luck with getting Google to change this. Knowing what to change to encourage Google's algorithms to change things is the … | |
Re: Here's the steps you might take to implement this: * Create a web page with a `<form>` and two radio buttons, one for male, and one for female * Use jQuery because it's the simplest way to do AJAX * Write a jQuery method such that clicking on a radio … | |
Re: This is an English only forum. However, you are missing a semicolon at the end of the line that begins $usuario = | |
Re: At this time, we only email you about updates to specific articles you've specified you want to watch. However, there are some other tools at your disposal: You can fetch an [RSS feed](https://www.daniweb.com/rss?tag=java) of all new topics tagged with java. You can receive notifications by plugging this RSS feed into … | |
Re: As Hasan has pointed out, you have two options. The first is to pick one of the websites as the one where you want the content picked up by search engines. Whichever one you publish on, you add a `<rel="canonical">` meta tag to the html of both articles to indicate … | |
Hey there forum lurkers - all you people who are browsing the site but still haven't taken a minute to sign up. I just thought it would be a nice idea to welcome you all to the forums. Why not drop us a line and say howdy here? Heck, you … | |
If you need your PHP script to redirect to a different website, you can send an HTTP header to do that. Remember, `header()` must be called before any actual output is sent, which includes not just HTML, but blank lines, etc.. as well. | |
Re: Do you mean **cloaking**? As in when you show one thing to your end users but something else to search bots? | |
Re: You Canadians are weird :-P | |
Re: I don't use Pinterest, so I can't speak for what Pinterest users are looking for or what content they find attractive or unattractive. However, I do use Facebook to promote DaniWeb, so I can give you feedback on that side of it. First thing, I'm incredibly confused what you offer. … | |
Re: For the best strategies, I suggest you subscribe to the email newsletter at Outreach Mama. He gives some good tips. Check out Moz as well As far as actual sites that allow backlinks, we no longer allow this to be posted because it has just gotten soooo soammy. Check out … | |
Re: Hi Mikky ... Google AdWords is where advertiers pay to advertise their products across Google and publications within the AdSense network. Google AdSense is where publishers set up ads on their own site to make money. https://support.google.com/adsense/answer/76231?hl=en | |
Re: > Just stop with md5. It's completely useless. Not that you're doing it, but MD5() with both a salt and a pepper are a *little* better because they make rainbow tables useless, but I would use password_hash() because not only is it more secure, but it isn't any harder to … | |
Re: It is a vBulletin feature to delete user accounts. However, because we are so large, we cannot do so for legal reasons placed upon us by our web hosting company and all of the major ISPs. | |
Re: Sorry, I'm misunderstanding what you're saying. What you described is the expected behavior, no? What appears to be broken? | |
| |
Re: I use CodeIgniter, a loosely MVC-based PHP framework where models are "optional". When I began coding the current iteration of DaniWeb, I began with some of the basics of the infrastructure. I first focused on the model layer and built up the essentials of what a post looks like, what … |
The End.