[CDB] Board3 Portal 2.1.0-RC2

A place for Extension Authors to post and receive feedback on Extensions still in development. No Extensions within this forum should be used within a live environment!
Ideas Centre
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

IMPORTANT: Extensions Development rules

IMPORTANT FOR NEEDED EVENTS!!!
If you need an event for your extension please read this for the steps to follow to request the event(s)
User avatar
Marc
Development Team Leader
Development Team Leader
Posts: 5729
Joined: Tue Oct 30, 2007 10:57 pm
Location: Munich, Germany
Name: Marc

Re: [RC] Board3 Portal 2.1.0-RC1

Post by Marc »

Purzelkater wrote:Have the same problem with Team Box here. (Super)moderators are not shown, but administrators.

And on the ACP I can't delete any box entries.
Example: If I try to delete a link on Links Box, I have to confirm this action. Then I'm on the portal settings page and if I go back to the Links Box settings, the link stays there.
Have the same issue with Calendar and Menu.

So far, it's a great extension! :)

Kind regards,
Purzelkater
What version of phpBB are you using this on? Make sure you use phpBB 3.1.2.
FomenkoAndrey wrote:error on portal page,
see in firebug:
http://motobratva.com/styles/prosilver/ ... ersion=196
forum_f...ion=196 (row 323, column 10)

Code: Select all

TypeError: $ is not a function
$body = $('body');
strings 321-323 in file

Code: Select all

	var test = document.createElement('div'),
		oldBrowser = (typeof test.style.borderRadius == 'undefined'),
		$body = $('body');
That file has nothing to do with the portal and I'm unable to see this on your website. My guess is that your browser or some browser extension you have installed is incompatible or caused your page to load correctly.
The file that loads the $ a.k.a. jQuery resource is not handled by the portal but by phpBB itself.
[email protected] wrote:news_compact_center.html
Find

Code: Select all

S_DISPLAY_NEWS_RVS
Repace with

Code: Select all

news.S_DISPLAY_NEWS_RVS
portal.css
ADD

Code: Select all

#portal-center ul.topiclist dt {
	margin-right: -300px;
}
#portal-center ul.topiclist dt .list-inner {
	margin-right: 300px;
}
#portal-center ul.topiclist dd.posts,
#portal-center ul.topiclist dd.views {
	width: 70px;
}
#portal-center ul.topiclist .lastpost {
	width: 160px;
}
What is this supposed to fix? The first change you suggested will cause major issues for anyone willing to use that functionality (news.S_DISPLAY_NEWS_RVS doesn't exist in Board3 Portal 2.1.0-RC1).
Purzelkater
Registered User
Posts: 4
Joined: Wed Dec 10, 2014 6:43 am

Re: [RC] Board3 Portal 2.1.0-RC1

Post by Purzelkater »

Okay, update to phpBB 3.1.2 fixed the issues with deleting entries.

But (Super) Mods are empty on Team Box anymore.
FomenkoAndrey
Registered User
Posts: 369
Joined: Thu Aug 19, 2010 10:44 am

Re: [RC] Board3 Portal 2.1.0-RC1

Post by FomenkoAndrey »

Marc know about all that bugs, i think we have to wait RC2.
Dexio
Registered User
Posts: 12
Joined: Thu Dec 25, 2014 6:38 am

Re: [RC] Board3 Portal 2.1.0-RC1

Post by Dexio »

Please keep the updates on this project coming so we can read about it :D
User avatar
[email protected]
Registered User
Posts: 191
Joined: Sun Sep 15, 2013 11:49 am
Location: bb3.mobi
Name: Anvar Stybaev

Re: [RC] Board3 Portal 2.1.0-RC1

Post by [email protected] »

Marc wrote:
[email protected] wrote:news_compact_center.html
portal.css
What is this supposed to fix? The first change you suggested will cause major issues for anyone willing to use that functionality (news.S_DISPLAY_NEWS_RVS doesn't exist in Board3 Portal 2.1.0-RC1).
Original:
Image

Find

Code: Select all

			<!-- IF S_DISPLAY_NEWS_RVS -->
				<dd class="posts" data-skip-responsive="true">{news.news_row.REPLIES} <dfn>{L_REPLIES}</dfn></dd>
				<dd class="views" data-skip-responsive="true">{news.news_row.TOPIC_VIEWS} <dfn>{L_VIEWS}</dfn></dd>
			<!-- ENDIF -->
Replace with

Code: Select all

			<!-- IF news.S_DISPLAY_NEWS_RVS -->
				<dd class="posts" data-skip-responsive="true">{news.news_row.REPLIES} <dfn>{L_REPLIES}</dfn></dd>
				<dd class="views" data-skip-responsive="true">{news.news_row.TOPIC_VIEWS} <dfn>{L_VIEWS}</dfn></dd>
			<!-- ENDIF -->
Find

Code: Select all

<!-- IF not S_DISPLAY_NEWS_RVS --><!-- IF news.news_row.FORUM_NAME -->&bull; <!-- ENDIF -->{L_REPLIES}{L_COLON} <strong>{news.news_row.REPLIES}</strong>  &bull; {L_VIEWS}{L_COLON} <strong>{news.news_row.TOPIC_VIEWS}</strong><!-- ENDIF -->
Replace with

Code: Select all

<!-- IF not news.S_DISPLAY_NEWS_RVS --><!-- IF news.news_row.FORUM_NAME -->&bull; <!-- ENDIF -->{L_REPLIES}{L_COLON} <strong>{news.news_row.REPLIES}</strong>  &bull; {L_VIEWS}{L_COLON} <strong>{news.news_row.TOPIC_VIEWS}</strong><!-- ENDIF -->
Result:
Image

portal.css
ADD

Code: Select all

#portal-center ul.topiclist dt {
	margin-right: -300px;
}
#portal-center ul.topiclist dt .list-inner {
	margin-right: 300px;
}
#portal-center ul.topiclist dd.posts,
#portal-center ul.topiclist dd.views {
	width: 70px;
}
#portal-center ul.topiclist .lastpost {
	width: 160px;
}
Result:
Image
[DEV/Beta] More extensions

