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)

ispconnect 04-28-2009 07:52 AM

We love using Email Integration, but found a little nasty bug in product-emailreplyint.xml on line 1050 which puts the variable $encoding in the headers instead of it's value. Which causes many mailservers to bounce the e-mails sent.
Code:

$eiheaders .= 'Content-Transfer-Encoding: $encoding' . $delimiter;
The bug can be fixed by changing the single quotes ( ' ) to double quotes ( " )
Code:

$eiheaders .= "Content-Transfer-Encoding: $encoding" . $delimiter;

wmw_meyer 05-12-2009 02:04 PM

Hello there,

I have an issue with receiving emails in Outlook 2003. Is there an FAQ or any documentation apart from this forum where I could search for a solution. Outlook shows the header information in the email body for both txt and HTML based email, something like this:
--------------------------------------------------------------------
Reply-To: xx@xx
References: <3.15@emailintegration> <3.36@emailintegration>
Message-Id: <20090512143308.6F20148001@xx>
X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) * on
xxx.local * at Tue, 12 May 2009 16:31:52 +0200
X-Spam-Status: No, hits=-100.0, required=4.5, autolearn=disabled,
shortcircuit=ham
X-Spam-Report: * -100 USER_IN_WHITELIST From: address is in the user's
white-list
X-OriginalArrivalTime: 12 May 2009 14:31:52.0703 (UTC) FILETIME=[649180F0:01C9D30E]

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
-------------------------------------------------------------------------
I have tried switching round some of the header lines but got a little confused over which ones are used. There are references in the crons/emailintegration.php files and in the product-emailreplyint.xml to script that generates emails. Can somebody explain? Strangely the emails that confirm an error work fine but the automated notification email regarding a new post don't.

Am I also right in thinking that if I need to translate the plugin into German most of the language changes should be carried out in: product-emailreplyint.xml

Is it also correct that the user that has posted a message gets an email reminder as well, Shouldn't the author be excluded from the notification even if he has subscribed to the thread. Have I missed a setting to disable this?

I'm slowly making friends with vBulletin and the plugin but not convinced yet ;)
Many thanks
Nadine

Cyricx 05-12-2009 02:21 PM

Quote:

Originally Posted by ispconnect (Post 1800387)
We love using Email Integration, but found a little nasty bug in product-emailreplyint.xml on line 1050 which puts the variable $encoding in the headers instead of it's value. Which causes many mailservers to bounce the e-mails sent.
Code:

$eiheaders .= 'Content-Transfer-Encoding: $encoding' . $delimiter;
The bug can be fixed by changing the single quotes ( ' ) to double quotes ( " )
Code:

$eiheaders .= "Content-Transfer-Encoding: $encoding" . $delimiter;

Will include in the next version when I get time to start working on it.. soon I hope :P


Quote:

Originally Posted by wmw_meyer (Post 1809369)
Hello there,

I have an issue with receiving emails in Outlook 2003. Is there an FAQ or any documentation apart from this forum where I could search for a solution. Outlook shows the header information in the email body for both txt and HTML based email, something like this:
--------------------------------------------------------------------
Reply-To: xx@xx
References: <3.15@emailintegration> <3.36@emailintegration>
Message-Id: <20090512143308.6F20148001@xx>
X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) * on
xxx.local * at Tue, 12 May 2009 16:31:52 +0200
X-Spam-Status: No, hits=-100.0, required=4.5, autolearn=disabled,
shortcircuit=ham
X-Spam-Report: * -100 USER_IN_WHITELIST From: address is in the user's
white-list
X-OriginalArrivalTime: 12 May 2009 14:31:52.0703 (UTC) FILETIME=[649180F0:01C9D30E]

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
-------------------------------------------------------------------------
I have tried switching round some of the header lines but got a little confused over which ones are used. There are references in the crons/emailintegration.php files and in the product-emailreplyint.xml to script that generates emails. Can somebody explain? Strangely the emails that confirm an error work fine but the automated notification email regarding a new post don't.

Am I also right in thinking that if I need to translate the plugin into German most of the language changes should be carried out in: product-emailreplyint.xml

Is it also correct that the user that has posted a message gets an email reminder as well, Shouldn't the author be excluded from the notification even if he has subscribed to the thread. Have I missed a setting to disable this?

I'm slowly making friends with vBulletin and the plugin but not convinced yet ;)
Many thanks
Nadine

I haven't experienced the outlook 2003 bug, but will try to replicate it.

You will need to translate it to german yes. But this should be done through your language manager. Then it will carry over for new versions too, otherwise you will have to redo the edits each time I send out a new version... well.. which should be happening more frequently soon... I hope :)

