Questions tagged [external-url]

Anything related to external Uniform Resource Locators (URLS), i.e. URLs pointing to resources external to the website where the URLs appears.

Anything related to external Uniform Resource Locators (URLS), i.e. URLs pointing to resources external to the website where the URLs appears.

48 questions
36
votes
1 answer

Redirect to external URL in JSF

I've been dealing with a problem with JSF, when it comes to redirect to pages inside my app it works just fine, but I haven't been able to redirect to external URL can some one guide me on this?
Necronet
  • 6,398
  • 7
  • 46
  • 85
25
votes
2 answers

How to redirect to external URL in Django?

I think this should be easy, but I cannot figure it out. I am trying to write an opt-out view. I am receiving a get request. Through urls.py, I render my opt-out view. In this view, I save some parameters for the user in the database and then I want…
1man
  • 3,864
  • 5
  • 29
  • 51
9
votes
1 answer

How to link external CSS resource with JSF h:outputStylesheet?

I was wondering if I can use to link CSS from an external resources. I want to link the Yahoo Grids. Using the following code, I got a RES_NOT_FOUND:
Sydney
  • 10,908
  • 17
  • 82
  • 129
7
votes
1 answer

Linking to external URL with different domain from within an angularJS partial

All I am trying to do is include an anchor tag inside the html of a partial that links to an external site. Were this standard html, the code would simply be: google As simple as this is, I cannot…
taoteg
  • 153
  • 1
  • 1
  • 11
2
votes
1 answer

How to Block External Static Resource During Page Load with WP

I am doing a page speed test and there is a specific domain that keeps causing lag time in page speed. I do not think there is any use for these external files so I would like to omit them during the page load when a user visits the site. I found…
Rookie Recruits
  • 93
  • 2
  • 17
2
votes
1 answer

return url cordova app

I want to go to a external page to do some actions and the it has to redirect to the page I indicate in the returnUrl. It works fine in the browser, but when I try it in the device it crashes. window.location.href = "http://" + publicKey +…
Asier GR
  • 101
  • 1
  • 9
2
votes
0 answers

Linking a class member's type to an external URL in doxygen

I'm using doxygen to write the documentation for a C# codebase. Some of the classes I'm working with include member variables whose types are external to the code, and these external types already have extensive documentation in the form of web…
jmpp
  • 109
  • 7
1
vote
0 answers

Reactjs post form data to external payment page URL

Hi anybody know how to post reactjs form data to external URL like this.
1
vote
2 answers

ionic3 open external url without address bar and toolbar and close button

My app needs a login page from external url. The login logic that I thought is : Steps Open external url when ionic is launched Once user logged in, move back to internal app using deep link (ex : myapp://main) I tested step 2 which is deep link.…
Téwa
  • 824
  • 2
  • 11
  • 19
1
vote
0 answers

Save Excel file from external URL in gmail message using Apps script

I am new to Apps Script coding. I receive an external link in my gmail messages from a particular website every week, that allows me to download an excel data extract (xlsx file). Initially when i click the link, it redirects to an external website…
1
vote
1 answer

htaccess redirect subdomain AND subdirectory to external url

I want redirect: http://cbpq.luisgustavoventura.com/ AND http://luisgustavoventura.com/cbpq/ to: http://cbpq.org.br/ i tried: RewriteCond %{HTTP_HOST} ^(cbpq\.luisgustavoventura\.com|luisgustavoventura\.com/cbpq)$ [NC] RewriteRule ^(.*)…
LGVentura
  • 1,499
  • 1
  • 11
  • 17
1
vote
0 answers

Merge .png images from external url

I have two .php files, which generates two different images. modules/generatePNG/generatePNG.php?text=Hello1 modules/generateQR/_QR_GENERATOR.php?text=Hello2 I want to merge these generated images without saving (download) files. Any idea how to…
Abduhafiz
  • 2,711
  • 3
  • 32
  • 44
1
vote
0 answers

External URL to load inside the frame

I have an issue with my android app not loading the correct content. Here is my code: @Override public void onCreate(Bundle savedInstanceState) { // Loading your HTML as per PhoneGap tutorial super.onCreate(savedInstanceState); …
1
vote
4 answers

PHP - Proper Protocol for storing URLs in $_GET

What is the proper protocol for storing other websites URL's in your own php page's URL? For example if I wanted to store google it would be easy. MySite.com/test.php?url=http://www.google.com But what about a URL more complex than…
Albert Renshaw
  • 15,644
  • 17
  • 92
  • 173
0
votes
1 answer

Phonegap: iFrames and external URLs

I am in the process of creating an iOS app with Phonegap and jQuery, however, I am running into issues trying to allow both iFrames (to load normally) and external URLs (to open in Safari). I decided to choose the path of using iframes as I was not…
1
2 3 4