Questions tagged [broken-links]

A broken or dead link that points to a webpage or server no longer available.

A broken or dead link that has suffered from link rot and directs to a webpage or server that is no longer available.

152 questions
35
votes
3 answers

Links not going back a directory?

I have a website, let's call it example.com. Within this site, I have some FAQs but the person that built the site saved the FAQ pages under a directory on the site named "FAQs". As an example an FAQ page would be located…
zik
  • 3,035
  • 10
  • 41
  • 62
29
votes
6 answers

JavaScript/jQuery check broken links

I developed a small Javascript/jQuery program to access a collection of pdf files for internal use. And I wanted to have the information div of a pdf file highlighted if the file actually exist. Is there a way to programmatically determine if a link…
NawaMan
  • 25,129
  • 10
  • 51
  • 77
7
votes
1 answer

Check for broken links

I am trying to find all the broken links in the webpage using Java. Here is the code: private static boolean isLive(String link){ HttpURLConnection urlconn = null; int res = -1; String msg = null; try{ URL url = new…
user754740
  • 117
  • 2
  • 6
7
votes
7 answers

Firefox show broken images

In firefox a broken image appears as just a blank white space. On a white background there is no way to distinguish between no image and a broken image. This makes identifying broken images difficult to recognise and makes them go uncorrected. How…
reach4thelasers
  • 26,181
  • 22
  • 92
  • 123
6
votes
1 answer

Is Google's jquery CDN script link missing thew leading "https:" for a reason?

I haven't had to grab the link for awhile, but when jquery undefined errors started appearing, I noticed the url in the CDN script link was missing the leading "http:" or "https:". It obviously creates a broken link. I'm wondering if this is…
jp_inc
  • 345
  • 4
  • 14
5
votes
1 answer

URL Malformed exception in Selenium WebDriver using Java to find the broken links

I am using this code in Selenium script to find the broken links. So this is the code I have written but on running I am getting the malformed exception. public void countNoOfLinksInHomePage(WebDriver fd) throws IOException{ List
Adam Grunt
  • 207
  • 1
  • 3
  • 16
5
votes
3 answers

How to handle links containing space between them in Python

I am trying to extract links from a webpage and then open them in my web browser. My Python program is able to successfully extract the links, but some links have spaces between them which cannot be open using request module. For example…
python
  • 4,403
  • 13
  • 56
  • 103
4
votes
3 answers

How to check if link is downloadable file in php?

I'm trying to make broken link checker with php. I modified some php code i found online i'm not php programmer. It let's in some unbroken link's but thats ok. However I have problem with all presentation, zips and so on... Basicly if it is…
Exmorn
  • 71
  • 1
  • 9
4
votes
1 answer

Why is github pages showing a different date for my post (w/ Jekyll)?

I publish my blog using github pages. Recently I noticed a permalink to one of the posts broke. It used to be this: http://strilanc.com/quantum/2014/03/07/Building-your-own-Quantum-Fourier-Transform.html but now it's…
Craig Gidney
  • 17,763
  • 5
  • 68
  • 136
3
votes
4 answers

Hyperlinks A HREF do not work

I'm a bit fooling around with a new website idea. But when i was testing it the A HREF does not work. It's not even showing a finger/hand pointer. It's the text at the content area (the first white block under the header, but not the menu). The…
3
votes
3 answers

Finding broken internal links in DotNetNuke

Are there any automated tools that can find broken INTERNAL links on a website -- specifically for a website based on the DNN framework. (DotNetNuke). We have looked at Xenu , but can't to see get past the login page. Any suggestions Cheers.
soldieraman
  • 2,630
  • 7
  • 39
  • 52
3
votes
1 answer

Where can I download `idndlpackage.EXE`?

Supporting Internationalized Domain Name (IDN) on Windows XP requires "Microsoft Internationalized Domain Name (IDN) Mitigation APIs", whose file name is idndlpackage.EXE, but the download link is now unavailable on the Microsoft website. Where else…
Victor
  • 1,303
  • 1
  • 10
  • 28
3
votes
1 answer

Which HTTP status codes should we consider for dead links

We are executing below curl call from PHP. $url = $fullurl; if (isset($url)) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch , CURLOPT_RETURNTRANSFER, 1); $data =…
3
votes
1 answer

Broken links in Dreamweaver

I am changing the url structure of a website, to have it extensionless. For example: example[.]com/hello.html would become: example[.]com/hello I have everything set up in my .htaccess file, and all works perfectly. However I want to drop the…
Whittie
  • 51
  • 3
3
votes
3 answers

Why wysiwyg plugin in magento gets me broken links?

When I try to insert an image to the wysiwyg editor in Magento it places the right variable of the image path in the media directory. But, wysigyg doesn't find the right path/url, example: I inserted:

Edder Núñez
  • 165
  • 2
  • 8
1
2 3
10 11