The user should be receiving an email too, this is the same as occurs with yahoo groups. There is an option, in the user's edit options to disable this. From my experience, very few turn this off as most want to be sure the message went through and are able to best do that by receiving their own post in an email. Otherwise, they aren't sure if it ever goes through.

toivo 05-12-2009 10:36 PM

Is anyone planning to use this add-on with moderated forums?

I have to migrate an email list to a moderated forum, and we have one unmoderated forum already in live production mode. So far I have managed to skip the sending of emails in emailintegration.php and send them through a custom hook and a cloned plugin in moderate.php instead. I am now working on a similar plugin for the inline moderation.

wmw_meyer 05-27-2009 12:49 PM

I am trying to find a good way of allowing users to sign up for an instant email message threads only, what would we the best way to do it:
Currently this is the case:
If a user is only subscribed to the thread, they get vbulletins default thread email.

Tweeterest 05-30-2009 06:19 PM

Quote:

Originally Posted by Bob Ricci (Post 1785434)
One more thing... I seriously think that this should be a native feature of vB. When we try to sell vB to our clients they say that they can use Yahoo for free AND Yahoo emails them a digest daily, or they can get instant replies. The same with chat. Integrated and native to vB.

Diddo! BIIIIIIIG DIDDO! Waiting very anxiously for a 3.8.x version of EI... :up:

bellsh83 06-08-2009 06:41 AM

I got a problem . After install it to version 3.8.2 no new user can sign up. it shows database error.

Is the plugin suitable to version 3.8.2 ?

If you kindly told me where i have to check the error in you plugin so that i can help you to fix the bug:)

Cyricx 06-08-2009 05:32 PM

None of the plugins, intereact at all with the registration system.

I'd suspect this problem would have more to do with issues with other plugins you might have installed.

The best way to test this is to disable the prodcut and see if the bug still occurs.

Or post up the database error you are getting.

bellsh83 06-14-2009 08:56 PM

the new thread email notification is not sending. i tried both mail() and vb mail function. I am using the version 3.8.3 . The email is attached below. Can you kindly tell me why the error occur.

saif.live@yahoo.com
[Main Forum-t-621] ech p ech p ech p ech p ech p ech p
(Please type your reply below this line!!) -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- (Please type your reply above this line!!) You may increase the space between the above lines as needed. ______________________ CURRENT MESSAGE FROM: ech p ech p ech p ech p ech p ech p ech p ech p ech p ech p ech p ech p ech p ech p ech p ech p ______________________ This thread is located at: http://ambersight.com/forumstest2/showthread.php?t=621 To unsubscribe from this forum, please visit this page: http://ambersight.com/forumstest2/su...bscription&f=2 You may reply to this email to post a reply to the forum. You can also begin a new thread by sending an email to saif.live@gmail.com
Date: Sun, 14 Jun 2009 17:41:36 -0400 From: saif Reply-To: saif.live@gmail.com MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: $encoding Message-Id: <621.1860@emailintegration> X-Priority: 3 X-Mailer: vBulletin Mail via PHP

bellsh83 06-14-2009 08:57 PM

In my database there is a fourm id missing so it shows error.

bellsh83 06-14-2009 08:58 PM

Quote:

Originally Posted by Cyricx (Post 1825847)
None of the plugins, intereact at all with the registration system.

I'd suspect this problem would have more to do with issues with other plugins you might have installed.

The best way to test this is to disable the prodcut and see if the bug still occurs.

Or post up the database error you are getting.

In my database a forum id was missing show it showed error.

lbernstein 06-16-2009 08:23 PM

Is there a way of increasing the number of forumids that can be added to the "Email Reply Integration Settings" from within the Usergroup Manager? I seem to be able to add only 100 characters (which include commas and spaces).

I am also wondering when configuring the settings within the Forum Manager, whether the "Hostname of the above email" should be pop.ambersight.com or smtp.ambersight.com?

Thanks

mjname 06-17-2009 01:22 AM

I'm being told by my host provider that IMAP is not available for PHP5. does anyone have a clue what I can do? I'm a little lost in what to do next. I would really like to have the ability to email some of my forums.

mykkal 06-18-2009 12:29 PM

Quote:

Originally Posted by Cyricx (Post 1825847)
None of the plugins, intereact at all with the registration system.

I'd suspect this problem would have more to do with issues with other plugins you might have installed.

The best way to test this is to disable the prodcut and see if the bug still occurs.

Or post up the database error you are getting.

can i get some help please? I've asked a million times.

lbernstein 06-18-2009 05:38 PM

Is anyone interested in a quick consulting job to help me fix my Email Integration problems? Please PM me if you are.

joyfulmiller 07-08-2009 05:39 PM

I have vBulletin installed in a folder that is protected with aMember. Will this mod work with my 3.8.3 vBulletin since it's located in a protected directory? I imagine the emails will send okay, but will the replies by email work?

