Questions tagged [webaddress]

32 questions
3
votes
1 answer

Program to check a web site address is valid or not

I am writing a program that checks if a website has valid extension or not. First I did this website_address = 'facebook.com' website_address.endswith('.com') It works fine. But I can check only one extension, so I thought to write a function that…
user15503263
2
votes
1 answer

URI vs URL in React Native

In react-native one can do: const somePath = 'https://...' or const somePath = 'https://...' From what I understand about web addresses is that URIs are a superset of URLs and…
Siya Mzam
  • 4,655
  • 1
  • 26
  • 44
2
votes
1 answer

Is it possible to open up certain web addresses using the default internet browser with python?

I want python to open up a certain address using the computers default web browser. Is this possible?
rectangletangle
  • 50,393
  • 94
  • 205
  • 275
2
votes
1 answer

Non Standard Web Address Format

We sent mails to customers in our application which has a link in it. In yahoo and Hotmail, whenever the customer clicks on the link it displays following warning alt text http://img691.imageshack.us/img691/5402/warningp.jpg The URL is long…
Gopi
  • 5,656
  • 22
  • 80
  • 146
2
votes
1 answer

what is cdn prefix instead of www in web address

In place of a missing www prefix I sometimes see cdn. Is this for a special service or program, different from a webserver ? Is there a list of all common leftmost subdomains/domain prefixes?
user108754
  • 597
  • 1
  • 4
  • 13
2
votes
2 answers

C# Need to locate web addresses using REGEX is that possible?

C# Need to locate web addresses using REGEX is that possible? Basically I need to parse a string prior to loading it into a WebBrowser myString = "this is an example string http://www.google.com , and I need to make the link…
user174108
1
vote
0 answers

Internet Explorer retrieves empty data with jQuery ajax()

I'm using jQuery Address together with WordPress (latest vers.) and while trying to call in data from single.php via ajax() I get an empty string in return using Internet Explorer. This seems to be the case for all versions of the browser. The ajax…
Staffan Estberg
  • 6,795
  • 16
  • 71
  • 107
1
vote
1 answer

Prevent subdirectory from being a part of the link?

I am currently refactoring my website and I noticed that my nested structure shows up like I'm browsing through File Explorer. I couldn't find anything on the web about preventing that from showing up that way. I like to ensure my project is nice…
Hazel へいぜる
  • 2,751
  • 1
  • 12
  • 44
1
vote
1 answer

Find duplicate webaddress through regex

If someone types webadress twice by wrongly i want to find the duplicate webaddress using regex. Example: http://stackoverflow.com/questions/ask/advice?http://stackoverflow.com/questions/ask/advice? It should throw an error. I check the rule…
1
vote
3 answers

Webpage not opening when URL prefixed with www

I have a simple question which may be naive, but am still gonna ask it anyways- When I try opening a website with this URL : www.oyc.yale.edu It doesn't open, however if I open it by removing www from the URL oyc.yale.edu, it opens up. Isn't www…
OneMoreError
  • 7,518
  • 20
  • 73
  • 112
1
vote
3 answers

How to remove extra numbers and letters from the end of web address bar

I have lots of extra letter and numbers at the end of all the site pages. If you check the website: www.rsiapparel.co.uk you will see what I mean, I get this: http://www.rsiapparel.co.uk/#sthash.4xYBB5vG.dpbs How do I remove these bits…
user2374538
  • 11
  • 1
  • 2
1
vote
2 answers

How do I check for a web address and reject an email with regex?

Where I'm running into a roadblock is trying to check for this (?(http|ftp|https):\/\/)?(?
([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?) while rejecting the expression if it contains the @ sign. I've tried a number of variations on this with no…
Middletone
  • 4,190
  • 12
  • 53
  • 74
0
votes
0 answers

Need to know if there is a program that will search for all sub-folders given a specific web address

I am working on a project at work where we currently have a very labor intensive process of looking for verification of certain documents having been uploaded to a folder. My bosses would like me to automate this process to save time. I have found…
0
votes
1 answer

Using JavaScript when page is opening in the new window that time how to hide the address bar

I need some help. I want to hide the address bar when opening the webpage in a new window. I tried all possible ways but I could make it possible. If anyone has an idea to do that please help on this. Below I mentioned the sample pages. I am opening…
0
votes
1 answer

Web address URL different from actual website

My client is facing a potential security issue. Someone is displaying their website at another web URL which is not my client's. Upon investigation it is found that the miscreants are using frame tag to display client's entire website on their…
user2649343
  • 147
  • 3
  • 11
1
2 3