11,530 Posted Topics
Re: I’m sorry you’re still having issues with CSP (I can see if I can help you more in the other thread) but the OP here is referring to something different (and not web related) entirely. | |
Re: > What about a video such as https://www.youtube.com/watch?v=pspsSn_nGzo where we see about turbocharging our programming with AI. You linked to a 17 minute video of a guy named Dave explaining the pros and cons of ChatGPT, as well as an in-depth explanation of how to use it as an effective … | |
Re: On line 145, you have `<a href="complete.php?id=<?=$offerid?>">` I'm not seeing how `$name` is built into the URL (e.g. there's no reference to `$adLink`) but I am also not seeing in this code what you mean about how `$name` is being passed via Javascript. Please show us the buggy code that … | |
Re: According to [PHP documentation](https://www.php.net/manual/en/mysqli-stmt.execute.php) the `mysqli_stmt_execute()` function returns false on failure. Personally, I would just do something such as: if (mysqli_stmt_execute($stmt) !== false) { // Success ... } else { // Failure ... } | |
Re: Wow, that one was so tough that, after 3300+ responses, no one found a way to follow it up in 14 years. Crazy. I'll say relief Not quite only changing two letters but close. Removing an 'a', removing a 'z', but also ... dare I ... adding an 'f'. | |
Re: rproffitt, they aren't wanting to list their agency services in Amazon, obviously. They are looking for a discussion with other digital marketers as to best serve their clients. | |
Re: I'm not spotting the difference between the two code blocks you have here other than, in the first one, you echo $country and in the second one you don't. Also, in both of them you seem to have the line `$user_r_ip = $_SERVER['REMOTE_ADDR'];` but you are not using that variable … | |
Are URLs submitted to Google in a disavow file excluded from the list of external links in Google Search Console? | |
Re: Do you have a WordPress site that perhaps someone else has gotten the admin password to? It sure sounds like your website has been hacked. | |
Re: Sorry for the belated response here, but is there a reason that the native JS `trim()` function couldn't be used on the string, after the regex already does its job of adding spaces in the middle? | |
Google Analytics initially evolved from Google's purchase of Urchin Analytics, an Apache log analyzer. That's why legacy Google Analytics property IDs all begin with UA-. The familiar ?utm_ keywords that can be tacked onto URLs to track referrer statistics in Google Analytics are remnants of Urchin Tracking Modules. All these … | |
Re: I would only half agree, rproffitt. I think there’s been a definite industry shift over the past 2 years from guest blogging, instead towards creating on-site content to serve as link bait, and I think 2023 is going to be all about social media. I also think Google is going … | |
Re: Hi and welcome! Your name reminds me of Mark Twain. Is that your real name?! | |
Re: Server response time is limited by the speed of your web servers (and has nothing to do with front-end javascript execution, etc.). You might also be able to use a CDN such as Cloudflare to improve page speeds if you cache HTML pages, although this isn't possible with their free … | |
Re: Philip, Thank you for your contribution. I know it can be difficult coming into a new community and wanting to participate, especially as a beginner programmer. I apologize that your first impressions here have been people bashing your code. I do agree that the code you contributed is inefficient, but … | |
Re: > But what is THE HACK that allowed you to win the most positions? ;) Go viral in social media for an article that is listed in Google News. Also, the first page for *what*? Your company name? I rank #1 for "DaniWeb". Does that count? | |
Re: We don’t allow these kinds of topics because they turn into massive spam fests with everyone just posting a link to their blog. I would check out the marketplace at BlackHatWorld. You could also do a Google search for “submit guest post”. But keep in mind that Google is seriously … | |
Re: Hi, I need to work on making it a better user experience. My first guess is what is happening is that you received a new message belonging to a conversation that you have previously archived, so the conversation isn't showing up for you. Try this: 1. Click on the speech … | |
Re: Yeah, I think that's true with all social media nowadays. You really have to bring something eye-catching to the table to distract people away from a billion people and companies all trying to get their attention at once. | |
Re: It depends what your marketing goals are. Sometimes it makes sense to fake it til ya make it. Psychologically, people may be more likely to follow you if there’s a big number of people already seemingly following you. Or perhaps being able to say you have a big number of … | |
Re: Similarweb is only able to estimate the amount of traffic you have by collecting data on a small sample of user browsing habits (that they have access to) and then extrapolating that. Here is an article about the different ways they collect data: https://support.similarweb.com/hc/en-us/articles/4912885128337-How-does-Similarweb-get-data- The only way they would know … | |
Re: If you’re talking about your DaniWeb password, you can do it [from here](https://www.daniweb.com/connect/profile). | |
![]() | Re: In the world of digital advertising, PPC (pay-per-click) is when advertisers pay each time someone clicks on their ad and lands on their website. Ad networks such as Google AdSense allow publishers to host PPC ads on their website, and get paid a portion of the profits. Click fraud is … |
Re: I’m on my phone about to head to bed so I can’t really look into this too deeply tonight, but I would begin by echo’ing debug statements throughout requestHandler.php to see where the failure is happening. | |
Re: Secure it in what way? For the typical household, a password-protected router is just fine. | |
Re: Discussions about AI are fine. Answering technical questions, and posting editorial, written by an AI is not. It does not benefit anyone. | |
Re: My apologies for taking so long to respond, but welcome nonetheless. | |
Re: Having used both Toptal as well as Upwork, I would recommend Toptal if you are looking for a senior-level developer and you have a slightly higher budget. For practically anything else, Upwork is most likely a better fit. | |
Re: The salt is encoded inside the hashed password. | |
Re: The server has no concept of when the web browser is closed. However, PHP sessions are typically tracked with cookies, and you can set those cookies to expire when the browser window is closed. I believe PHP has its own session garbage collector that automatically deletes the files associated with … | |
Re: Do you offer digital marketing services? What is the purpose of your post? | |
Re: Do this instead: <?php echo file_get_contents('https://www.some-other-website.com/stuff.php'); ?> or <?php $output = file_get_contents('https://www.some-other-website.com/stuff.php'); // ... Do something with the $output string that contains the HTML from stuff.php ... `include()` is used when you need to include other local PHP libraries in your code. Those other PHP files get interpreted by PHP. … | |
Re: Sorry, I'm not exactly understanding your question. What do you mean they can't get in unless they are added manually? They can't create new accounts or they can't log in? How can you log in a user manually? And what does this have to do with special characters? If there … | |
Re: While true, is there a point to your post? Do you run a digital marketing agency you're trying to promote? | |
Re: What else is there really to say? | |
Re: Hi and welcome to DaniWeb! What areas of digital marketing do you focus on? (technical SEO, off-page SEO, advertising, social media, etc.)? | |
Re: PHP is a web scripting language that is removed from the networking and SSL side of things. You can use a web server such as Apache or Nginx to server your PHP scripts to ensure your website only loads via HTTPS with an SSL certificate. It appears you are already … | |
Re: Hi Tobias. Nice to virtually meet you! However, I'm confused. You're from Germany but Kevuru games is based in Ukraine and has nothing to do with Australia or gambling. What is Kuru Games? | |
Re: Unfortunately I don’t know of any, and DaniWeb isn’t really designed to be a marketplace or allow such solicitations. However, as a general rule of thumb, I would avoid contracting agencies for large, enterprise-scale products. Agencies are typically designed to handle one-off projects that are a scope of one week … | |
| |
Re: My guess would be that, unfortunately, you're out of luck. If the operating system, and therefore printer drivers, you are using have no option to specify photo paper or not, then that means the drivers don't have the knowledge to know to use more ink in some situations and less … | |
Re: This is completely untested code (I'm just writing it blind) so it might have bugs, but this is the general idea: <?php // Get date passed in via query string $date = $_GET['date']; // Attempt to retrieve log file with date specified $log_file = file_get_contents("/var/log/my_files/$date.log"); if ($log_file === false) { … | |
On Tuesday, November 15th, the average response time (ms) in the Crawl stats section of my Google Search Console skyrocketed. It's been slowly coming back down since, but I was wondering if something changed outside my control that may have caused this anomaly. I'm still working on getting to the … | |
Re: Embedded `<object>` and `<embed>` are not meant to be used on HTML pages. You can use javascript's `.ScrollTo()` method to cause the iframe to scroll down to a particular section on the page. | |
Re: Hi June. This type of marketing is very specific to the product or service or brand you are trying to promote, so it's very much not a one size fits all. Our forums here, though, are also not the best place for marketplace-style posts, and unfortunately I don't know of … | |
Re: I haven't been a hardware person for a very, very, very long time. Back in my younger days (I'm officially 40 now so I can say things like this), I would build out my own PCs. However, in 2005, I started buying pre-built Dell Workstations, and have been doing so … | |
Re: I'm sorry but I'm confused by your question. If I look at your PHP code, I see that you are pulling in from the form daftar_kursus, which is the submit button ... Then, I see you are using implode to make the variable $IDKursus a PHP array of all of … | |
Re: This topic is tagged MySQL and CSS and, yet, those are very random and unrelated topics. If you’re hiring for either of them, or other technologies, a quick Google search for “<insert technology here> interview questions” should give enough food for thought. The thing is, what are you hiring for, … | |
Re: > Frankly it's the one you like the best. What other criteria would there be? The one Google and/or your end-users and/or customers like best. Are you referring to a WordPress theme? If so, focus on one’s that don’t have a bunch of third party Javascript plugins to slow everything … | |
The End.