Cyricx 07-08-2009 07:17 PM

Quote:

Originally Posted by mjname (Post 1831036)
I'm being told by my host provider that IMAP is not available for PHP5. does anyone have a clue what I can do? I'm a little lost in what to do next. I would really like to have the ability to email some of my forums.

I suspect your host is blowing smoke.. I'm running PHP 5.2.6, MYSQL 5.0.27 and IMAP Server 1.0 with no issues at all.

You don't have to use IMAP though. You can connect with pop3 as well.



Quote:

Originally Posted by lbernstein (Post 1830909)
Is there a way of increasing the number of forumids that can be added to the "Email Reply Integration Settings" from within the Usergroup Manager? I seem to be able to add only 100 characters (which include commas and spaces).

I am also wondering when configuring the settings within the Forum Manager, whether the "Hostname of the above email" should be pop.ambersight.com or smtp.ambersight.com?

Thanks

Database field overlook. Use phpmyadmin or something similar to go into your database, go into the usergroup table and edit the ei_forumid field to set the character limit to 250. This will be fixed in the next version, or I'll have an alternate way for the system to handle this. Not too happy with how it does it now with typing in IDs. *shrug*

As for the hostname, try both. It depends on what you need to use to connect to the box. You can always use the Email Intergration -> Forum Settings Help to test your suspected settings.


Quote:

Originally Posted by joyfulmiller (Post 1845235)
I have vBulletin installed in a folder that is protected with aMember. Will this mod work with my 3.8.3 vBulletin since it's located in a protected directory? I imagine the emails will send okay, but will the replies by email work?

That shouldn't affect things at all. It should work just fine.

Worst case scenario.. fire up a test board and try it out. I always strongly suggest testing new mods on a test board before using them on a live board anyway.

Cyricx 07-08-2009 08:28 PM

Just a quick note for those stating they are having problems running the mod on 3.8

I just copied my board to a test server, upgraded it to 3.8.3, redid the file edit to class_mail.php

And it's working just fine..

mykkal 07-08-2009 09:25 PM

Quote:

Originally Posted by Cyricx (Post 1845358)
Just a quick note for those stating they are having problems running the mod on 3.8

I just copied my board to a test server, upgraded it to 3.8.3, redid the file edit to class_mail.php

And it's working just fine..



I still need the same help I need 4 months ago and have been begging for.

Cyrix reinstalling did not work. Will you ever help me?

If not... just let me know and I will stop asking completely.

Cyricx 07-08-2009 09:48 PM

You'll have to repeat your problem.

The biggest problem people have had is not redoing the file edits after they upgrade vbulletin *sigh*

mykkal 07-08-2009 09:55 PM

Quote:

Originally Posted by Cyricx (Post 1845406)
You'll have to repeat your problem.

The biggest problem people have had is not redoing the file edits after they upgrade vbulletin *sigh*

The problem is where we left it in private messaging. I have reinstalled and followed the upgrade instructions. No matter what I get this error. Can you help me resolve it? A lot of my traffic was based on the email intergration mod and my revenue, etc... is way down now. I'm using php5 and MYSQL 5. The user for SQL has complete access to the database on a dedicated server.

It worked before I attempted this upgrade. Not since tho...

Code:

Database error in vBulletin 3.8.1:

Invalid SQL:
UPDATE vb_forum SET
        title_clean = 'Modeling &amp; Acting Auditions (Metro Miami/Ft. Lauderdale &amp; Florida!)',
        title = 'Modeling &amp; Acting Auditions (Metro Miami/Ft. Lauderdale &amp; Florida!)',
        description_clean = 'Castings in Metro Miami , Orlando, Tampa, and the rest of Florida.',
        description = 'Castings in Metro Miami , Orlando, Tampa, and the rest of Florida.',
        link = '',
        displayorder = 60,
        parentid = 3,
        daysprune = -1,
        defaultsortfield = 'lastpost',
        defaultsortorder = 'desc',
        showprivate = 0,
        newpostemail = '',
        newthreademail = '',
        ### Bitfield: vb_forum.options ###
                options = IF(options & 8, options - 8, options),
                options = IF(options & 16, options - 16, options),
                options = IF(options & 32, options - 32, options),
                options = IF(options & 32768, options - 32768, options),
                options = IF(options & 8192, options - 8192, options),
                options = IF(options & 4, options, options + 4),
                options = IF(options & 1, options, options + 1),
                options = IF(options & 2, options, options + 2),
                options = IF(options & 16384, options, options + 16384),
                options = IF(options & 256, options, options + 256),
                options = IF(options & 64, options, options + 64),
                options = IF(options & 128, options, options + 128),
                options = IF(options & 512, options, options + 512),
                options = IF(options & 1024, options, options + 1024),
                options = IF(options & 2048, options, options + 2048),
                options = IF(options & 4096, options, options + 4096),
                options = IF(options & 65536, options, options + 65536),
                options = IF(options & 131072, options - 131072, options),
        styleid = 0,
        imageprefix = '',
        password = '',
        vbseo_moderatepingbacks = 0,
        vbseo_moderatetrackbacks = 0,
        vbseo_moderaterefbacks = 0,
        chiefpost = 1,
        ei_replyaddress = 'atlanta@jobs.mymodeltalk.com',
        ei_hostname = 'mail.mymodeltalk.com',
        ei_username = 'atlanta@jobs.mymodeltalk.com',
        ei_password = 'getmoney',
        ei_folder = 'INBOX',
        ei_connectiontype = '0',
        ei_usergroups = '2',
        ada_forum = 1,
        ada_style = 3
