Jump to content

Recommended Posts

On 20/08/2016 at 5:38 AM, Lenny Warren said:

Since updating to PHP 7, I have an issue that my index.php file doesn't redirect from my root directory to my forum directory. Do I need a new version of home.php ?????

There shouldn't be for PHP 7, are you getting any kind of errors on your end?

12 hours ago, Caiden Spencer_321044 said:

REALLY hanging for this truncating posts with images ^_^

I'm working on a mass bug fixing update for all my apps and plugins now. Will have it included in the next few weeks.

Link to comment
10 hours ago, Mike John said:

There shouldn't be for PHP 7, are you getting any kind of errors on your end?

I'm working on a mass bug fixing update for all my apps and plugins now. Will have it included in the next few weeks.

Just went to a forum error page. I've just put up a generic htm page with a refresh redirect at the moment.... ;)

Link to comment
14 hours ago, Mike John said:

There shouldn't be for PHP 7, are you getting any kind of errors on your end?

I'm working on a mass bug fixing update for all my apps and plugins now. Will have it included in the next few weeks.

Thanks @Mike John. ^_^

I've decided to make the portal my home page, but making the portal the default app in the acp doesn't seem to work, anything I'm missing?

Link to comment

Mike, my portal just shows a 404. :(

index contents looks fine;

/**
 * @package             Portal
 * @author              <a href='http://www.devfuse.com'>DevFuse</a>
 * @copyright   (c) 2015 DevFuse
 */
$_SERVER['SCRIPT_FILENAME']     = __FILE__;
/**
 * Path to your IP.Board directory with a trailing /
 */
$path   = 'forums/';

$_GET['app']            = 'portal';
$_GET['module']         = 'portal';
$_GET['controller']     = 'portal';

require_once $path . 'init.php';
\IPS\Dispatcher\Front::i()->run();

But page visit gives 

Quote

The page you requested does not exist

This is only since last update to IPB

Thanks.

Link to comment

Greetings. Love the portal!! Was a huge fan of the one for IP.Board. I have a question, can I get specific Blocks somewhere for the Portal? I see I can Import them with an .xml file, but where would I be able to get them? Also, if I make a new block, does it have to be coding? Can it be just text?

Link to comment
On 8/26/2016 at 3:18 AM, Mike John said:

I've just released v1.6.0, with the following changes:

  1. A few small bug fixes and feature inclusions.
  2. Introduction of topic thumbnail option. With the ability to display a thumbnail of a topics first image.

Hi MikeJohn!

Will this feature find its way into the News widget? 

Link to comment
On 8/26/2016 at 11:18 AM, Mike John said:

I've just released v1.6.0, with the following changes:

  1. A few small bug fixes and feature inclusions.
  2. Introduction of topic thumbnail option. With the ability to display a thumbnail of a topics first image.

Thank You UPDATING NOW

 

I've updated, pagination works however pulling an image seems to not be working? Ill PM you about this one.

Edited by Caiden Spencer_321044
Link to comment
On 31/08/2016 at 6:02 AM, HeYYiTzPaT said:

Greetings. Love the portal!! Was a huge fan of the one for IP.Board. I have a question, can I get specific Blocks somewhere for the Portal? I see I can Import them with an .xml file, but where would I be able to get them? Also, if I make a new block, does it have to be coding? Can it be just text?

I don't believe there are 3rd party created portal blocks. But I have included the functionality if any admins want to share their own blocks.

The block can accept plain text, html or php just the same.

On 05/09/2016 at 0:19 PM, Prank said:

 just wondering if we could have an option added to force aspect ratio on thumbs? Mine are all squished.

Would you mind taking a quick screenshot of how it looks?

On 05/09/2016 at 3:39 PM, B_U_R_I said:

Will this feature find its way into the News widget? 

I've noted this in a recent bug report so it's a very likely inclusion in the next News update now.

On 06/09/2016 at 0:31 PM, Caiden Spencer_321044 said:

I've updated, pagination works however pulling an image seems to not be working? Ill PM you about this one.

Should be replying there soon.

Link to comment

Hello, 

Portal is not working on our site after the last update by IPB, IPB support recommended this update. I am using the latest version of Portal.

When I use portal it defaults to Articles

Quote

 

Your Portal application has bug in how it has configured the URLs it controls. It seems the older version of IPS Community Suite also had a bug which meant that the bug in the Portal application went unnoticed, but 4.1.14 fixed that, revealing this issue.

 

You should contact the author of that application. Advise them that in furl.json they should set "topLevel" to "portal" and leave "friendly" blank in the actual page definition. Don't worry if that doesn't make sense, the author should know what I mean.

 

Can you help please?

Thanks in advance,

 

Killian

 

Link to comment
On 12/09/2016 at 0:49 PM, Prank said:

Yep, here you are;

Have you made any changes to the portal template yet? I did a little testing on this before and was sure it was somewhat adaptive to different aspect ratios.

portal.png

On 16/09/2016 at 6:43 PM, KillianK said:

Portal is not working on our site after the last update by IPB, IPB support recommended this update. I am using the latest version of Portal.

Can you confirm your using the latest version of the Portal app? This should of been fixed in the most recent version.

Link to comment
39 minutes ago, Mike John said:

Have you made any changes to the portal template yet? I did a little testing on this before and was sure it was somewhat adaptive to different aspect ratios.

No changes to the template - maybe thats a quick fix? Which template houses this?

Thanks Mike.

Link to comment
20 hours ago, Prank said:

No changes to the template - maybe thats a quick fix? Which template houses this?

See acp > theme editor > portal > front > browse > topicRow

Find:

<img src='{$firstImage}' class='ipsPos_right ipsThumb ipsThumb_large ipsResponsive_hidePhone' />

Make sure you don't see anything like "ipsThumb_bg" in there. I assume that even the default theme does the same thing?

Link to comment

Hi Mike,

Yep, the problem exists on default theme.

That line is as you posted it;

{{if $firstImage}}
    <img src='{$firstImage}' class='ipsPos_right ipsThumb ipsThumb_large ipsResponsive_hidePhone' />
{{endif}}

The class ipsthumb_large adds a max width & height of 175px. It seems this is what is constraining it.

Edited by Prank
Link to comment
On 23/09/2016 at 10:20 AM, Prank said:

The class ipsthumb_large adds a max width & height of 175px. It seems this is what is constraining it.

My limited understanding of css is that it should only set a "max" dimension and if below should still use the images natural dimensions. If your Portal publicly available? If so, I wouldn't mind viewing it and ruling out any client side issues on your end. I recently worked on another site with the Portal installed and the image loaded fine with a custom theme as well.

Link to comment
1 hour ago, Mike John said:

My limited understanding of css is that it should only set a "max" dimension and if below should still use the images natural dimensions.

Correct! At least, thats my understanding also.

 

1 hour ago, Mike John said:

If your Portal publicly available? If so, I wouldn't mind viewing it and ruling out any client side issues on your end. I recently worked on another site with the Portal installed and the image loaded fine with a custom theme as well.

Yep. www.sau.com.au/forums/portal

You can see a squished one on pg5 atm;

http://www.sau.com.au/forums/portal/?page=5

 

Screen Shot 2016-09-25 at 2.08.10 PM.png

Link to comment
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...