Dream Portal is a portal system designed to function with Simple Machines Forum (aka SMF).

It allows you to easily manage your site and webpages in an SMF environment. Place Modules on different actions and non-actions of your SMF forum using a simple drag-and-drop approach. Users can also create and save multiple layouts by name and assign pages to any layout(s). Bundled with Dream Pages and Dream Menu helps put the power and ease of customizing your SMF forum right at your fingertips.

Dream Portal allows you the ability to easily customize your SMF forum and site with many different possibilities helping to make customization truly what dreams are made of!

DreamPortal1.0.5.zip
File size: 221KB
Download count: 1272
DreamPortal1.0.5.tar.gz
File size: 176KB
Download count: 141
Download

Recent Posts

Pages: [1] 2 3 ... 10
1
English Support / Re: DP works with SMF 2.0.1?
« Last post by pixeleyes on February 21, 2012, 10:28:40 AM »
I tried but having trouble in installation as below.
2
English Support / Re: DP works with SMF 2.0.1?
« Last post by Xarcell on February 21, 2012, 09:50:52 AM »
I just wanted to know whether DP works with SMF 2.0.1?

Yes.
3
English Support / DP works with SMF 2.0.1?
« Last post by pixeleyes on February 21, 2012, 07:27:35 AM »
I just wanted to know whether DP works with SMF 2.0.1?
4
Modules / Re: Reset Impression Count
« Last post by SoLoGHoST on February 17, 2012, 06:27:57 AM »
You can try using the extend attribute to keep it set at unchecked for the check parameter to keep it set at unchecked.  Just have it return 0 (and will always be unchecked).  But before you set it to 0, in the function, you should test it to see if it is !empty(), do a $_POST['parameter_name'] on it and test it if it's empty first in that extend function.  If not empty, than call whatever code you need to call to reset it, otherwise, don't call anything.  In any case, always return 0 to make the checkbox unchecked.  Extend attribute should be set to function for the parameter... example:

Code: [Select]
<param name="reset" type="check" extend="function">source/script.php:myresetfunc</param>

And in the script.php file, you should have this...
Code: [Select]
function myresetfunc()
{
if (!empty($_POST['reset']))
    file_put_contents("count$unique_id.txt", $countReset);

return 0;
}

Ofcourse, you won't be able to use $unique_id for this, so, you'll have to figure out the module's id value with the $context variable instead if that is how you are naming these txt files, and ofcourse $countReset will need to be defined in that function as well.

Anyways, just a thought of what you can do for this to always make sure the checkbox is unchecked.  Just use a function to keep it unchecked.  I haven't tested this, cause the extend attribute that equals a filepath:function name hasn't been tested all of the way through yet, but this is the closest thing to what you are asking... and in theory it should work flawless...
5
Modules / Re: Reset Impression Count
« Last post by jhkfdg on February 17, 2012, 03:00:03 AM »
However, the way I have it is a parameterLongchamp Sac called reset impression count that you check in the module admin to reset it,
6
Modules / Reset Impression Count
« Last post by Xarcell on February 16, 2012, 04:34:16 PM »
With the way I wrote a script, I can reset the impression count on the adspace manager. However, the way I have it is a parameter called reset impression count that you check in the module admin to reset it, refresh page ad is on, uncheck reset impression & save again. Is there a simpler process?

This is what need to be executed to reset the impression count:
Code: [Select]
file_put_contents("count$unique_id.txt", $countReset);

Is it possible to create a checkbox that you check to execute "file_put_contents("count$unique_id.txt", $countReset);" upon save and then auto-unchecks itself?

Thanks.
7
Team Blog / Re: Feburary 9, 2012
« Last post by Xarcell on February 16, 2012, 04:28:20 PM »

The module does not count impressions. That was beyond my skill(I tried). However ad rotation isn't a bad idea, it could be added. I doubt I have the skill to get them working membergroup-based with ad rotation, but you can also make the whole module itself membergroup-based. Remember, the modules are clone-able ;)
I'm thinking that you could addd a module parameter and count the views there. For membergroups you could do array_combine as the shoutbox module does.

Just to update you on this I did find a way to add in impressions without using the database. It's has been implemented and is working. Although, I'm currently looking for better way than I currently have to reset impression count.
8
English Support / Re: Question
« Last post by Alb0 on February 14, 2012, 10:16:07 PM »
Got this issue fixed by adding the following code to index.css;

Code: [Select]
.blockframe { background: #eee; border: 1px solid #bbb;}

Thank you guys  :D
9
Modules / Re: Textareas
« Last post by Xarcell on February 14, 2012, 07:53:33 AM »
You use parse_bbc in your actual function for your module within the code itself.  Example:

Code: [Select]
echo
parse_bbc($param['text']);

K, thanks. I will most likely update most of my modules with this.
10
Modules / Re: Textareas
« Last post by SoLoGHoST on February 14, 2012, 04:13:07 AM »
You use parse_bbc in your actual function for your module within the code itself.  Example:

Code: [Select]
echo
parse_bbc($param['text']);
Pages: [1] 2 3 ... 10