WHERE forumid = 17;

MySQL Error  : Unknown column 'ei_replyaddress' in 'field list'
Error Number  : 1054
Request Date  : Wednesday, May 27th 2009 @ 10:14:41 AM
Error Date    : Wednesday, May 27th 2009 @ 10:14:41 AM
Script        : http://www.mymodeltalk.com/jobs/admi....php?do=update
Referrer      : http://www.mymodeltalk.com/jobs/admi...o=edit&f=17&s=
IP Address    : 76.97.227.84
Username      : mykkal
Classname    : vB_Database
MySQL Version : 5.0.77-community

Code:

Database error in vBulletin 3.8.1
Invalid SQL:

                                SELECT ei_usergroups, title_clean, ei_active
                                FROM vb_forum
                                WHERE forumid = 57;

MySQL Error  : Unknown column 'ei_usergroups' in 'field list'
Error Number  : 1054
Request Date  : Wednesday, May 27th 2009 @ 10:24:10 AM
Error Date    : Wednesday, May 27th 2009 @ 10:24:11 AM
Script        : http://www.mymodeltalk.com/jobs/admincp/usergroup.php?do=update
Referrer      : http://www.mymodeltalk.com/jobs/admincp/usergroup.php?do=edit&usergroupid=2
IP Address    : 76.97.227.84
Username      : mykkal
Classname    : vB_Database
MySQL Version : 5.0.77-community


Cyricx 07-08-2009 10:38 PM

The tone of voice isn't very encouraging for making me want to help, but whatever.

Your missing some fields in your database. I'll run a test of this on the test board and try to duplicate it. The two fields your missing are from version 1.0 and version 2.2, so it makes me think your missing more then just those two.

What version of vbulletin are you running?

mykkal 07-08-2009 11:30 PM

Quote:

Originally Posted by Cyricx (Post 1845437)
The tone of voice isn't very encouraging for making me want to help, but whatever.

What exactly should I sound like after ASKING and WAITING more then 4 months for help when others get it same day?

Especially after I've supported you for more then 3 years.
One second... Did you really say that?

I am running vbulletin version 3.8.

Cyricx 07-09-2009 01:34 PM

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?

lbernstein 07-09-2009 04:11 PM

Quote:

Originally Posted by Cyricx (Post 1845301)
Database field overlook. Use phpmyadmin or something similar to go into your database, go into the usergroup table and edit the ei_forumid field to set the character limit to 250. This will be fixed in the next version, or I'll have an alternate way for the system to handle this. Not too happy with how it does it now with typing in IDs. *shrug*

That's great that I can expand it. Do I edit the "char" or the "varchar" variable to expand the character limit to 250?

Thanks again.

Cyricx 07-09-2009 04:21 PM

Nope, varchar type field allows for 250 character limit.

So just edit the number 100 to 250 and that's it.

Fungsten 07-09-2009 06:09 PM

Quote:

Originally Posted by Cyricx (Post 1845864)
Nope, varchar type field allows for 250 character limit.

So just edit the number 100 to 250 and that's it.

Here's what I have for the "ei_forumid":

varchar(100) A pull down menu and a blank line. Where should it be changed?

Cyricx 07-09-2009 06:13 PM

Can you provide a screenshot? I'm unable to determine how to assist you from what you've typed there. It largely depends upon what program your using to interface with your database and the version of that program. Ultimately, you need to edit the field to change the 100 to 250.

Fungsten 07-09-2009 06:23 PM

Quote:

Originally Posted by Cyricx (Post 1845931)
Can you provide a screenshot? I'm unable to determine how to assist you from what you've typed there. It largely depends upon what program your using to interface with your database and the version of that program. Ultimately, you need to edit the field to change the 100 to 250.

This is in phpMyAdmin:

Attachment 101761

Cyricx 07-09-2009 06:35 PM

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.

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 02:37 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.02627 seconds
  • Memory Usage 1,911KB
  • 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
  • (7)bbcode_code_printable
  • (24)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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