Hopefully Google correctly translate my text// I do not support in private messages!
rrbailey89
Registered User
Posts: 248
Joined: Fri Oct 24, 2014 3:00 pm

Re: [RC] Board3 Portal 2.1.0-RC1

Post by rrbailey89 »

url rewritting does not seem to be working while using the portal (only on the portal). I have it ticked in my server settings and as an example when i click the url for rules i do not see app.php however when viewing the portal and i click "read more" then the url changes and app.php appears. Is this by design or something that is fixable? or maybe just something that has been overlooked?
User avatar
hejowicz
Registered User
Posts: 442
Joined: Sun Dec 23, 2007 4:03 pm

Re: [RC] Board3 Portal 2.1.0-RC1

Post by hejowicz »

Hi, where is config page for portal ?
User avatar
KillBill.
Registered User
Posts: 625
Joined: Tue Jun 02, 2009 4:07 pm

Re: [RC] Board3 Portal 2.1.0-RC1

Post by KillBill. »

Hi Marc!

If disabled b3portal ext = bug

Code: Select all

Fatal error: Uncaught exception 'Symfony\Component\DependencyInjection\Exception\InvalidArgumentException' with message 'The service definition "board3.portal.version.check" does not exist.
fixed:

open ext/board3/portal/acp/portal_info.php


inline find (3 found)

Code: Select all

acl_a_manage_portal
inline replace

Code: Select all

ext_board3/portal && acl_a_manage_portal
Please add next release + update module table. ;)
User avatar
Marc
Development Team Leader
Development Team Leader
Posts: 5729
Joined: Tue Oct 30, 2007 10:57 pm
Location: Munich, Germany
Name: Marc

Re: [RC] Board3 Portal 2.1.0-RC1

Post by Marc »

KillBill. wrote:Hi Marc!

If disabled b3portal ext = bug

Code: Select all

Fatal error: Uncaught exception 'Symfony\Component\DependencyInjection\Exception\InvalidArgumentException' with message 'The service definition "board3.portal.version.check" does not exist.
fixed:

open ext/board3/portal/acp/portal_info.php


inline find (3 found)

Code: Select all

acl_a_manage_portal
inline replace

Code: Select all

ext_board3/portal && acl_a_manage_portal
Please add next release + update module table. ;)
Where does this exception pop up?
hejowicz wrote:Hi, where is config page for portal ?
Once you enable the extension you will find it by clicking on the extensions tab in the ACP.



