<?xml version='1.0' encoding='UTF-8'?>
<rss version='2.0'>
	<channel>
		<title>cotonti.com : Login enhancement</title>
		<link>https://www.cotonti.com</link>
		<description>Son konu mesajları</description>
		<generator>Cotonti</generator>
		<language>en</language>
		<pubDate>Thu, 16 Apr 2026 11:19:17 -0000</pubDate>

		<item>
			<title>Kilandor</title>
			<description><![CDATA[Yea, we will need our own default skin ourselves. But for now, its best for most uf os to not fool with it and work with what we got.]]></description>
			<pubDate>Paz, 14 Eyl 2008 06:25:56 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/tr/forums?m=posts&q=431&d=0#post1036]]></link>
		</item>
		<item>
			<title>oc</title>
			<description><![CDATA[I actually was talking what you thought but after a while, It came to me unnecessary.<br />
<br />
To be honest, I feel like a little bit a stupid :) But more important, is this feature should be in SEDITIO? I believe it is, and actually this brings me next point: A new skin. Ok, this one is light cool and something but I can't see most things.]]></description>
			<pubDate>Paz, 14 Eyl 2008 04:16:41 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/tr/forums?m=posts&q=431&d=0#post1034]]></link>
		</item>
		<item>
			<title>Kilandor</title>
			<description><![CDATA[Ah yea sorry. I thought in your talking here you was talking about something different.<br />
<br />
There's no need for a a plugin for that, it can plopped straight into the template.]]></description>
			<pubDate>Paz, 14 Eyl 2008 03:51:17 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/tr/forums?m=posts&q=431&d=0#post1031]]></link>
		</item>
		<item>
			<title>oc</title>
			<description><![CDATA[I commited a new revision. But I see it is done here on Cotonti.com already...]]></description>
			<pubDate>Cmt, 13 Eyl 2008 22:11:41 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/tr/forums?m=posts&q=431&d=0#post1029]]></link>
		</item>
		<item>
			<title>oc</title>
			<description><![CDATA[Actually after I thought a bit, I found that header login would be much more simpler and useful. And I can do that with zero session, only JS.<br />
<br />
I'll do it instead talking and let you to decide.]]></description>
			<pubDate>Cmt, 13 Eyl 2008 17:43:16 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/tr/forums?m=posts&q=431&d=0#post1028]]></link>
		</item>
		<item>
			<title>Kilandor</title>
			<description><![CDATA[Ah I see what your getting at, it might take a few changes to do something like that. I just did a similar concept with a project I just finished for someone for a admin backend. On any page, it loads login.php if not an auth user, without refreshing them, it loads that instead of the page it should.<br />
<br />
The much more simpler solution, would be to have it base64 the URI, and redirect you to login, then when you login, it returns you to where you was.<br />
<br />
There is a rough implementation for this in a few places in sed but not done very well or complete.<br />
<br />
Fill out a ticket for it as an enhancment.]]></description>
			<pubDate>Cmt, 13 Eyl 2008 17:24:30 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/tr/forums?m=posts&q=431&d=0#post1027]]></link>
		</item>
		<item>
			<title>oc</title>
			<description><![CDATA[About the system:<br />
<br />
No redirect if login needed. I mean if code is:<br />
<em>users.profile.php<br />
<div class="highlight"><pre class="php">
if ($usr&#091;'id'&#093;&lt;1)
	{
	header(&quot;Location: &quot; . SED_ABSOLUTE_URL . &quot;message.php?msg=100&amp;&quot;.$sys&#091;'url_redirect'&#093;);
	exit;
	}
</pre></div>
<br />
new code is something like:<br />
<div class="highlight"><pre class="php">
if ($usr&#091;'id'&#093;&lt;1)
	{
	require(&quot;login.php&quot;);
	exit;
	}
</pre></div>
<br />
actually this is not very necessary, but i believe a header login (not plugin, optional feature) and cleaning up the unnecessary stuff from the redirecting function is necessary.]]></description>
			<pubDate>Cmt, 13 Eyl 2008 03:27:36 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/tr/forums?m=posts&q=431&d=0#post1025]]></link>
		</item>
		<item>
			<title>Kilandor</title>
			<description><![CDATA[<blockquote><a href="https://www.cotonti.com/forums.php?m=posts&amp;amp;p=1020#1020">#</a> <strong>oc :</strong>
I was wondering about what is base64 decoding for urls to redirect.<br />
</blockquote>
I totally agree, this needs to happen, that's been one thing that's always bugged me.<br />
<br />
<blockquote><a href="https://www.cotonti.com/forums.php?m=posts&amp;amp;p=1020#1020">#</a> <strong>oc :</strong>
Also, is this login system enough? I mean, vbulletin style would be nice.<br />
</blockquote>
About the login system, Can you be a bit more specific, on what your referring too?<br />
<br />
<blockquote><a href="https://www.cotonti.com/forums.php?m=posts&amp;amp;p=1020#1020">#</a> <strong>oc :</strong>
BTW, would it be too much if there is a user name and password input in header.tpl ?<br />
</blockquote>
Yea, I just haven't got around to doing it, i've been wanting to as well]]></description>
			<pubDate>Cmt, 13 Eyl 2008 00:23:48 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/tr/forums?m=posts&q=431&d=0#post1021]]></link>
		</item>
		<item>
			<title>oc</title>
			<description><![CDATA[Hi,<br />
<br />
I was wondering about what is base64 decoding for urls to redirect.<br />
<br />
Also, is this login system enough? I mean, vbulletin style would be nice.<br />
<br />
BTW, would it be too much if there is a user name and password input in header.tpl ?]]></description>
			<pubDate>Cum, 12 Eyl 2008 22:15:54 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/tr/forums?m=posts&q=431&d=0#post1020]]></link>
		</item>
	</channel>
</rss>