Recent content by Navo

  1. N

    XF 1.3 Link proxy and SEO

    1. I think its not if I look to the source. Also if you mouse is over a link you see the normal link not the proxy link. But I'm not for 100% sure of it. 2. Is even not needed on SSL websites. Links don't load in the page so the site is full SSL even the link is just http. Only if you load a...
  2. N

    Breadcrumb in Admin Template

    I use this in my controller. $breadCrumbs['roster'] = array( 'value' => 'Roster', 'href' => XenForo_Link::buildAdminLink('full:roster') ); You can copy paste this code more time that will add more links in your breadcrumbs like this...
  3. N

    HTML to autoconnect to gameserver or TS3?

    That is PHP. The page you link looks like: <?php /* Check if run is in the link so your link is like filename.php?run=ts3 */ if(isset($_GET['run'])) { /* Check the value from run is the same as ts3 */ if($_GET['run'] == 'ts3') { /* Conntect user with ts server. This server is...
  4. N

    HTML to autoconnect to gameserver or TS3?

    Sorry I don't know what you mean. Do you have a example?
  5. N

    HTML to autoconnect to gameserver or TS3?

    Yes. If the user click on the link the internet browser wil popup an window that ask if the user allow to run a extern program. If the user click on oké it wil start the program and connect the user to the server. But if the user don't have teamspeak installed the link for teamspeak wil not...
  6. N

    HTML to autoconnect to gameserver or TS3?

    For ts3 is it <a href="ts3server://TEAMSPEAKIP?port=PORTNR">Join TS</a> or <a href="ts3server://TEAMSPEAKIP:PORTNR">Join TS</a> or if you teamspeak server use the default port 9987 you can also use: <a href="ts3server://TEAMSPEAKIP">Join TS</a> For teamspeak your can use some parameters to add...
Top Bottom