![]() |
|
[Release] ProPortal 1.0: A More Functional Portal! - Printable Version +- MyBB Community Forums (http://community.mybb.com) +-- Forum: Resources (/forum-8.html) +--- Forum: Plugins & Code Modifications (/forum-73.html) +---- Forum: Releases (/forum-102.html) +---- Thread: [Release] ProPortal 1.0: A More Functional Portal! (/thread-63463.html) |
[Release] ProPortal 1.0: A More Functional Portal! - DragonFever - 01-19-2010 10:17 PM As I revealed on this topic before, I was working on a new and more functional portal extension for MyBB. Well, It's now completed, have been tested and ready to rock! Description ProPortal is a portal extension for MyBB which MyBB lacking for a long time. Some of the features of the portal are as following:
First version of ProPortal is ready to be download in its official site ProMyBB. You can ask anything about ProPortal on this site and take support. Download Link: <snip - dead link> Edit by staff: Steven has kindly provided a download mirror here Best regards, Adnan Topal RE: [Release] ProPortal 1.0: A More Functional Portal! - themem - 01-20-2010 08:44 AM Thanks Adnan Topal ![]() and again : Good job again, Dragonfever. Looks very good. RE: [Release] ProPortal 1.0: A More Functional Portal! - Damion - 01-20-2010 08:56 AM Thank you for this awesome plugin. RE: [Release] ProPortal 1.0: A More Functional Portal! - querschlaeger - 01-20-2010 08:58 AM Wow, development comes to the end very fast! Will you release the plugin also on mod section: http://mods.mybboard.net/ ? PS: When adding a new page I get this error: [attachment=17055] It's showing up a half second and then there is a redirect. RE: [Release] ProPortal 1.0: A More Functional Portal! - afzulnizam - 01-20-2010 10:48 AM wow finally release. thanks i want try to use it. RE: [Release] ProPortal 1.0: A More Functional Portal! - DragonFever - 01-20-2010 12:14 PM (01-20-2010 08:58 AM)querschlaeger Wrote: Wow, development comes to the end very fast! I guess you didn't select any usergroup for visibility options. That could be the reason. RE: [Release] ProPortal 1.0: A More Functional Portal! - untitle - 01-20-2010 12:47 PM downloaded and will test it tonight thank you dragonfever
RE: [Release] ProPortal 1.0: A More Functional Portal! - afzulnizam - 01-20-2010 01:38 PM everything is normal for me.. i have a question. There are 10 top posters, 10 latest users, and 10 latest threads right? So, where should i change if i want to customize it to be 5 top posters or 12 thread? RE: [Release] ProPortal 1.0: A More Functional Portal! - DragonFever - 01-20-2010 01:43 PM You need to edit block files in portal/blocks. For top posters change 10 in the following part: Code: SELECT uid, username, postnum, avatar, avatardimensions, usergroup, displaygroup FROM ".TABLE_PREFIX."users ORDER by postnum DESC LIMIT 0, 10For latest users change 10 in the following part: Code: SELECT uid, username, regdate, avatar, avatardimensions, usergroup, displaygroup FROM ".TABLE_PREFIX."users ORDER by regdate DESC LIMIT 0, 10For latest threads change the value of following variable: PHP Code: $threadlimit = 10; I'll add this options to portal settings in the upcoming version. RE: [Release] ProPortal 1.0: A More Functional Portal! - afzulnizam - 01-20-2010 01:47 PM ^ Thank you so much friend.. |