Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Your website is generating error if any user input item is starting with either <code>http://</code> or <code>https://</code> .</p> <p>When I try with a link starting with <code>http://</code> I got a 406 Not Acceptable :</p> <p><a href="http://onkore.us/?blah=http://www.google.com" rel="nofollow noreferrer">http://onkore.us/?blah=http://www.google.com</a></p> <p>It is fine when I try this :</p> <p><a href="http://onkore.us/?blah=www.google.com" rel="nofollow noreferrer">http://onkore.us/?blah=www.google.com</a></p> <p>You've mentioned that you are having problem if it is more than one link , but when I try with two links like below , it is being fine :</p> <p><a href="http://onkore.us/?blah1=www.google.com&amp;blah2=www.google.com" rel="nofollow noreferrer">http://onkore.us/?blah1=www.google.com&amp;blah2=www.google.com</a></p> <p>However either you could find and fix the issue which might be specific to your server configuration or you could try a work around .</p> <p>I am not sure if this workaround helps , but considering that <code>http://</code> or <code>https://</code> are creating the issue , what I am thinking is to remove the <code>http://</code> and <code>https://</code> from user input . First you might want to try changing <code>&lt;input type="url"</code> to <code>&lt;input type="text"</code> so that URL format is not enforced . Then you could use Javascript to remove occurrences of <code>http://</code> and <code>https://</code> from the user input in the form before submitting to server . Additionally you could remove these from the data before populating the form values .</p> <p>Hope this helps .</p> <p>Regex : <a href="https://stackoverflow.com/questions/8206269/javascript-how-to-remove-http-from-url">How to remove &#39;http://&#39; from a URL in JavaScript</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload