We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 25857
    • 23 Posts
    Oki I fix the issue in fact there a mistake in the default tpl of userList

    here the original code
    <a href="[~[*id*]~]?service=viewprofile&username=[+username+]">[+view.username+</a>


    here the correction
    <a href="[~[*id*]~]&service=viewprofile&username=[+username+]">[+view.username+</a>
    


    the ? is already present in the URL
      • 28033
      • 925 Posts
      IIRC, this had something to do w/ Friendly URL’s, or maybe your server’s config.

      I’ll have to check my template, but I think I’d have to include this in a "if WLPE isn’t working, check this document" text file, or something of that sort, since IIRC, for some servers, this "fix" would accidentally break the script.
        My Snippets
        -> PopUpChunk v1.0
        • 12684
        • 118 Posts
        I wish some one would figure this out. It is terribly annoying. I have searched through all 10 pages in the WLPE and there is nothing about this. I hate to bother Scotty, but perhaps he is the only one who could know.
          • 25857
          • 23 Posts
          I’ll have to check my template, but I think I’d have to include this in a "if WLPE isn’t working, check this document" text file, or something of that sort, since IIRC, for some servers, this "fix" would accidentally break the script.

          I don’t know why this fix will break the script because in the default tpl, the link is

          <a href="[~[*id*]~]?service=viewprofile&username=[+username+]">[+view.username+</a>


          that return a URL like that :
          <a href="http://www.website.com[b]?[/b]id=5[b]?[/b]service=viewprofile&username=toto">toto</a>


          so the variable ’id’ is unknow for the server.
            • 12684
            • 118 Posts
            ryumikage,

            Where exactly is this at? I can not find it in the file with a search.
              • 25857
              • 23 Posts
              Where exactly is this at? I can not find it in the file with a search.

              You have to check the documentation, and the default usersTpl http://docs.webloginpe.info/Default%20Forms/defaultUsersTpl.html.txt so you just have to create a new chunck user tpl with the correction. I think is the better way to fix that.
                • 12684
                • 118 Posts
                Ok below is the defaultUsersTpl

                [+wlpe.message+]
                <div class="wlpeUserPage">
                	<div class="wlpeUserPagePhoto">
                		<a href = "[~[*id*]~]?service=viewprofile&username=[+view.username+]">
                			<img src="[+view.photo+]" alt="[+view.photo+]" title="[+view.username+]" height="100" width="100" />
                		</a>
                		<a href = "[~[*id*]~]?service=viewprofile&username=[+view.username+]">
                			<p class="wlpeUserPageUsername">[+view.username+]</p>
                		</a>
                	</div>
                	<div class="wlpeUserPageUserContent">
                		<p class="wlpeUserPageAttrUsername">Username: [+view.username+]</p>
                		<p class="wlpeUserPageAttrAge">Age: [+view.age+]</p>
                		<p class="wlpeUserPageAttrLastLogin">Last Login: [+view.thislogin+]</p>
                		<blockquote class="wlpeUserPageAttrComment">[+view.comment+]</blockquote>
                	</div>
                </div>





                This below is NOT in the Tpl above


                Quote from: ryumikage at Jun 27, 2008, 09:57 AM

                <a href="[~[*id*]~]?service=viewprofile&username=[+username+]">[+view.username+</a>

                <a href="[~[*id*]~]&service=viewprofile&username=[+username+]">[+view.username+</a>