<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[UserSpice - UserSpice 5 - Roadmapping the Future]]></title>
		<link>https://userspice.com/forums/</link>
		<description><![CDATA[UserSpice - https://userspice.com/forums]]></description>
		<pubDate>Tue, 14 Apr 2026 15:30:38 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Event Calendar]]></title>
			<link>https://userspice.com/forums/showthread.php?tid=1445</link>
			<pubDate>Thu, 18 Apr 2019 10:12:04 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://userspice.com/forums/member.php?action=profile&uid=154">LBC</a>]]></dc:creator>
			<guid isPermaLink="false">https://userspice.com/forums/showthread.php?tid=1445</guid>
			<description><![CDATA[I would love to see an event calendar added to US in the future <img src="https://userspice.com/forums/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></description>
			<content:encoded><![CDATA[I would love to see an event calendar added to US in the future <img src="https://userspice.com/forums/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[UserSpice 5 Folder Structure]]></title>
			<link>https://userspice.com/forums/showthread.php?tid=1289</link>
			<pubDate>Sat, 05 Jan 2019 12:53:03 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://userspice.com/forums/member.php?action=profile&uid=6259">Bogdan</a>]]></dc:creator>
			<guid isPermaLink="false">https://userspice.com/forums/showthread.php?tid=1289</guid>
			<description><![CDATA[<span style="font-weight: bold;" class="mycode_b">Folders Structure</span><br />
<br />
Now we have only two root folders - <span style="font-weight: bold;" class="mycode_b">users </span>and <span style="font-weight: bold;" class="mycode_b">usersc</span>. The first is core, and the second is users customized. If we want to change something we need to copy files from core to custom folder and change it. I think, such solution looks rough. We need to implement MVC pattern.<br />
<br />
In well-coded systems developer doesn't need to change core files. He using existing functions on front-end to generate static content and hooks to change something in admin panel. That's why I think, that WordPress folders structure is perfect (wp-admin and wp-includes is a core folders that never edit because it always updates, and wp-content - for a user's themes, plugins and content).<br />
<br />
How I see UserSpice folders structure:<br />
▣ <span style="font-weight: bold;" class="mycode_b">core </span>- CMS core files (api, cron, helpers ...).<br />
▣ <span style="font-weight: bold;" class="mycode_b">admin </span>- back-end files needed for displaying admin panel.<br />
▣ <span style="font-weight: bold;" class="mycode_b">plugins </span>- folder for plugins (dbman, demo, fileman ...).<br />
▣ <span style="font-weight: bold;" class="mycode_b">themes </span>- main site templates (bs4, default, light ...).<br />
▣ <span style="font-weight: bold;" class="mycode_b">uploads </span>- folder for user's content (avatars, images and others).<br />
<br />
This structure is approximate, but it best description of separation core files from user edit content. If new update exist, it rewrite core folder, but don't touch for example user's template or plugin.<br />
<br />
With such folders structure we able to create own folders, for example pages and get links like mysite.com/pages/myfile.php. The file content may look like this:<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php&nbsp;theme_include</span><span style="color: #007700">(</span><span style="color: #DD0000">'header'</span><span style="color: #007700">);&nbsp;</span><span style="color: #0000BB">?&gt;<br /></span><br />&nbsp;&nbsp;&nbsp;&nbsp;&lt;section&nbsp;class="content&nbsp;wrap"&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&nbsp;class="container"&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&nbsp;class="row"&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&nbsp;class="col-md-12"&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;h1&gt;<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">page_title</span><span style="color: #007700">();&nbsp;</span><span style="color: #0000BB">?&gt;</span>&lt;/h1&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">page_content</span><span style="color: #007700">();&nbsp;</span><span style="color: #0000BB">?&gt;<br /></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br /> &nbsp; &nbsp; &nbsp; &nbsp;&lt;/section&gt;<br /><br /><span style="color: #0000BB">&lt;?php&nbsp;theme_include</span><span style="color: #007700">(</span><span style="color: #DD0000">'footer'</span><span style="color: #007700">);&nbsp;</span><span style="color: #0000BB">?&gt;</span></code></div></div></div><br />
We just include header and footer from theme, and main code is between this includes (code in example taken from Anchor CMS page.php file).<br />
<br />
If someone has ideas about how folders structure must look, please comment.]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;" class="mycode_b">Folders Structure</span><br />
<br />
Now we have only two root folders - <span style="font-weight: bold;" class="mycode_b">users </span>and <span style="font-weight: bold;" class="mycode_b">usersc</span>. The first is core, and the second is users customized. If we want to change something we need to copy files from core to custom folder and change it. I think, such solution looks rough. We need to implement MVC pattern.<br />
<br />
In well-coded systems developer doesn't need to change core files. He using existing functions on front-end to generate static content and hooks to change something in admin panel. That's why I think, that WordPress folders structure is perfect (wp-admin and wp-includes is a core folders that never edit because it always updates, and wp-content - for a user's themes, plugins and content).<br />
<br />
How I see UserSpice folders structure:<br />
▣ <span style="font-weight: bold;" class="mycode_b">core </span>- CMS core files (api, cron, helpers ...).<br />
▣ <span style="font-weight: bold;" class="mycode_b">admin </span>- back-end files needed for displaying admin panel.<br />
▣ <span style="font-weight: bold;" class="mycode_b">plugins </span>- folder for plugins (dbman, demo, fileman ...).<br />
▣ <span style="font-weight: bold;" class="mycode_b">themes </span>- main site templates (bs4, default, light ...).<br />
▣ <span style="font-weight: bold;" class="mycode_b">uploads </span>- folder for user's content (avatars, images and others).<br />
<br />
This structure is approximate, but it best description of separation core files from user edit content. If new update exist, it rewrite core folder, but don't touch for example user's template or plugin.<br />
<br />
With such folders structure we able to create own folders, for example pages and get links like mysite.com/pages/myfile.php. The file content may look like this:<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php&nbsp;theme_include</span><span style="color: #007700">(</span><span style="color: #DD0000">'header'</span><span style="color: #007700">);&nbsp;</span><span style="color: #0000BB">?&gt;<br /></span><br />&nbsp;&nbsp;&nbsp;&nbsp;&lt;section&nbsp;class="content&nbsp;wrap"&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&nbsp;class="container"&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&nbsp;class="row"&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&nbsp;class="col-md-12"&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;h1&gt;<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">page_title</span><span style="color: #007700">();&nbsp;</span><span style="color: #0000BB">?&gt;</span>&lt;/h1&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">page_content</span><span style="color: #007700">();&nbsp;</span><span style="color: #0000BB">?&gt;<br /></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;<br /> &nbsp; &nbsp; &nbsp; &nbsp;&lt;/section&gt;<br /><br /><span style="color: #0000BB">&lt;?php&nbsp;theme_include</span><span style="color: #007700">(</span><span style="color: #DD0000">'footer'</span><span style="color: #007700">);&nbsp;</span><span style="color: #0000BB">?&gt;</span></code></div></div></div><br />
We just include header and footer from theme, and main code is between this includes (code in example taken from Anchor CMS page.php file).<br />
<br />
If someone has ideas about how folders structure must look, please comment.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[More modular]]></title>
			<link>https://userspice.com/forums/showthread.php?tid=1167</link>
			<pubDate>Tue, 09 Oct 2018 21:42:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://userspice.com/forums/member.php?action=profile&uid=14884">jtullett</a>]]></dc:creator>
			<guid isPermaLink="false">https://userspice.com/forums/showthread.php?tid=1167</guid>
			<description><![CDATA[I've only been using US for a few days (and liking it a LOT), so this may be way off base especially if a lot of it is already available/in the works, but my early observations are that UserSpice a) does a great job of covering the bases it says it will, and b) does get in the way a bit.<br />
<br />
What I mean is, there are quite a lot of areas where I feel I HAVE to edit files in /users or /usersc, even though that's really not a good idea. <br />
<br />
(Aside: why two directories anyway? I'd rather see all the US core stuff in one folder, and everything a user is likely to edit in another, but even then I'd rather they be under a single folder because I'm a neatness freak <img src="https://userspice.com/forums/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />)<br />
<br />
For example, I want to disable the ability of site visitors to list all subscribers, but the only way to do that is to hack it out of the php. This isn't really a criticism of US since it's not hard to make those edits directly, but if there were a more cleanly defined module approach, it wouldn't need tweaking at code level, and it would make extensibility easier. There are other small examples - again, nothing serious, but it feels like it's due for a bit of a cleanup.<br />
<br />
For another - US outputs the entire header and then the start of the body, in one go. I may have overlooked it, but I can't find a way for me to add headers, js/css includes, and so on, without directly editing header.php. I'd really like to be able to affect that directly from within files, because I don't always want the includes. Maybe provide a US equivalent of header() so pages can inject header material before the page renders?<br />
<br />
I'd also like to be able to do multi-project management, with users and pages grouped per project, and role-based management including project-limited access. And while I'm thinking about that, I'd also like to be able to include user template files, on a per-project basis. I use global php classes, and I'd quite like to be able to say "For all files in this project, include that file." You may have to resolve issues like conflicting versions of jquery though.<br />
<br />
Lastly - the video of "how to do a minimal use" Honey Badger site looks out of date. Far as I can see, all you need to invoke US is this:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>require_once 'users/init.php';<br />
if (!securePage(&#36;_SERVER['PHP_SELF'])){die();}</code></div></div><br />
Which is pretty darned lean, and I really like that minimalist approach. I have to ask, though, why isn't the second line just moved to init.php? Given that you always want it to be present, it kinda looks like the single require_once line should be all you really need. (One line, for a complete user management backend? That's neat.)<br />
<br />
All of this is fairly minor though. I'm liking how US (mostly) takes care of the messy user management stuff and lets me focus on rolling out pages. And that's really the win for me, in a nutshell; just let me focus on my stuff, and take care of your stuff. So a non-function suggestion would be to focus some of the documentation on exactly that. The docs are good from a technical standpoint, but could maybe do with some more focus on the use-case stuff.<br />
<br />
Thanks for a great project. Glad I found it!]]></description>
			<content:encoded><![CDATA[I've only been using US for a few days (and liking it a LOT), so this may be way off base especially if a lot of it is already available/in the works, but my early observations are that UserSpice a) does a great job of covering the bases it says it will, and b) does get in the way a bit.<br />
<br />
What I mean is, there are quite a lot of areas where I feel I HAVE to edit files in /users or /usersc, even though that's really not a good idea. <br />
<br />
(Aside: why two directories anyway? I'd rather see all the US core stuff in one folder, and everything a user is likely to edit in another, but even then I'd rather they be under a single folder because I'm a neatness freak <img src="https://userspice.com/forums/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />)<br />
<br />
For example, I want to disable the ability of site visitors to list all subscribers, but the only way to do that is to hack it out of the php. This isn't really a criticism of US since it's not hard to make those edits directly, but if there were a more cleanly defined module approach, it wouldn't need tweaking at code level, and it would make extensibility easier. There are other small examples - again, nothing serious, but it feels like it's due for a bit of a cleanup.<br />
<br />
For another - US outputs the entire header and then the start of the body, in one go. I may have overlooked it, but I can't find a way for me to add headers, js/css includes, and so on, without directly editing header.php. I'd really like to be able to affect that directly from within files, because I don't always want the includes. Maybe provide a US equivalent of header() so pages can inject header material before the page renders?<br />
<br />
I'd also like to be able to do multi-project management, with users and pages grouped per project, and role-based management including project-limited access. And while I'm thinking about that, I'd also like to be able to include user template files, on a per-project basis. I use global php classes, and I'd quite like to be able to say "For all files in this project, include that file." You may have to resolve issues like conflicting versions of jquery though.<br />
<br />
Lastly - the video of "how to do a minimal use" Honey Badger site looks out of date. Far as I can see, all you need to invoke US is this:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>require_once 'users/init.php';<br />
if (!securePage(&#36;_SERVER['PHP_SELF'])){die();}</code></div></div><br />
Which is pretty darned lean, and I really like that minimalist approach. I have to ask, though, why isn't the second line just moved to init.php? Given that you always want it to be present, it kinda looks like the single require_once line should be all you really need. (One line, for a complete user management backend? That's neat.)<br />
<br />
All of this is fairly minor though. I'm liking how US (mostly) takes care of the messy user management stuff and lets me focus on rolling out pages. And that's really the win for me, in a nutshell; just let me focus on my stuff, and take care of your stuff. So a non-function suggestion would be to focus some of the documentation on exactly that. The docs are good from a technical standpoint, but could maybe do with some more focus on the use-case stuff.<br />
<br />
Thanks for a great project. Glad I found it!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[UserSpice should be simpler for beginners]]></title>
			<link>https://userspice.com/forums/showthread.php?tid=1156</link>
			<pubDate>Sun, 30 Sep 2018 18:31:54 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://userspice.com/forums/member.php?action=profile&uid=14878">bodhi smaran</a>]]></dc:creator>
			<guid isPermaLink="false">https://userspice.com/forums/showthread.php?tid=1156</guid>
			<description><![CDATA[UserSpice is a great software and I imagine how much effort and attention has already been applied in its development. <br />
You can see that it was done by dedicated people that loves collaborating with the community.<br />
<br />
But I imagine that its initial use could be simplified.<br />
<br />
The videos explain how to change php programs to direct the login result to your application page.<br />
A lot of changes.<br />
<br />
I think there should be some configuration file where you put the name of your home page that will be loaded after a successful login. <br />
Just this: You change the configuration file and do not need to change the UserSpyce programs.<br />
<br />
I hope to be collaborating for this great tool with my suggestion.<br />
<br />
Best regards<br />
<br />
Smaran]]></description>
			<content:encoded><![CDATA[UserSpice is a great software and I imagine how much effort and attention has already been applied in its development. <br />
You can see that it was done by dedicated people that loves collaborating with the community.<br />
<br />
But I imagine that its initial use could be simplified.<br />
<br />
The videos explain how to change php programs to direct the login result to your application page.<br />
A lot of changes.<br />
<br />
I think there should be some configuration file where you put the name of your home page that will be loaded after a successful login. <br />
Just this: You change the configuration file and do not need to change the UserSpyce programs.<br />
<br />
I hope to be collaborating for this great tool with my suggestion.<br />
<br />
Best regards<br />
<br />
Smaran]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Subscription Integration]]></title>
			<link>https://userspice.com/forums/showthread.php?tid=1152</link>
			<pubDate>Mon, 24 Sep 2018 18:37:30 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://userspice.com/forums/member.php?action=profile&uid=14873">nschoultz</a>]]></dc:creator>
			<guid isPermaLink="false">https://userspice.com/forums/showthread.php?tid=1152</guid>
			<description><![CDATA[Hopefully the right place (And I have not missed a duplicate thread).<br />
<br />
I have just started using UserSpice and love the simplicity of it!! What I would love to see in a future version is the ability for a user to purchase credits via Stripe or PayPal that can be used to upgrade their membership on the site.<br />
<br />
I was digging through the forums and did notice there was a user who created SubSpice which tried to achieve this. I need to play around with that package more, however it would be great to see it as part of the Userspice Core.<br />
<br />
Keep up the good work guys. Really loving UserSpice for the little time I have been using it so far <img src="https://userspice.com/forums/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
Nathan]]></description>
			<content:encoded><![CDATA[Hopefully the right place (And I have not missed a duplicate thread).<br />
<br />
I have just started using UserSpice and love the simplicity of it!! What I would love to see in a future version is the ability for a user to purchase credits via Stripe or PayPal that can be used to upgrade their membership on the site.<br />
<br />
I was digging through the forums and did notice there was a user who created SubSpice which tried to achieve this. I need to play around with that package more, however it would be great to see it as part of the Userspice Core.<br />
<br />
Keep up the good work guys. Really loving UserSpice for the little time I have been using it so far <img src="https://userspice.com/forums/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
Nathan]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Userspice framework7]]></title>
			<link>https://userspice.com/forums/showthread.php?tid=1046</link>
			<pubDate>Sun, 22 Apr 2018 15:19:36 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://userspice.com/forums/member.php?action=profile&uid=1203">nash81</a>]]></dc:creator>
			<guid isPermaLink="false">https://userspice.com/forums/showthread.php?tid=1046</guid>
			<description><![CDATA[Hi<br />
<br />
Just had a thought since more and more of us are building applications to service mobile based users, why not think of a release that uses framework7 instead of bootstrap.<br />
<br />
This is just a open thought, dont kill me for it.<br />
<br />
Cheers<br />
Nash]]></description>
			<content:encoded><![CDATA[Hi<br />
<br />
Just had a thought since more and more of us are building applications to service mobile based users, why not think of a release that uses framework7 instead of bootstrap.<br />
<br />
This is just a open thought, dont kill me for it.<br />
<br />
Cheers<br />
Nash]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Routing (User-friendly URLs)]]></title>
			<link>https://userspice.com/forums/showthread.php?tid=1037</link>
			<pubDate>Mon, 16 Apr 2018 07:39:20 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://userspice.com/forums/member.php?action=profile&uid=6259">Bogdan</a>]]></dc:creator>
			<guid isPermaLink="false">https://userspice.com/forums/showthread.php?tid=1037</guid>
			<description><![CDATA[It would be nice, if you release routing system in UserSpice 5, so every new page has own user-friendly URL stored in database. Something like mysite.com/login or mysite.com/admin/users/new.]]></description>
			<content:encoded><![CDATA[It would be nice, if you release routing system in UserSpice 5, so every new page has own user-friendly URL stored in database. Something like mysite.com/login or mysite.com/admin/users/new.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Template Engine (Theming)]]></title>
			<link>https://userspice.com/forums/showthread.php?tid=1036</link>
			<pubDate>Mon, 16 Apr 2018 07:25:31 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://userspice.com/forums/member.php?action=profile&uid=6259">Bogdan</a>]]></dc:creator>
			<guid isPermaLink="false">https://userspice.com/forums/showthread.php?tid=1036</guid>
			<description><![CDATA[It would be awesome, if you realize Template Engine (Theming) in UserSpice 5. The most popular PHP Template Engine is Smarty, but it hard to implement.<br />
<br />
Why it's important: now if I want to change view of back-end and front-end I need to edit core files that will be updated with new version. There is some views, but they using only for header and footer.<br />
<br />
I want something, like in WordPress - core files never edited, they easily updated without loss. Theme files are standalone and not depending from core updates. It called MVC pattern <img src="https://userspice.com/forums/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></description>
			<content:encoded><![CDATA[It would be awesome, if you realize Template Engine (Theming) in UserSpice 5. The most popular PHP Template Engine is Smarty, but it hard to implement.<br />
<br />
Why it's important: now if I want to change view of back-end and front-end I need to edit core files that will be updated with new version. There is some views, but they using only for header and footer.<br />
<br />
I want something, like in WordPress - core files never edited, they easily updated without loss. Theme files are standalone and not depending from core updates. It called MVC pattern <img src="https://userspice.com/forums/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[GDPR]]></title>
			<link>https://userspice.com/forums/showthread.php?tid=1009</link>
			<pubDate>Mon, 19 Mar 2018 05:11:10 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://userspice.com/forums/member.php?action=profile&uid=1254">jdmfarms</a>]]></dc:creator>
			<guid isPermaLink="false">https://userspice.com/forums/showthread.php?tid=1009</guid>
			<description><![CDATA[Hello. <br />
<br />
As the net nannies make the www more secure, i am inquiring to see if userspice developers keep these regulations in mind. Im confident security is the forefront of your mind. Some aspects of the topic require the use of industry standards which i am a novice at...only know when another developer points something out.<br />
<br />
However, are u aware of this GDPR? <a href="https://www.eugdpr.org" target="_blank" rel="noopener" class="mycode_url">https://www.eugdpr.org</a><br />
It is for protecting EU members which means any site in the world may need to comply.<br />
<br />
Thank you.]]></description>
			<content:encoded><![CDATA[Hello. <br />
<br />
As the net nannies make the www more secure, i am inquiring to see if userspice developers keep these regulations in mind. Im confident security is the forefront of your mind. Some aspects of the topic require the use of industry standards which i am a novice at...only know when another developer points something out.<br />
<br />
However, are u aware of this GDPR? <a href="https://www.eugdpr.org" target="_blank" rel="noopener" class="mycode_url">https://www.eugdpr.org</a><br />
It is for protecting EU members which means any site in the world may need to comply.<br />
<br />
Thank you.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[wanted: DB before/after update class]]></title>
			<link>https://userspice.com/forums/showthread.php?tid=986</link>
			<pubDate>Thu, 01 Mar 2018 13:18:49 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://userspice.com/forums/member.php?action=profile&uid=7241">matthewra</a>]]></dc:creator>
			<guid isPermaLink="false">https://userspice.com/forums/showthread.php?tid=986</guid>
			<description><![CDATA[Could there be a DB class to do record update<br />
which logs a before and after image of the record?]]></description>
			<content:encoded><![CDATA[Could there be a DB class to do record update<br />
which logs a before and after image of the record?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[custom fields]]></title>
			<link>https://userspice.com/forums/showthread.php?tid=949</link>
			<pubDate>Tue, 13 Feb 2018 15:49:27 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://userspice.com/forums/member.php?action=profile&uid=4957">Busy Tech</a>]]></dc:creator>
			<guid isPermaLink="false">https://userspice.com/forums/showthread.php?tid=949</guid>
			<description><![CDATA[it is a question asked alot "how do i create a custom field"<br />
why not allow people to create custom fields in the admin dashboard.<br />
i really hope to see this in 5.0 ]]></description>
			<content:encoded><![CDATA[it is a question asked alot "how do i create a custom field"<br />
why not allow people to create custom fields in the admin dashboard.<br />
i really hope to see this in 5.0 ]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Composer]]></title>
			<link>https://userspice.com/forums/showthread.php?tid=923</link>
			<pubDate>Sat, 27 Jan 2018 00:04:18 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://userspice.com/forums/member.php?action=profile&uid=6826">Batman</a>]]></dc:creator>
			<guid isPermaLink="false">https://userspice.com/forums/showthread.php?tid=923</guid>
			<description><![CDATA[Is there any plans on bringing composer back? ]]></description>
			<content:encoded><![CDATA[Is there any plans on bringing composer back? ]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Bootstrap 4]]></title>
			<link>https://userspice.com/forums/showthread.php?tid=919</link>
			<pubDate>Sun, 21 Jan 2018 17:26:06 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://userspice.com/forums/member.php?action=profile&uid=6188">Jamezs</a>]]></dc:creator>
			<guid isPermaLink="false">https://userspice.com/forums/showthread.php?tid=919</guid>
			<description><![CDATA[I guess Userspice 5 won't be releasing that soon.<br />
<br />
Maybe implement Bootstrap 4?<br />
When I started writing this article it was still on beta. But it just released! <img src="https://userspice.com/forums/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /> When I refreshed the 4.0 was out of beta.<br />
<br />
<a href="https://getbootstrap.com/" target="_blank" rel="noopener" class="mycode_url">https://getbootstrap.com/</a><br />
]]></description>
			<content:encoded><![CDATA[I guess Userspice 5 won't be releasing that soon.<br />
<br />
Maybe implement Bootstrap 4?<br />
When I started writing this article it was still on beta. But it just released! <img src="https://userspice.com/forums/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /> When I refreshed the 4.0 was out of beta.<br />
<br />
<a href="https://getbootstrap.com/" target="_blank" rel="noopener" class="mycode_url">https://getbootstrap.com/</a><br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Names database-tables]]></title>
			<link>https://userspice.com/forums/showthread.php?tid=743</link>
			<pubDate>Wed, 13 Sep 2017 16:48:29 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://userspice.com/forums/member.php?action=profile&uid=2943">c.l.f.wittmann@gmail.com</a>]]></dc:creator>
			<guid isPermaLink="false">https://userspice.com/forums/showthread.php?tid=743</guid>
			<description><![CDATA[Hi, <br />
<br />
I have an idea for an improvement of userspice. First of all: I really like userspice!!!<br />
<br />
But I think it might be even better if you could change the names of the tables in the database. Is it maybe possible to give all of them a prefix like "us_". That would make it easier if you need to search for your own tables in phpmyadmin and sort them by table-names. I know this might be a lot of work as you probably use these table-names a lot in your php codes but I think it would make work a bit easier when you are using own tables. <br />
<br />
Thanks in advance and again: thanks for userspice!! <br />
Chris ]]></description>
			<content:encoded><![CDATA[Hi, <br />
<br />
I have an idea for an improvement of userspice. First of all: I really like userspice!!!<br />
<br />
But I think it might be even better if you could change the names of the tables in the database. Is it maybe possible to give all of them a prefix like "us_". That would make it easier if you need to search for your own tables in phpmyadmin and sort them by table-names. I know this might be a lot of work as you probably use these table-names a lot in your php codes but I think it would make work a bit easier when you are using own tables. <br />
<br />
Thanks in advance and again: thanks for userspice!! <br />
Chris ]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Different CSS engines]]></title>
			<link>https://userspice.com/forums/showthread.php?tid=709</link>
			<pubDate>Fri, 01 Sep 2017 19:00:04 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://userspice.com/forums/member.php?action=profile&uid=2786">Katronix</a>]]></dc:creator>
			<guid isPermaLink="false">https://userspice.com/forums/showthread.php?tid=709</guid>
			<description><![CDATA[One possible suggestion for a future version of US, and I realize this one is probably more inline for US 6 or so, but there are more CSS engines than just Bootstrap, it would be nice if US could be CSS Engine independent, or perhaps say know of Bootstrap, and Foundation.<br />
<br />
Anyways just a thought.]]></description>
			<content:encoded><![CDATA[One possible suggestion for a future version of US, and I realize this one is probably more inline for US 6 or so, but there are more CSS engines than just Bootstrap, it would be nice if US could be CSS Engine independent, or perhaps say know of Bootstrap, and Foundation.<br />
<br />
Anyways just a thought.]]></content:encoded>
		</item>
	</channel>
</rss>