Search Unity

[Went Away] <url> malformed

Discussion in 'Editor & General Support' started by WiseGuy, Nov 16, 2009.

  1. WiseGuy

    WiseGuy

    Joined:
    Mar 1, 2009
    Posts:
    33
    Hi

    what am i missing here ?

    Code (csharp):
    1. var url = "http://www.google.com/";
    2.  
    3. function Start()
    4. {
    5.  
    6.     var www = new WWW(url);
    7.     yield www;
    8.     Debug.Log([url]www.data[/url]);
    9. }
    10.  
    returns: You are trying to load data from a www stream which had the following error when downloading.
    <url> malformed

    it even does thesame if i use the example in the WWW docs..


    [Solved ?]
    After Loading Another Project its went away...
     
  2. joelmgallant

    joelmgallant

    Joined:
    Mar 9, 2009
    Posts:
    113
    I'm actually having this problem with a current project as well, which is critical since it's an automatic updater that can't be modified at this point.

    The URL string is valid (being read from PlayerPrefs), but the output logs show a malformed URL error.

    Anyone else have any experience with this situation?
     
  3. DrewLooksRound

    DrewLooksRound

    Joined:
    Oct 24, 2012
    Posts:
    1