vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Major Additions - Email Integration (New threads/replies by email) (https://vborg.vbsupport.ru/showthread.php?t=151222)

Fungsten 07-09-2009 06:58 PM

Quote:

Originally Posted by Cyricx (Post 1845952)
Your editting the data in the row, not the field itself.

On the left hand dropdown of tables, select "Usergroup", and then click "Structure" in the main screen along the top bar.

Now scroll down and put a checkmark next to ei_forumid and then click the pencil on the bottom.

Attached is a screenshot of the last step.

From there it'll open up to where you can easily change the char limit to 250.

Still doesn't work. :(

On Edit:

It was received. However it doesn't take out the Email address where it came form.

Cyricx 07-09-2009 08:40 PM

I was under the understanding the issue you had was not being able to add enough forumids in the usergroup manager to the autosubscribe option.

Issues with the preg_match, things needing to be removed from the text of emails prior to posting or oddities in characters like %20 etc, will be resolved in the next version for 3.8 . I'll be going a new route of requiring the pear package for mimedecoding to be installed. I spent way too much time trying to work on the decoder. I'm going to focus on the integration for the next version. Please be patient on preg_match issues and worry not.. pear packages are extremely easy to install :)

mykkal 07-10-2009 10:07 PM

Quote:

Originally Posted by Cyricx (Post 1845754)
I'm completely stumped. I've uninstalled and reinstalled on 3.8.3 and all of the fields are created. Do you use a table prefix?

Yes actually... becuase the site is integrated phpfox the vbulletin tables and phpfox tables have been merged into one database.

But that is common with integrations. Can the software not handle this?

I do remember that email integration was installed before we merged the phpfox (a social network) & vbulletin into one huge DB. It was working until we upgraded. I'll also add that since the integration we haven't had to make any special steps installing plugins.

Do you want to take a look? It must be something small. This is the first pluggin i've had trouble installing since we integrated. I'm not sure that has anything to do with it. There's over 5 complicated pluggins working on our installation 3.8.1.

joyfulmiller 07-12-2009 02:06 AM

This is likely a stupid question (but I'm such a newbie at this I freely admit I really have no clue), but I'm assuming that with this mod installed, the option "instant email notification" should show up in the drop down menu that loads when you click Subscribe under Forum Tools. Am I right?

I'm asking because I just installed this mod on my 3.8.3, and I've gotten no error anywhere, but I've also not seen ANY changes at all. I still only have the daily and weekly options for subscribing to forums.

Any ideas what I'm doing wrong?

Fungsten 07-12-2009 09:01 PM

Quote:

Originally Posted by Cyricx (Post 1846011)
I was under the understanding the issue you had was not being able to add enough forumids in the usergroup manager to the autosubscribe option.

Issues with the preg_match, things needing to be removed from the text of emails prior to posting or oddities in characters like %20 etc, will be resolved in the next version for 3.8 . I'll be going a new route of requiring the pear package for mimedecoding to be installed. I spent way too much time trying to work on the decoder. I'm going to focus on the integration for the next version. Please be patient on preg_match issues and worry not.. pear packages are extremely easy to install :)

I'll be waiting. Thanks because I love this MOD. I'll give you a few $$$ after it's updated!

Cyricx 07-13-2009 12:11 PM

Quote:

Originally Posted by mykkal (Post 1846627)
Yes actually... becuase the site is integrated phpfox the vbulletin tables and phpfox tables have been merged into one database.

But that is common with integrations. Can the software not handle this?

I do remember that email integration was installed before we merged the phpfox (a social network) & vbulletin into one huge DB. It was working until we upgraded. I'll also add that since the integration we haven't had to make any special steps installing plugins.

Do you want to take a look? It must be something small. This is the first pluggin i've had trouble installing since we integrated. I'm not sure that has anything to do with it. There's over 5 complicated pluggins working on our installation 3.8.1.

I'd love to take a peek. I can manually add the fields in if needed. But I'd rather try to figure out why it's not installing right.


Quote:

Originally Posted by joyfulmiller (Post 1847262)
This is likely a stupid question (but I'm such a newbie at this I freely admit I really have no clue), but I'm assuming that with this mod installed, the option "instant email notification" should show up in the drop down menu that loads when you click Subscribe under Forum Tools. Am I right?

I'm asking because I just installed this mod on my 3.8.3, and I've gotten no error anywhere, but I've also not seen ANY changes at all. I still only have the daily and weekly options for subscribing to forums.

Any ideas what I'm doing wrong?

Missed the template edits in the install.txt file. You should also ensure that you did the file edit as well, else you will have other larger problems as well.


Quote:

Originally Posted by Fungsten (Post 1847681)
I'll be waiting. Thanks because I love this MOD. I'll give you a few $$$ after it's updated!

It's comin soon! :) I just finished redoing the layout for campgaea.org which was the only priority higher then this one :)

joyfulmiller 07-13-2009 08:02 PM

Quote:

Originally Posted by Cyricx (Post 1848052)
You should also ensure that you did the file edit as well, else you will have other larger problems as well.

I'll double check that I didn't miss anything, but I was really carefully to do everything exactly as described for the install. Everything seemed to go smoothly with no errors. I remember doing the template edit, but I guess I didn't do it right?

Can you be more specific about the "file edit"? I'm not sure if I know which "file edit" you're referring to.

Cyricx 07-13-2009 08:37 PM

Quote:

Originally Posted by joyfulmiller (Post 1848283)
I'll double check that I didn't miss anything, but I was really carefully to do everything exactly as described for the install. Everything seemed to go smoothly with no errors. I remember doing the template edit, but I guess I didn't do it right?

Can you be more specific about the "file edit"? I'm not sure if I know which "file edit" you're referring to.

Step 4 of the install.txt file states:

Code:

4. FILE EDIT
 In:
 /includes/class_mail.php
 **************
 FIND:
 **************
  $headers .= preg_replace("#(\r\n|\r|\n)#s", $delimiter, $uheaders);
  unset($uheaders);

 **************
 AND ADD ABOVE IT:
 **************
// ##### START MOD - Email Integration #####
  if (preg_match("/(.*)emailintegration(.*)/", $uheaders, $uheaderparts))
  {
    $eiheaders = $uheaders;
  }
// ##### END MOD - Email Integration #####

 **************
 SAVE AND UPLOAD!
 **************


mykkal 07-15-2009 02:05 AM

Quote:

Originally Posted by Cyricx (Post 1848052)
I'd love to take a peek. I can manually add the fields in if needed. But I'd rather try to figure out why it's not installing right.

ok what is the nest step?

Cyricx 07-15-2009 03:07 AM

Quote:

Originally Posted by mykkal (Post 1848928)
ok what is the nest step?

Send me some login details via PM.

I emptied out my PM box so I can actually see what I'm getting again heh.


All times are GMT. The time now is 03:51 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02048 seconds
  • Memory Usage 1,757KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (10)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete