11,555 Posted Topics
Re: Some quick research seems to indicate that Windows Storage Space is a form of software raid, managed by Windows. Since, from what I read, a big part of the functionality for Storage Spaces is that you can extend storage over time as you add drives, I suspect that the physical … | |
Re: You can get it here: https://www.microsoft.com/en-us/software-download/windows10ISO | |
Re: Sorry, I guess I don’t understand your question. You have a series of if statements that check for certain conditions passed into a form. I’m not sure how that relates to pagination? What code for pagination do you have so far? | |
Re: These sites are getting their data from an API. What API are they using? | |
Re: Is this a desktop? What brand? I’m not sure what red light you’re referring to. Is that power? The hard drive? The CPU? You need to get your computer to POST. (When it spits out on the screen what’s going on during the boot up process.) Typically there is an … | |
Re: A cron job is a scheduled task that your operating system runs. The only way that a PHP script can make changes to what cron jobs run on a server is with admin privileges. The user would have to run the PHP script from the command-line as the root user. … | |
Re: Hi Elliot. Nice to meet you! What type of compliance work do you do? | |
Re: When someone logs in, you would generate a token that is stored as a cookie in the web browser. That session cookie is also attached to the user ID in a session table in the database. If the user attempts to log in from a different browser, where the session … | |
Re: sleep() is the right approach, but you have to play with flushing the output buffer to force what should be echo’ed to the browser up to that point to the end-user. Sorry, I wish I could type more but I’m on my phone and not home. | |
Re: I’m exercising on the stationary bike right now but as soon as I’m done, I’ll type the code out from my computer. It’s too difficult to type code from mobile. | |
Re: As rproffitt suggested, you can use something such as Log In with Facebook or Log In with Google. Most people only have one Facebook or Google account. However, from a security standpoint, nothing is preventing them from creating another account. You can also limit to the IP address + browser … | |
Re: Everything I know about PPC I learned from the official Google tutorials and becoming a Certified AdWords Professional back in the day! Follow all the course information here: https://skillshop.exceedlms.com/student/path/18128-google-ads-search-certification Unless they changed something, it should still be free. | |
Re: So the code you have will show the image morel_thunb.jpg that is expected to be in the same folder as the HTML document. Upon clicking it, it will load morel.jpg, also expected to be in the same folder as the HTML document. Are you sure you mean morel_thunb.jpg and not … | |
Re: What you are describing seems like a CSS or Javascript issue (most likely CSS). It's possible that there is a bug in the server-side code that is serving the wrong CSS files to you for some reason (it could be based on IP address, geographic location, browser user-agent, logged in … | |
Re: Didn't Microsoft Windows have this built-into their OS many, many years ago? | |
Re: Black hat or white hat? If going black hat, try something such as Outreach Mama. As for white hat, I'm struggling too! If you have any suggestions, feel free to let me know ;) | |
Re: You can improve LCP by making the biggest block of content on the page load as quick as possible. You can improve CLS by using CSS to give every single element a fixed size, so that there's room for it as external assets load into place. FID is not one … | |
Re: Try clearing your browser cookies and cache. | |
Re: I completely disagree. Reddit didn’t start with billions. Neither did Quora. I know it was a long time ago, but I bootstrapped DaniWeb with a $20 initial investment and quickly displaced the largest tech publications at the time (CNET, Ziff Davis, etc.) It is also completely reasonable for a project … | |
Re: IMHO, you're being hypocritical. On one hand, you're saying that you want to create a platform owned and run by its members. On the other hand, you're saying that there should be a ban of all political speech on weekdays, a rating system that disincentives swear words, promotion of content … | |
Re: Hi there and nice to meet you. What types of digital marketing do you focus on? I have over 25 years experience in SEO (before it was even an industry!) | |
Re: It's pretty impossible to debug what could be wrong with your code without you sharing your code with us. However, keep the following in mind: // This will remove duplicate rows SELECT UNIQUE colA, colB FROM table // This will roll up rows with the same value for colA into … | |
Re: It's hard to know because you aren't spitting out any errors. Add to the top of your PHP script: ini_set('display_errors', 1); error_reporting(E_ALL); | |
Re: So sorry for taking so long to see this topic and respond to it. I would switch $_POST['dropdown'] to $_REQUEST['dropdown'] everywhere in your code, which means that the dropdown option is not going to be passed in by a form POST submission, but alternatively just by a query string. Then … | |
Re: Is this java or python and why did you tag the question as both? | |
Re: I definitely like the name Office Surgery Centers with the domain officesurgery.com Good luck! | |
Re: What exactly does upload.php look like? It looks like there is an error on line 22 of upload.php. It looks as if the path is invalid in your ftp_put() function. Check your values for $remote_file_path and $remote_file_path2. Also, this is a very, very insecure way of doing file uploads. Why … | |
Re: I would stick to PHP and MySQL as they are free and there are a *lot* of online tutorials and resources catering to newbies. There is also phpMyAdmin which is a web-based GUI to visualize your MySQL databases and tables. I use the PHPStorm IDE and it, also, has a … | |
Re: php.ini has a maximum file size limit, maximum execution time, maximum memory, etc. You most likely are hitting one of these limits. | |
Re: Please post the code you have so far that works with passing a file_id into mydloader() instead of a filename. Do you already have the MySQL query written to do the lookup and convert the file_id to filename? The reason SQL code before the headers introduces problems has to do … | |
Suppose you have a php script where a user is prompted to enter a number. You then do something with that number ... you increment it, perform some other math calculation on it, search the database for records with the ID # the user passed in as a query string, … | |
Re: I use DropzoneJS and I’m quite happy with it. It’s quite popular as well. | |
Re: Hi Kenny and welcome to DaniWeb!! What brought you here? Are you interested in tech? I started DaniWeb back when I was 19. I'm currently just about to turn 40! | |
Re: Can you please describe what you mean by search box? Usually a search box is just an empty text field where a user types in what they want to search for and then clicks a search button. Are you thinking of an autocomplete? Or a dropdown? | |
Re: So I see you currently have code in place to create a big tree with all your categories. Do you want to be able to click on them and have them expand/collapse without refreshing the entire page? If so, this can only be accomplished with Javascript. | |
Re: Hi, so sorry for taking so long to reply to this topic. I saw it the other day but I was on my phone and couldn't provide a proper reply. I suspect you want to do this with HTML. You would do something like: <a href="http://www.website.com/page.html"> <img src="http://www.website.com/image.gif"> </a> Good … | |
Re: DaniWeb is a free community ... it doesn't cost you anything to view or participate in any of our topics. We do offer a DaniWeb Premium membership, which costs money, and gives you some additional benefits and functionality, such as no ads. | |
Re: You need to [create an XML sitemap](https://developers.google.com/search/docs/advanced/sitemaps/build-sitemap#createsitemap), link to it from your robots.txt file, and then submit it to Google Search Console. You can also submit it to Bing Webmaster Tools. | |
Re: > but i think that you have posted it in wrong forum. He posted in the Search Engine Strategies forum? | |
Re: pritaeas, price is less of an obstacle if it's a B2B SaaS app. It's a lot tougher to convince consumers to open their personal wallets than it is to convince businesses to invest in increasing their bottom line. Why don't you start by advertising it as a $100 product, but … | |
Re: Please show us the code you have so far and where you're stuck, what isn't working, or what is specifically confusing you about this homework assignment. Also, you tagged your question c, c++, and java ... what language are you currently studying? | |
Re: I think this is a limitation of Edge, not of your web application. They have a hard limit on the number of concurrent connections per hostname that are allowed, at least with HTTP/1.1. I'm not sure if the same limitation exists with HTTP/2. Does your web app use HTTP/2? I'm … | |
Re: Can you please show us your code? I found some ideas here: https://stackoverflow.com/questions/64610742/error-databasebridge-is-null-using-watermelondb-in-react-native Not sure if the replies in that thread fix your problem. | |
Re: I'm not sure what you mean by groups? I've never grouped my robots.txt?? | |
Re: They track different things. Google Analytics is javascript that you place on your webpages to track how many visitors you have, and demographics about each of your visitors. It can also track conversions and a whole slew of things. Ahrefs is an SEO tool that is typically used to track … | |
Re: HTML is a markup language while PHP and ASP.NET are development languages that are used to generate HTML. Whichever backend language you use, they all have the capacity of being equally SEO friendly. However, they also all have the capacity of being not SEO friendly at all. Always follow SEO … | |
Re: A few things. Firstly, I’m unsure why you think this is an MD5 issue because I’m not seeing anything in your code that MD5 encodes anything? Secondly, you never stated specifically what error message you’re getting or what isn’t working. If you are getting a blank page, it’s probably because … | |
Re: Rproffitt, CPA is cost per acquisition, not action, and actually has nothing at all to do with SEO. In fact, quite the opposite. SEO is about what you can do to help Google to help you rank in the organic search results and get Google to send traffic your way … |
The End.