- Strength to Increase Rep
- +7
- Strength to Decrease Rep
- -1
- Upvotes Received
- 67
- Posts with Upvotes
- 52
- Upvoting Members
- 41
- Downvotes Received
- 9
- Posts with Downvotes
- 9
- Downvoting Members
- 4
Obsessed with computers since 1982.
- Interests
- Computers, the Internet and everything. Also long distance running.
- PC Specs
- Nothing special.
172 Posted Topics
Re: You won't catch me saying this often but may I suggest you Google it? My reasoning is this: any SEO expert with a greater understanding of ranking factors than another is more likely to out rank them in search results. Q.E.D. So the best SEO tools are among those found … | |
Re: Reality TV shows and repetition. Just when we're about to find out which useless contestant going home, the screen fades out for a second, and then we're treated to a replay of "And the person going home is..." We might just as well be watching Teletubbies. | |
Re: Google's [Webmaster Guidelines](https://support.google.com/webmasters/answer/35769?hl=en) is usually a good starting point. | |
Re: It's my understanding that buying and selling links is acceptable to Google, providing they don't pass PageRank. However if the intention is to influence search results then you'll be violating Google's guidelines. If (when) you get caught, don't be surprised to find your site missing from search results. To prevent … | |
Re: So, Google Fetch returned an HTTP 404 error? You can rule out issues with robots.txt. The file tells bots which resources it should not request. You simply would not receive an HTTP response (or error) because a well-behaved bot will not make requests for blocked resources. The robots meta tag … | |
Re: Unsure if this'll work but I'm attempting to block the upgrade on an old netbook by restricting permissions on the hidden folder that Microsoft will attempt to create for the download, which I believe is C:\$Windows.~BT Any thoughts on a better way to permanently block this upgrade? | |
Re: Sonipat, your post appears to have come from another forum. See [this one](http://www.speedguide.net/forums/showthread.php?219751-Wireless-Router-not-assigning-an-IP-address-to-my-laptop), circa 2007. Please refrain from copying the work of others and make yourself aware of Daniweb's [rules](https://www.daniweb.com/community/rules). Scraping content typically violates copyright laws and damages the good reputation of Daniweb. Additionally questions like the one you've asked … | |
Re: >I bought some natural links and... Bought links are not 'natural'. Make sure they're tagged as 'nofollow' if you don't want to risk getting penalized by search engines. | |
Re: Omokanye, The issue could be a faulty cable, monitor, or video adapter. See if you can deduce the cause by replacing each of these one at a time. Turn off the monitor and computer between tests to avoid damaging the equipment. Look for worn or corroded connectors and broken soldered … | |
Re: Hosting on a static website, no database? You might still be able to achieve something close to what you want with [server-side includes](https://httpd.apache.org/docs/current/howto/ssi.html) if it has been enabled. | |
Re: Cutting and pasting 1.6 million lines of data? I've never tried that before but something tells me it's not going to work :-o One issue lies in the way text is stored within a PDF. Strings of text are typically broken up in to arbitrary chunks, and not necessarily stored … | |
Re: [delete] | |
Re: A way to match fingerprints is already provided with the SDK, apparently... "SecuGen SDKs make it quick and easy to integrate SecuGen fingerprint scanning, template generation (*minutiae extraction*), and template *matching functions* (both one-to-one and one-to-many) into almost any type of sotware application.", Source: http://www.secugen.com/products/sdk.htm Does the documentation not include … | |
Re: The ratio of 'do' follow to nofollow links is not a useful indicator of site quality, as far as I know. More important is the rate of increase, and it seems likely to me that do follow and no follow share different rates. Links acquired through social media or guest … | |
Re: To find files use the [DirectoryInfo.GetFiles method](https://msdn.microsoft.com/en-us/library/4cyf24ss%28v=vs.110%29.aspx). It returns an array of FileInfo objects. Use the [Random class](https://msdn.microsoft.com/en-us/library/system.random%28v=vs.110%29.aspx) to generate a number that can be used as an index for the FileInfo array. Becareful to specify an index that is within bounds. Selecting pictures at random will mean that occasionally … | |
Re: Unfortunately I don't yet have access to Windows 10, but here are a couple of things you might want to try that worked for earlier versions... To change the 'registered owner', open the registry editor (regedit) and navigate to `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion` Look for the 'RegisteredOwner' key. To change an account … | |
Re: Search for [SMS gateway](https://duckduckgo.com/?q=SMS+gateway). You'll discover there are many services offering SMS messaging, which you can connect to through their APIs. I bet most of these will be documented for PHP. Alternatively you can connect directly to a network with either dedicated hardware or just a mobile phone. | |
Re: Smells like spam. The article appears to have been scraped from another site, with the addition of a link on the words 'brand new icons'. Please feel welcome to correct me if I'm wrong. See: http://bgr.com/2016/01/31/google-chrome-material-design-update/ Is this the original? It seems to be copyright material. Did you obtain permission? … | |
Re: Hi squashspark, and welcome to DaniWeb. To get at the data inside your Coverage node you could try selecting it with an XPath query, then selecting the nodes you want in the context of the current node. For example, in the code below line 4 selects a PAGE node, then … | |
Re: Rendering in the browser occurs after an image has downloaded. Usually it's the downloading of the image that takes time. If you wish to reduce the amount of image data transferred on your site here are a few things you can try: * Resample images to reduce their resolution (recommend … | |
Re: Looking at the results from rproffitt's query, the tenth one down seems promising: [Windows Authentication with Chrome and IIS](http://www.leftycoder.com/windows-authentication-chrome-iis/). In summary, check that 'NTLM' appears before 'Negotiate' in the list of Windows authentication providers for your site. Open IIS manager and navigate to your site > IIS > Authentication > … | |
Re: Does your computer meet the [system requirements for windows 10](http://www.microsoft.com/en-gb/windows/windows-10-specifications#sysreqs)? | |
Re: The quickest and easiest way to generate a PDF is to make use of an existing PDF library. Search the web for "[PDF library for PHP](http://www.google.com/search?q=PDF+library+for+PHP)" and you'll discover there a number of libraries for PHP out there, both paid and free. Pick one that suits your needs. Policies can … | |
Re: I believe you need to add the native DLL to the project in Solution Explorer. However selecting 'Include in Project' alone is not always enough. Depending on the filetype you may need to manually set the 'Copy to Output Directory' property. I don't know why Visual Studio behaves this way, … | |
Re: Requests for `https://malsup.github.com/jquery.form.js` are being 301 redirected to `http://malsup.github.io/jquery.form.js`, hence the mixed content issue. The resource is also available via HTTPS so you could possibly link directly to `https://malsup.github.io/jquery.form.js`, as long as you're confident it won't change. | |
Re: Try changing the event listener on line 7 to something like... openCtrl.addEventListener( 'click', function(ev) { ev.preventDefault(); if (classie.has(el, 'services--active')) { classie.remove(el, 'services--active'); } else { classie.add( el, 'services--active' ); } } ); You should find your open services button will now toggle. The event listener for the close services button, … | |
Re: If you're relying on the HTTP referrer header to prevent hot linking there are a couple of issues you might need to think about. The header can be spoofed. And it's not uncommon for the referrer to be blank, such as when someone bookmarks a resource. I haven't attempted to … | |
Re: ... not to mention [unit testing](http://en.wikipedia.org/wiki/Unit_testing). | |
Re: I'm not aware of any closed or open source software that can manage to recognize handwriting with any reasonable degree of accuracy. Even clearly printed text can present a challenge for today's OCR engines, with none of them achieving 100% accuracy. Postal services have been using OCR for a number … | |
Re: Have you tried setting the default email client? See: http://windows.microsoft.com/en-us/windows-vista/change-the-default-e-mail-program | |
Re: You might want to have a look at [HTML Imports](http://duckduckgo.com/?q=HTML+imports). The directive you have used is a [server-side include](http://en.wikipedia.org/wiki/Server_Side_Includes), which may need enabling on your web server in order to work. Note the 'file' or 'virtual' argument of the include directive should specify a path somewhere inside the web root … | |
Re: Here's one I've not seen mentioned yet... "C++ Essentials" by Sharam Hekmat, 14th July 2005 PragSoft Corporation The author describes it as a concise introduction to C++ for beginners and without unnecessary verbosity. I wouldn't disagree. The book and its tutorials are aimed at the Unix environment. However, anyone beginning … | |
Re: If the file is corrupt you'll probably have a hard time trying to recover the contents. That's why it's important to keep backup copies :-) In the unlikely event you don't have a backup, try looking for a temporary file. Sometimes applications will create such files while a document is … | |
Re: > I would imagine that if you are in possession of an original disk with the activation number then you are legal. Not necessarily. Simply being in possession of the original media and license key doesn't mean Microsoft has granted you permission to use it. Can you be certain the … | |
Re: You might want to check Google's help pages on [Tracking across multiple domains](http://support.google.com/analytics/topic/2772342?hl=en&ref_topic=1726910) to see if it applies to your case. Google Analytics will allow you to monitor sites under your control. Pages can be tracked by page title, but can you guarantee the title will be unique? What happens … | |
Re: Why are you attempting to activate Windows with KMSpico? Please be aware of the forum rules. It's difficult to say what might be causing the long boot time, the possible causes are too numerous. Although a slow boot and missing DVD drive might suggest some common factor like a driver … | |
Re: >Issue 1. Currently i am getting enough search impressions but clicks are not considerbly good in number. The top 3 slots on search engine result pages (SERPs) tend to steal the lion's share of clicks. If your results appear too far down, you'll see plenty of impressions but few clicks. … | |
Re: Was it a Windows or ABCpdf update that affected your installation? Did you try both MSHTML and Gecko rendering engines? | |
Re: I have two wifi enabled routers connected via a powerline ethernet too, similar to rubberman. Except that both routers are configured identically, same SSID, passwords etc. This appeared to be the recommended configuration when I first looked at setting it up. It works reasonable well, although the signal strength reported … | |
Re: Granted, now bend over while we give you a good crank. I wish Ford would bring back the Model T. | |
Re: Exactly! A shooting star without a gun is a dead star. If train stations are where trains stop, what's a workstation? | |
Re: <misinformation> In keeping with the current trend of using Roman numerals, Microsoft is pleased to announce the next generation of Windows will be named 'Windows X'. And this time there will be only two editions, Standard and Professional (abbreviated to S and P). The circle is now complete. There will … | |
Re: > it will definetely increase your ranking in google. Search engines consider various metrics when ranking pages but producing video content is not one of them, as far as I know. Could you explain further how video marketing affects ranking? | |
Re: The point at which you're calling the document.getElementById('imageTwo') the image element doesn't actually exist. As a result, the value of image will be null. You need to call the function after the IMG tag has been created. You can do this either by placing a script block after the tag, … | |
Re: HTTPS helps to prevent cookie theft by MITM attacks. However if a site has an XSS vulnerability the cookies can still be stolen. And if that site relied solely on a session cookie for authentication then an attacker could gain access to your account without needing to login. | |
Re: Keystoke, in an earlier [post](http://www.daniweb.com/members/955745/keystoke/posts#post1822077) you've stated you are a **link seller**. If you have fallen foul of Google's policy on [link schemes](http://support.google.com/webmasters/answer/66356?hl=en) you are going to find it extraordinarily difficult to get page rank with them again. | |
Re: For the purpose of SEO promotion? If you're looking to gain Page Rank for the link, I don't believe self published links carry much weight. If you're concerned whether it will detrimentally affect your site's ranking, you could always rel='nofollow' the link, but I doubt that will be necessary if … | |
Re: Creating an OCR engine from scratch demands a lot of effort. Instead of reinventing the wheel, why not make use of an existing OCR component? You'll find there are several available on the market for programmers and at least one should fit you needs. It'll save you months of work, … | |
Re: Thinking about it. I'm still doubtful that HTTPS is suitable for everywhere and everything, as Google would like us to believe. For example we have some fairly hefty downloadables on our site - one of our products being roughly 50 MB in size. As caching proxy servers are generally unable … |
The End.