url

ANDROID: How do I download a video file to SD card?

I have a video file on a website in .MP4 format and I want to allow the user to be able to download the video to their SD card by clicking a link. Is there an easy way to do this. I currently have this code but its not working...not sure what I am doing wrong. THanks for any help! import java.io.BufferedInputStream; import java.io.Fi...

Get string from URL

Hi guys, I had a little issue, i need to extract a string from the URL that looks like this: http://www.myserver.com/category/firstcat/second-cat/ All my URLs has this structure, and I need to catch the "firstcat" string I would appreciate your help! Thanks so much! ...

What are the best characters to use for placeholders in file names (on Windows) AND URLs?

I am writing an application in C# that will need to find placeholders in URLs and/or file names, and substitute in a value, much like this: C:\files\file{number} => C:\files\file1 Unfortunately for that example, curly braces are allowed in file names and URLs. Can anyone please suggest some characters that I can use to denote placeholde...

URL containing %3f character not allowed

This is similar with the link below that has been solved. http://stackoverflow.com/questions/2831142/asp-net-4-url-limitations-why-url-cannot-contain-any-3f-characters The problem is we are still using .net framework 3.0. Does anyone know any alternative or similar equivalent of relaxedUrlToFileSystemMapping in .net 3.0? ...

Limit rewrite rule to exclude a certain directory

When a a rewrite rule to allow us to make friendly URL's with an ID number. The story is only pulled through the ID number, so the text at the end doesn't really matter. RewriteRule ^news/([0-9]+)$ /news/$1/ [R=301,L] RewriteRule ^news/([a-zA-Z0-9_-]+)/.*$ /news/story.php?id=$1 Our problem comes when any file linked within /news/i...

How do I check for a URL's top-level domain in ASP.NET/C#?

Let's say "www.mysite.fr/home" is the URL ..Now how do I fetch "fr" out of this ? JUST "fr" actually what I am trying to do is change masterpages at runtime after detecting a visitor's country..Yes I can use the countryCode variable which is there in some other class but thot may be I can do it like this only..just wanted to try..logic ...

Open Browser in Background - loading web page in background

Hi i'am trying to load an url in background using the default browser. So the user can switch to the browser whenever he finished reading the current activity and the page is already loaded. Is there a way to fire an Intent (Browser) but stay in the original Activity? I'am aware of the FrameLayout approach with setting the visibilty b...

What is the best way to organise a project for URLs?

Hi, I am working on a web portal (PHP/MYSQL) which have 3 sections photos, videos, articles. Each section has its own submission form using which user will submit photos, videos or articles corresponding to their accounts. So, that URLS which I thought should be like http://example.com/ http://example.com/about/ http://example.com/c...

Flickr Web application URL scheme problem

Hi, I am developing an iPad application that used Flickr API services (Objective Flickr). As mentioned in the document: 1. Obtained the Consumer Key and Secret for my app. 2. Modified the App type as web application 3. Updated Callback URL as neo://auth 4. In info.plist of my app, added new entry for URL types: URL identifier : same as...

Is there something wrong with this jQuery?

function insertParamIntoField(url, param, field) { var anchor = document.createElement('a'), query; anchor.value = url; query = anchor.query.split('&'); for(var i = 0, kv; i < query.length; i++) { kv = query[i].split('=', 2); if (kv[0] == param) { field.value = kv[1]; return; } } } ...

unique database urlkey instead of id

I have a web application where users can login and read their messages. I use to use the ID primary key in database to access and deal with users message through the site such as (viewmessage/3) but I quickly realised I did not want to do that as it gave information to all users as to how many potential messages are stored in database. S...

Hiding file name with htaccess

My Perl app reveals the filename 'processing.cgi' in the addressbar when running on my hosting account, but on localhost it seems to work fine, that is, it doesn't reveal the filename 'processing.cgi'. Here's .htaccess thats exactly the same on both locations: AddHandler cgi-script .cgi Options +ExecCGI IndexIgnore * DirectoryIndex ...

Best practice for SEO urls(ASCII vs urlencoded UTF8)?

I'am building a website where I need to make an url form article title. First option is to convert all utf8 to ASCII. This can be done, because every language has some kind of Romanization available. But I don't know if, for example, for Chinese people romanticized versions of title makes any sense. Second options is to urlencode utf8 ti...

How do I change a hardcoded path to a dynamic one in javascript?

I'm using the jpicker color picker widget with my theme. Inside the js file I've had to hardcode the reference to the jpicker's images folder like so... images:{clientPath: '../wp-content/themes/MyThemeFolder/js/jPicker/images/', I would like to redo this to by more dynamic in case the user changes the name of the theme folder. Any i...

Creating a Facebook page and access it via shorturl

Hey Guys, so Ive created a Facebook page, no content as yet, really, i would like to know if it is possible and if so, how do I set it to be accessible from eg: www.facebook.com/mypage ? Thanks in advance ...

Form validation errors with parameters in a URL

For many of my forms, the user submits to a particular URL and if there are errors, the script redirects back to the original page with the errors in the URL. That page then reads the URL parameters and displays the errors to the user like so: http://localhost:8080/test/?signup_error_email=no_at_symbol Works great. But sometimes the...

Remove old parameter in URL (PHP)

I'm using PHP to create a pagination for a table. I'm using the following code to create the pagination link <a class='page-numbers' href='$href&pagenum=$i'>$i</a> With $href $href = $_SERVER['REQUEST_URI']; It works well, however, it messes with the address bar, adding each time a new pagenum parameter. So it becomes pagenum=1&pag...

Free script to open multiple URLs at once

Hi, I am looking for Free PHP script to open multiple URLs at once click. Please let me know if anyone find anywhere. Thanks in advance, Manim ...

How to get the value from the anchor href?

I have an anchor like <a href="/category/post/?type=234#content">link</a>. Using a jQuery is it possible to get the value of "type" in URL and assign as a value for a hidden input type in same page without refreshing the page. ...

How long an URL can Internet Explorer 9 take?

Past versions of Internet Explorer croaked on web addresses longer than 2,083 characters (see http://support.microsoft.com/kb/208427). Meanwhile, Firefox, Opera, and Safari can handle at least 80,000. Version 9 brings many improvements. Is URL length is one of them? ...