ENotify

Started by SMFHacks.com Team, October 18, 2009, 04:40:06 PM

Previous topic - Next topic

Biology Forums

Quote from: butch2k on September 16, 2011, 04:06:11 AM
The 100k isssue applies to the total number of messages posted since the beginning of your forum, it's not a per/day or per thread value.

It was the root of all my issues with this mod. Indeed i tested it on my beta board which is a subset of my live board and did not encounter any issue (i was under 100k messages) and when applying the mod on my live board the cpu load skyrocketed and i easily traced the issue to the temporary table creation through innotop.

It creates a lot of contentions especially with persistant connections. Indeed temporary tables are dropped when the connection close yet with persistant connections those tables are not dropped automatically as persistant connections do not close.

The whole temporary table creation is an ugly mess that causes more troubles than it solves, i firmly believe it should be removed from newer version of SMF.

Could you tell me how to disable the temporary creation of tables? I'm using 1.x

butch2k

check for the 100000 value in Recent.php. IIRC 1.1.x use the same file as 2.0, and replace 100000 by whatever number is greater than your total number of posts by a large margin.

soulgeek

I have used Enotify our forum, which was hoster on Shared Host.

And i had to take it down, Enotify causes many processors running in BAckend, its resource consuming.

Even on VPS it causes Resourses.

New Version Any better?

lets Grow Together With Law of Attraction !

Join to Seek a Better Like at
Law of Attraction Forum

Shrink


vbgamer45

Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

butch2k


kenng

something it works something it don't. It doesnt work everytime. best option?

PLAYBOY

This mod have a huge potential but it definetely needs to be upgraded.

1- Each user should be able to change their settings and turn it on/off
2- X (close) button should definitely appear on the top. Not the bottom of 50 new warnings every time a person signs in.
3- Adding the fb account into smf would also be pretty cool.
4- It can also be combined with this the "Invitation Message In Your Face (IMIYF)" mod because its about the same thing but for visitors only.

thegto

Hi, i'm going to install on my 1.1.14
of you version ENotify2.0.1

but I got an error

   Execute Modification    ./Sources/ModSettings.php    Test failed

Biology Forums

Quote from: thegto on December 03, 2011, 06:23:45 AM
Hi, i'm going to install on my 1.1.14
of you version ENotify2.0.1

but I got an error

   Execute Modification    ./Sources/ModSettings.php    Test failed

I disabled this mod a long time ago because it eats up your resources like crazy.

Nitesh Kunnath

Unable to integrate "sa facebook connect" plugin and "Enotify" plugin both at a forum. It clashes or give errors after integration.

This is the error:

({ "title": "Notification Feed", "generator": "ENotify Modification for Simple Machines Forum", "items": [ ] })


Please help me install both this plugin as I need it much !!!

Where might be the issue ?
If anyone guide me which file should be modified, I will do it and try :)

Sefket

Parse error: syntax error, unexpected $end, expecting '(' in /home/thrscom/public_html/foetest/Sources/ModSettings.php on line 340

1.1.15

snadge

getting hundreds of errors per hour with this mod...works though

Apply Filter: Only show the error messages of this URL
http://www.tech4talk.net/index.php?action=enotify
Apply Filter: Only show the errors with the same message
8: Undefined index: title
Apply Filter: Only show the errors from this file
File: /home/techtalk/public_html/Themes/ds-natural_20/index.template.php
Line: 364


can anyone tell me why?  is it to do with the 10 second refresh/check?

thanks

vbgamer45

Whats on line
File: /home/techtalk/public_html/Themes/ds-natural_20/index.template.php
Line: 364
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

snadge

Hi vbgamer45

just want to say thanks for all your mods, they are brilliant.

anway, in Dreamweaver at line 364 for that PHP file is

               <a class="', $button['active_button'] ? 'active ' : '', '" href="', $button['href'], '"', isset($button['target']) ? ' target="' . $button['target'] . '"' : '', '><span>', $button['title'], '</span></a>';

thanks

vbgamer45

Looks like a theme issue since $button['title'] is not getting defined in that case
You can try code like
if (!isset($button['title']))
$button['title'] = '';
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

snadge

thanks for reply.

exactly where.how would i put that into the existing code? (i dont know PHP etc..) but i could insert it if i was told what to remove and where to add it.

thanks again

vbgamer45

Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

snadge

sorry I still unclear as to where it goes...

here is code from it if it helps you explain what to change?:

// Show the menu up top. Something like [home] [help] [profile] [logout]...
function template_menu()
{
global $context, $settings, $options, $scripturl, $txt;

echo '
<ul id="topnav">';

foreach ($context['menu_buttons'] as $act => $button)
{
echo '
<li id="button_', $act, '">
<a class="', $button['active_button'] ? 'active ' : '', '" href="', $button['href'], '"', isset($button['target']) ? ' target="' . $button['target'] . '"' : '', '><span>', $button['title'], '</span></a>';

if (!empty($button['sub_buttons']))
{
echo '
<ul>';

foreach ($button['sub_buttons'] as $childbutton)
{
echo '
<li>
<a href="', $childbutton['href'], '"', isset($childbutton['target']) ? ' target="' . $childbutton['target'] . '"' : '', '>', $childbutton['title'], !empty($childbutton['sub_buttons']) ? '...' : '', '</a>';

vbgamer45

Right after

   foreach ($context['menu_buttons'] as $act => $button)
   {
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

Advertisement: