vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   PM Auto Reply (https://vborg.vbsupport.ru/showthread.php?t=116325)

Eq4bits 08-03-2006 09:28 PM

Will this be ported to work with vB 3.6?

aos101 08-25-2006 09:09 PM

Found a bug with this plugin with the PM autoforward. If the autoreply is not enabled, but a user for messages to be automatically forwarded to is set, then PMs received are still forwarded to the other user (is this meant to happen?) and because of the way it is coded, the forwarded PM doesn't have a "fromusername" or "fromuserid" set and so the forwarded PM appears to have been sent by no one. I think this can be fixed by only forwarding the message if the message is having an auto reply sent.

Handbag 09-22-2006 12:30 PM

Hi there,

I've followed the instructions as specified, for 3.5.4, and everything shows up as it should both in the user options page and the backend.

However nothing seems to happen when a user sets a away PM. When you save the options page, and then go back ot it the on box for auto reply is ticked off, and the away message isn't there anymore. it also doesn;t seem to be sending an away PM either. Any idea why this might be happening?

Ramsesx 12-16-2006 10:17 AM

Sad it doesn't work for 3.64, is hellcat still alive?

mostof 01-20-2007 06:39 PM

Quote:

Originally Posted by Ramsesx (Post 1139645)
Sad it doesn't work for 3.64, is hellcat still alive?

Good question...

FreshFroot 04-25-2007 11:37 PM

looks like I have to take off another hack I liked.... :(

Ghettellectual 07-28-2007 02:42 AM

Siggggggggghhhhhhhhhhhhhhhhhhhhhhh...

This mod saved me so many headaches and now I'm upgrading to 3.6.8. BLAH.

Hornstar 08-06-2007 03:25 AM

So Glad I found this! this will be perfect while i'm gone for a month

chatzworld 08-06-2007 10:44 AM

yeh very handy mod and works fine on 3.6.8 not had any probs at all

thetootall 08-11-2007 02:19 AM

We are running 3.6.0 and when we installed this tonight, the Edit Options link goes to a blank page. Any clue on how to fix this? My mods are desperate for this feature!!

Jeordie015 08-22-2007 03:32 AM

I think I've run into a problem with how this hack deals with usergroups since you can only specify which groups to disallow access to it.

In my case, I only want admins, mods, and the advanced member levels to have access to this. If someone is in the advanced usergroup, then their primary usergroup is the basic Registered Users group, and then the advanced usergroup is set as an additional usergroup.

So how would I be able to get the users in the advanced usergroup to have access to this while keeping regular members out with my current setup?

Ramsesx 10-06-2007 02:49 PM

Quote:

Originally Posted by chatzworld (Post 1311067)
yeh very handy mod and works fine on 3.6.8 not had any probs at all

If you're wondering why you get a lower registration rate, try to register yourself and look what's happening if you place the registration link.
Fatal error: Call to a member function on a non-object in /home/chatsuk/public_html/includes/class_dm_user.php(2490) : eval()'d code on line 9

carphead 11-02-2007 10:00 AM

I've tried to get this to work on a 3.6.8 install. I've reverted the modifyoptions template. Put the edit in to the template at the correct line and nothing appears in the options part.

Any suggestions? There are no excluded groups.

Spinball 01-01-2008 07:54 PM

Getting an error with 3.6.8 and PHP 5 when trying to send a PM:
Quote:

Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /private.php(1167) : eval()'d code on line 46

Fatal error:
Please complete both the subject and message fields.
Unable to proceed with save while $errors array is not empty in class vB_DataManager_PM in /includes/class_dm.php on line 765

Code Monkey 04-23-2008 10:37 PM

Quote:

Originally Posted by Spinball (Post 1413358)
Getting an error with 3.6.8 and PHP 5 when trying to send a PM:


That went away for me when I went into the plugin code and switched all instances of mysql_fetch_array() with the proper $vbulletin->db->fetch_array() function.

frosch68 05-04-2008 08:00 AM

Quote:

Originally Posted by Code Monkey (Post 1497710)
That went away for me when I went into the plugin code and switched all instances of mysql_fetch_array() with the proper $vbulletin->db->fetch_array() function.

this changing has no effect for me in vB 3.6.10 and php 5 ... any other ideas ?

LoRdGd 05-19-2008 04:01 PM

Hello!
Super MOD!

But, can anybody make a ACP integration for this?

Spinball 06-14-2008 08:45 PM

This works with 3.7.1 pl1

smooth-c 07-01-2008 09:48 PM

Works fine with 3.7.1 Here aswell except I get the error line above the redirection page saying;

Warning: array_merge() [function.array-merge]: Argument #1 is not an array in [path]/private.php(1222) : eval()'d code on line 46

Any way of fixing this?

Greg

ZexTasy 07-09-2008 06:38 AM

@smooth-c

To fix the errormessage, apply the following changes to the product xml file:

In the product xml-file find:
PHP Code:

$repm->pre_save();
$re_errors array_merge($re_errors$repm->errors); 

Write this between those two lines:
PHP Code:

$re_errors = array(); 

So that it becomes:
PHP Code:

$repm->pre_save();
$re_errors = array();
$re_errors array_merge($re_errors$repm->errors); 

In the product xml-file find:
PHP Code:

$repm->pre_save();
$fw_errors array_merge($fw_errors$repm->errors); 

Write this between those two lines:
PHP Code:

$fw_errors = array(); 

So that it becomes:
PHP Code:

$repm->pre_save();
$fw_errors = array();
$fw_errors array_merge($fw_errors$repm->errors); 

After that just import the product again with overwrite.

Alternatively you could also edit the plugin directly in the plugin-manager, edit the plugin Send the Auto-Reply with hook location private_insertpm_complete and do the changes mentioned above directly in there, but personally I like to have a correct xml plugin file available to import again if necessary! ;)

Good luck!

- ZexTasy

Konstantinos 07-14-2008 12:42 PM

Warning: Invalid argument supplied for foreach() in /includes/functions.php on line 3743 in 3.6.10 in editoptions page

MerchantMilan 11-11-2008 02:00 PM

Quote:

Originally Posted by ZexTasy (Post 1570767)
Post.

Thank you so much! This mod works perfectly in 3.7.3 with your changes.

MikesSite 03-11-2009 01:56 AM

Quote:

Originally Posted by ZexTasy (Post 1570767)
@smooth-c

To fix the errormessage, apply the following changes to the product xml file:

In the product xml-file find:
PHP Code:

$repm->pre_save();
$re_errors array_merge($re_errors$repm->errors); 

Write this between those two lines:
PHP Code:

$re_errors = array(); 

So that it becomes:
PHP Code:

$repm->pre_save();
$re_errors = array();
$re_errors array_merge($re_errors$repm->errors); 

In the product xml-file find:
PHP Code:

$repm->pre_save();
$fw_errors array_merge($fw_errors$repm->errors); 

Write this between those two lines:
PHP Code:

$fw_errors = array(); 

So that it becomes:
PHP Code:

$repm->pre_save();
$fw_errors = array();
$fw_errors array_merge($fw_errors$repm->errors); 

After that just import the product again with overwrite.

Alternatively you could also edit the plugin directly in the plugin-manager, edit the plugin Send the Auto-Reply with hook location private_insertpm_complete and do the changes mentioned above directly in there, but personally I like to have a correct xml plugin file available to import again if necessary! ;)

Good luck!

- ZexTasy

This also works in 3.8. Thanks!

MikesSite 03-22-2009 07:57 PM

I was wondering if there's a way to add $pmautoreply_option onto a custom page I have built to avoid adding to modifyoptions. I would like to create a page with just this on there.

http://img149.imageshack.us/img149/5...toowide7ry.png

Thanks.

MikesSite 09-14-2009 09:49 PM

Forced to uninstall. THIS WILL MESS UP YOUR 3.8 FORUM!!!

pigsy 10-13-2009 06:45 PM

can anyone else confirm/deny how this works on 3.8? Is there an alternative?

MikesSite 10-13-2009 06:51 PM

This does not work on 3.8

BigBass 11-05-2009 10:02 AM

anybody know if this will work with vb 3.8

rfsforums 08-21-2010 12:41 AM

any plans to port this to 4.x ? I really would like to have this.
Thanks!


All times are GMT. The time now is 10:10 PM.

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.01431 seconds
  • Memory Usage 1,806KB
  • 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
  • (12)bbcode_php_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (29)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