• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

[8WayRun.Com] XenPorta (Portal & Lite Wiki)

Status
Not open for further replies.
How server intensive would that be for a site that can already at times push the server to it's limits?

I always thought that pushing every user through htaccess would cause problems, is that wrong?
 
I would be wanting it as the home page to replace what I have as the front page of edcforums.com.
Thats what i'm trying to do as well.

Having this awesome mod run as the Home Page at www.site.com has been discussed alot in this thread.
Read the discussion starting here.

It would be nice if the xenforo dev team could make the Home Tab "a real Tab" in beta3, so Jaxel could accomplish what we want.
 
I just noticed there is a small bug at the portal page if you have a (relatively) big avatar and a small message, the avatar doesn't fit inside the box and just goes past it. I'm not completely sure whether this is a bug with your mod or one from XenForo, but since it happened there I thought I might as well post it.

avabug.webp

Also, I'm having some troubles with the whole template system and how it's used, I read every post to understand it some more and it seems like a nice system, but maybe some tutorial for people who never used something like this before would be nice.
 
I've been toying around with it a bit, and I was trying to find out how to use it for automatic url's, for example.

Taking this as a template:
Code:
<td class="primaryContent test"><a href="{{{link}}}">Click here</a></td>

and this as a page:
Code:
| link=http://www.abc.com

This seems to work, as it gets converted. However, instead of just taking the link I added it uses the root of where the website is installed and adds the rest behind it.. On this website, that would be http://www.xenfore.com/<a href= etc.

This is quite a bit of strange behavior, in my opinion. Is there any way of turning this of, circumvent it, or any other trick to use the absolute url I inserted?

Thanks. :)
 
Has anyone experienced any issues with the new version of XenForo and this mod?

I'm thinking of rewriting the loader...
 
I've been toying around with it a bit, and I was trying to find out how to use it for automatic url's, for example.

Taking this as a template:
Code:
<td class="primaryContent test"><a href="{{{link}}}">Click here</a></td>

and this as a page:
Code:
| link=http://www.abc.com

This seems to work, as it gets converted. However, instead of just taking the link I added it uses the root of where the website is installed and adds the rest behind it.. On this website, that would be http://www.xenfore.com/<a href= etc.

This is quite a bit of strange behavior, in my opinion. Is there any way of turning this of, circumvent it, or any other trick to use the absolute url I inserted?

Thanks. :)
It appears this issue happens because of the autolinker BB code built into XenForo. I recommend creating the templates as follows:

template:
Code:
<td class="primaryContent test">{{{link}}}</td>

page:
Code:
| link=[url=http://www.abc.com]Click Here[/url]
 
Status
Not open for further replies.
Back
Top Bottom