EzPortal - Portal Software for Forums

EzPortal - Made to Fit Your SMF Forum - Glad You Found Us!
+- +-

UserBox

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Recent Posts

New built in translations for six langauges! by EzPortal
March 26, 2024, 11:15:32 pm

Smiley missing in shoutbox 2.1.4 by hustreamload
July 26, 2023, 08:14:02 am

Re: Theme Select Box question? by Shades
March 15, 2023, 06:49:49 pm

Re: Theme Select Box question? by Shades
March 09, 2023, 02:09:24 pm

Re: Theme Select Box question? by Shades
March 09, 2023, 01:55:53 pm

Re: Theme Select Box question? by EzPortal
March 09, 2023, 01:47:42 pm

Re: Theme Select Box question? by Shades
March 09, 2023, 01:34:07 pm

Re: Theme Select Box question? by EzPortal
March 09, 2023, 12:20:17 pm

+- HTML Menu


Sample HTML Block Usage - You May Custom Code it, as needed!

Recent Topics ezBlock

New built in translations for six langauges! by EzPortal
March 26, 2024, 11:15:32 pm

Smiley missing in shoutbox 2.1.4 by hustreamload
July 26, 2023, 08:14:02 am

Theme Select Box question? by Shades
March 15, 2023, 06:49:49 pm

Where is the facebook button color? by EzPortal
February 28, 2023, 06:45:09 pm

Display on Mobile - SMF 2.1.3 and EZ 5.5.2 by BugginIn
December 29, 2022, 04:07:13 pm

Blocks Help by Riggs1973
November 20, 2022, 12:59:30 pm

Surface ol lite theme release Free! by Steffen K.
November 18, 2022, 03:57:24 am

Undefined index: href by EzPortal
October 04, 2022, 08:49:59 pm

SMF-ezportal_column_5.cache): failed to open stream: No such file or directory by EzPortal
June 04, 2022, 11:40:13 am

Arcade block error: failed to open stream: No such file or directory by Shades
May 20, 2022, 02:47:13 pm

Author Topic: Core Dump on 0.2.7 with Aeva on Forum Landing Page  (Read 10242 times)

0 Members and 1 Guest are viewing this topic.

Offline overlord

  • Posts: 5
  • Karma: 0
Core Dump on 0.2.7 with Aeva on Forum Landing Page
« on: March 11, 2009, 05:02:52 am »
With Aeva installed, versions 6.0.66 and 6.0.67...

and latest EzPortal (0.2.7)

If Aeva is enabled, AND a "recent posts" or "recent topics" is used as an ezblock :

The forum "landing pad" page crashes with an "internal server error" ---  and DUMPS CORE!

All other ezblocks work normally on landing page and all other pages.  When the "recent" block is then removed, the forum and landing pages all work normally.

Disabling Aeva also makes the page work without crash or dump.

Core included as attachment.

Please advise.


core dump may be downloaded here

Offline EzPortal

  • Administrator
  • *****
  • Posts: 1299
  • Karma: 67
Re: Core Dump on 0.2.7 with Aeva on Forum Landing Page
« Reply #1 on: March 11, 2009, 06:55:50 am »
I do not know how to analyze core dumps myself I would check with the Aeva modification author.
Like ezPortal? Support me at https://www.patreon.com/vbgamer45/

Offline overlord

  • Posts: 5
  • Karma: 0
Re: Core Dump on 0.2.7 with Aeva on Forum Landing Page
« Reply #2 on: March 11, 2009, 07:44:54 am »
The bug did not occur with Avea and does not occur within the Aeva code, it seems to operate inside the Ezportal block code.

The error only happened after an upgrade to 0.2.7 from previous version 0.2.6, and occurs with all aeva versions, which were all stable under 0.2.6.


--- To revise : there is a fix for tinyportal recommended by Aeva, and the author thinks he's facing same issue.  I will pass on the code/patch he recommends, based on :

http://site.noisen.com/aeva-support/5198/aeva-500-forum-error/msg229646/#msg229646





Offline overlord

  • Posts: 5
  • Karma: 0
Re: Core Dump on 0.2.7 with Aeva on Forum Landing Page
« Reply #3 on: March 11, 2009, 07:29:12 pm »
Ok, here's what I got so far....

in TinyPortal / PBlocks.template.php  -- where same core dump occurs...
FIND :
$what=ssi_recentTopics($num_recent = $context['TPortal']['recentboxnum'], $bb, $output_method = 'array');

REPLACE :
$ex_aeva = $modSettings['aeva_enable'];
$modSettings['aeva_enable'] = 0;
$what = ssi_recentTopics($context['TPortal']['recentboxnum'], $bb, 'array');
$modSettings['aeva_enable'] = $ex_aeva;




Now, he's also said :

Ah, nope... but it's easy to adapt.
You will have to find the equivalent ssi_recentPosts() call in EZPortal.
Juste paste that part of the code here, and I'll adapt it for you if you want.

Any idea which part he means?

Offline overlord

  • Posts: 5
  • Karma: 0
Re: Core Dump on 0.2.7 with Aeva on Forum Landing Page
« Reply #4 on: March 12, 2009, 08:23:15 am »
grep -niR 'ssi_recentPosts' *
SMFSUB/SSI.php:241:function ssi_recentPosts($num_recent = 8, $exclude_boards = null, $output_method = 'echo')
SMFSUB/ssi_examples.php:52:         <h3>Recent Posts Function: &lt;?php ssi_recentPosts(); ?&gt;</h3>
SMFSUB/ssi_examples.php:53:         <?php ssi_recentPosts(); flush(); ?>
SSI.php:251:function ssi_recentPosts($num_recent = 8, $exclude_boards = null, $include_boards = null, $output_method = 'echo')
SSI.php~:259:function ssi_recentPosts($num_recent = 8, $exclude_boards = null, $include_boards = null, $output_method = 'echo')
ssi_examples.php:52:         <h3>Recent Posts Function: &lt;?php ssi_recentPosts(); ?&gt;</h3>
ssi_examples.php:53:         <?php ssi_recentPosts(); flush(); ?>



In the entire app, these are the only references I could find.  Is one of them what I am looking for?




Offline overlord

  • Posts: 5
  • Karma: 0
Re: Core Dump on 0.2.7 with Aeva on Forum Landing Page
« Reply #5 on: March 12, 2009, 11:02:52 am »
Turning off output compression has solved this issue.

Offline EzPortal

  • Administrator
  • *****
  • Posts: 1299
  • Karma: 67
Re: Core Dump on 0.2.7 with Aeva on Forum Landing Page
« Reply #6 on: March 12, 2009, 06:05:17 pm »
We store the php code for the ezBlocks in the mysql database to call the built in ezBlock functions
Like ezPortal? Support me at https://www.patreon.com/vbgamer45/

 

Related Topics

  Subject / Started by Replies Last post
8 Replies
12468 Views
Last post October 04, 2009, 08:50:16 am
by EzPortal
0 Replies
7733 Views
Last post December 17, 2010, 05:18:59 am
by Underdog
0 Replies
7061 Views
Last post December 26, 2012, 11:41:58 am
by desi4um
11 Replies
28938 Views
Last post March 24, 2013, 02:02:22 pm
by EzPortal
1 Replies
5607 Views
Last post February 01, 2016, 06:57:40 am
by lscstu22

+-SMF Gallery

Quick Menu


Powered by EzPortal