Other bugs that were mentioned have been added to the tracker:
https://github.com/board3/Board3-Portal/issues
User avatar
advocatus
Registered User
Posts: 290
Joined: Tue Aug 12, 2014 11:58 am
Location: Ontario, Canada.

Re: [RC] Board3 Portal 2.1.0-RC1

Post by advocatus »

I added this today on my test board and ran into a few problems. I had Prosilver Special Edition as the default and noticed three things:

1. For the non-compact view of global announcements, there's a block of space on the left side. I disabled Prosilver SE and it still happened.

Image

2. When disabling modules, they'd still be disabled, but there'd be an error message saying that an image for Prosilver SE could not be located.
error message wrote:Configuration updated successfully.

There was an error while checking for the module image:
The requested file could not be found: styles/prosilver_se/theme/images/portal/portal_menu.png
3. I couldn't disable the clock module at all usibg Prosilver SE. Only when the style was disabled was I able to disable the module.
error message wrote:The requested file could not be found: styles/prosilver_se/theme/images/portal/
Sorry about not having the error messages and/or screenshots. I'm under the weather and can't sit at my computer any more. I'm typing this from bed as I'm falling asleep.

Edit: Added applicable information.
Hi, I'm advocatus and I own www.forumgames.in.
Clubkop
Registered User
Posts: 11
Joined: Sun Jan 11, 2015 5:27 pm

Re: [RC] Board3 Portal 2.1.0-RC1

Post by Clubkop »

Hello,

I have a problem with installing this portal to my board.
Normaly on top, next to your username is a small avatar, only on the portal page that avatar is not there.
Can someone explain this?

Thanks!
fp24v
Registered User
Posts: 1
Joined: Thu Jan 15, 2015 6:09 pm

Re: [RC] Board3 Portal 2.1.0-RC1

Post by fp24v »

Hello to all the development team.
I use your portals for some years, and it's always the first thing I put a spot on a new forum.

thank you for your work.

I have a little problem with the 2.1.0-rc1.

As my English is light, I'll put pictures.

1-Malfunction Portal mod categories of icons
classical forum mod
Image

portal mod
Image

Image

Error Console
Image

2-link to portal mod

if current adress not with index.php
when i click to home (=portal) i have a 404 error,
but if index.php is in adress it's ok

link whitout: ".../forum_3_12/portal"
link whith: ".../forum_3_12/app.php/portal"

can you help me??

thank you

Flo
Ninja Scott
Registered User
Posts: 29
Joined: Thu Jan 10, 2013 7:38 pm

Re: [RC] Board3 Portal 2.1.0-RC1

Post by Ninja Scott »

Marc wrote:...
hejowicz wrote:Hi, where is config page for portal ?
Once you enable the extension you will find it by clicking on the extensions tab in the ACP.

Other bugs that were mentioned have been added to the tracker:
https://github.com/board3/Board3-Portal/issues
I just installed this extension and am running into the same problem of not being able to find the config page for the portal extension.

There is no entry at all for it in the extensions tab.
travel
Registered User
Posts: 131
Joined: Sun Jan 11, 2015 7:21 pm

Re: [RC] Board3 Portal 2.1.0-RC1

Post by travel »

Ninja Scott wrote:I just installed this extension and am running into the same problem of not being able to find the config page for the portal extension.
I had the same problem. ;)
You have probably not correct installed this extension.
Check your folders:
ext/board3/portal/extension_files
+ enable extension (ACP),
+ clean buffer (ACP).
Ninja Scott
Registered User
Posts: 29
Joined: Thu Jan 10, 2013 7:38 pm

Re: [RC] Board3 Portal 2.1.0-RC1

Post by Ninja Scott »

travel wrote:
Ninja Scott wrote:I just installed this extension and am running into the same problem of not being able to find the config page for the portal extension.
I had the same problem. ;)
You have probably not correct installed this extension.
Check your folders:
ext/board3/portal/extension_files
+ enable extension (ACP),
+ clean buffer (ACP).
I am pretty sure that everything is installed correctly.
If you mean purge the cache, then I have done that many times.

Files Directory
Image

Manage Extensions entry:
Image

Extensions Tab
Image

Board in all of its glory
Image

Return to “Extensions in Development”