91
92
Feature Discussion / Re: IPv6 stil something to do?
Last post by ahrasis -The idea is to warn user from that ip whrn post or put his post on hold / for aproval or something, so that spammers may be educated or something? I am really not sure what I am trying to say.

93
Support / Re: "Referring URL" Revisited
Last post by Steeley -Not sure what hosting you are using, but most have a redirect setting of non www to www or something like that in their control panel.
That old post was for Nginx which is the webserver we use, and there is a config option to redirect bla.com to www.bla.com
Aye, thanks for the quick reply, Spuds ....
Change the URL in the address bar to https://bla.com/forum/ and it's all good.
I'm hoping there's a way to make EA happy with either url..
Never mind, I figured out what you were telling me, I found the server redirect configuration and set a server redirect on that page.
No matter how hard I try, I learn something new every day. Thanks muchly..
94
Theme development / Re: How Can I Show Recent Posts Below Site News on Index Page
Last post by Spuds -
95
Support / Re: "Referring URL" Revisited
Last post by Spuds -That old post was for Nginx which is the webserver we use, and there is a config option to redirect bla.com to www.bla.com
96
Support / "Referring URL" Revisited
Last post by Steeley -Its something @TE needs to tweak in the site config file, in the server section, along the lines ofCode: [Select]server_name elkarte.net;
return 301 $scheme://www.elkarte.net$request_uri;
I have just encountered that as well - makes all the difference in the world if the "referring url" is https://siteurl.com vs. https://www.siteurl.com.
Is the server_name singular exclusive or can it be configured for either/or?
I have a bunch of old guys (and I resemble that remark) who barely know what a bookmark is, much less how to change it if they have the wrong URL listed (and several do). I would much rather have the login handle either case than trying to teach my lazy old dogs "new tricks".
97
Theme development / Re: How Can I Show Recent Posts Below Site News on Index Page
Last post by hitokiri -The collapse / expand icon will not work with this, you would have to add your own JS based on the JS function in the _below function, just renaming some things.The second hack worked fine and is good enough for me even without the collapse working (although if you could help with this I wouldn't mind).
Really appreciate your help. thanks a lot for your time.
Yes. Portal can do that too. Any portal would do but I 'd prefer Simple Portal.Thanks I will check it out.
98
Feature Discussion / Re: IPv6 stil something to do?
Last post by Spuds -As for the bans, I disapprove of banning by IP in general, or if you must it should be for like a day or two. What was done will work of course but I'm uneasy about V6 bans as I'm not sure how some of those blocks work.
99
Theme development / Re: How Can I Show Recent Posts Below Site News on Index Page
Last post by Spuds -Code: [Select]
function template_info_center_above()The collapse / expand icon will not work with this, you would have to add your own JS based on the JS function in the _below function, just renaming some things.
{
global $context, $txt;
if (($key = array_search('recent_posts', $context['info_center_callbacks'])) !== false)
{
unset($context['info_center_callbacks'][$key]);
// Here's where the "Info Center" starts...
echo '
<aside id="info_center_top" class="forum_category">
<h2 class="category_header panel_toggle">
<i id="upshrink_ic2" class="hide chevricon i-chevron-', empty($context['minmax_preferences']['info2']) ? 'up' : 'down', '" title="', $txt['hide'], '"></i>
<a href="#" id="upshrink_link2">', sprintf($txt['info_center_title'], $context['forum_name_html_safe']), '</a>
</h2>
<ul id="upshrinkHeaderIC2" class="category_boards', empty($context['minmax_preferences']['info2']) ? '' : ' hide', '">';
call_template_callbacks('ic', array(0 => 'recent_posts'));
echo '
</ul>
</aside>';
}
}
100
Feature Discussion / Re: IPv6 stil something to do?
Last post by emanuele -We are at the same level then. xD
I had a look at:
https://github.com/SimpleMachines/SMF2.1/pull/3373
but still my head hurts a bit by that.