vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Private Messages Enhancements - Popup Private Messaging (https://vborg.vbsupport.ru/showthread.php?t=196026)

JorgeX 01-14-2009 07:16 PM

Quote:

Originally Posted by Leo Brazil (Post 1711122)
It's not working after upgraded to 3.8

I'm gonna try the manual templet edition to see how it goes.

Edit: After manual edition the MP box was messed up. Too bad.


Leo do brasil

Soy Jorge de Argentina.

El error que describris, podes solucionarlo de esta manera:

anda al footer, busca por $popuppm, y cambialo por $pmpopup

This hack WORKS on vB 3.8, u must do template changes mannualy, but the "footer" instance is bad on the instructions, you must reverse the order, the correct word is "$pmpopup"



THE PROBLEM WITH "PAGE BLANK" ON SECOND CLICK ONLY HAPPENS ON FIREFOX, NOT IN IE 7.

Trek 01-14-2009 08:12 PM

Can one of you correct this and release it for vB 3.8 or otherwise send me a copy? Or instructions in English works for me too. =)

Leo Brazil 01-15-2009 04:59 PM

Quote:

Originally Posted by JorgeX (Post 1712443)
Leo do brasil

Soy Jorge de Argentina.

El error que describris, podes solucionarlo de esta manera:

anda al footer, busca por $popuppm, y cambialo por $pmpopup

This hack WORKS on vB 3.8, u must do template changes mannualy, but the "footer" instance is bad on the instructions, you must reverse the order, the correct word is "$pmpopup"



THE PROBLEM WITH "PAGE BLANK" ON SECOND CLICK ONLY HAPPENS ON FIREFOX, NOT IN IE 7.

Hola Jorge !

It worked great after your tip on 3.8.0

By the way, for all people here trying to use this on 3.8.0 you must manually edit the templates according to instructions on the file of this mod and correct but pay attention to the footer template edition, instructions are incorrect, the right word is "$pmpopup"

Tested on IE7 only and have to test on FF yet.

Muchas Gracias

jayzy1 01-19-2009 10:29 PM

worked on my v3.8 without any template modifications. Very easy to install and working fine. Thanks for great mod.

http://www.getthroughguides.co.uk/forum/

HaS?R 01-28-2009 04:39 PM

Thanks.Seems Good.

Leo Brazil 01-29-2009 10:09 AM

Hi Guys, I found another bug on this probably someone here have a solution.
I'm on 3.8.0 but I've been trying to track this issue since 3.7.4 so probably for those running on 3.7 will get the same issue as well.

I was not sure what mod was causing this but RSS Feeds were all dead with Internet Explorer 7 but Fire Fox were all correct.

It seems the template edit on headinclude. I'm placing here just a small piece of mine headinclude templete that is causing this issue:

Code:

</if>
<!-- / CSS Stylesheet -->
<link rel="stylesheet" href="clientscript/dhtmlwindow.css" type="text/css" />
<script type="text/javascript" src="clientscript/dhtmlwindow.js"></script>

Does someone here can confirm this issue ?

Any tips to clean this out ?

g0dfather1984 01-31-2009 05:30 PM

Ever since I uninstalled this, my private messages have not worked when trying to send someone a message from their profile or from the postbit.

Any help please?

SBlueman 02-01-2009 01:14 AM

Quote:

Originally Posted by SBlueman (Post 1701445)
So is there a way to automatically plugin the username of the person you want the PM sent to? Some members find it tedious to have an extra step they didn't have before.

Anyone?

TheLastSuperman 02-01-2009 01:21 AM

Quote:

Originally Posted by SBlueman (Post 1701445)
So is there a way to automatically plugin the username of the person you want the PM sent to? Some members find it tedious to have an extra step they didn't have before.

Same here, only reason I uninstalled.. wanted to help a friend w/ it but I know they would say the same thing!

When Rob gets around to it I guess or one of us has time to tinker ;)

S-MAN

Bilderback 02-02-2009 03:52 PM

@g0dfather1984
After uninstalling it, did you also remove the template edits performed when you installed?
There were several template edits which need reversed if you uninstalled. (goes with any TE mod)

phreebsd 02-03-2009 05:31 PM

I found one problem when this mod is installed. My forum is 3.8.1.
When this mod is enabled and you have welcome PM's turned on, after the user receives their email to click on to activate their account they receive this error.

Fatal error: Call to a member function clean_gpc() on a non-object in /home/********/public_html/includes/class_dm_user.php(2595) : eval()'d code on line 1

Their account still activates but the error above is all they see upon clickin the activation link.
They also never receive the PM.
Once you take the name out (username welcome PM's will come from) out of vbulletin options -> user registration options they can activate with no issues.

AWJunkies 02-08-2009 12:29 AM

I have same issue noted above been trying to find the culprit of the issue (mod) for quite some time finally found it.

To fix the issue you need to do a if statement around a plugin. Since the newpm does not have global $vbulletin value it errors the second the plugin tries to clean the value.

Change Popup PM Postbit Link postbit_display_start:
PHP Code:

if ($_POST['do'] == 'insertpm')
{
$vbulletin->input->clean_gpc('p''fbpm'TYPE_STR);

if (
$vbulletin->GPC['fbpm'] == 'yes')
{
    
$fbpmmessage '<strong>Message sent successfully!</strong> <a href="private.php?do=newpm&amp;fbpm=newpm">Send another?</a>';
    eval(
'print_output("' fetch_template('pm_fbpm') . '");');
}


Just added if statement around it to make sure this is a post insert request and NOT any internal pms being sent by any mod or any vb itself.

phreebsd 02-09-2009 05:11 PM

works perfectly.
thanks a lot.

AWJunkies 02-09-2009 07:34 PM

No problem :)

Reycer 02-10-2009 02:02 AM

this is a VERY WELCOMED addition to our forum! Thanks!

Leo Brazil 02-10-2009 10:03 AM

Quote:

Originally Posted by Leo Brazil (Post 1728018)
Hi Guys, I found another bug on this probably someone here have a solution.
I'm on 3.8.0 but I've been trying to track this issue since 3.7.4 so probably for those running on 3.7 will get the same issue as well.

I was not sure what mod was causing this but RSS Feeds were all dead with Internet Explorer 7 but Fire Fox were all correct.

It seems the template edit on headinclude. I'm placing here just a small piece of mine headinclude templete that is causing this issue:

Code:

</if>
<!-- / CSS Stylesheet -->
<link rel="stylesheet" href="clientscript/dhtmlwindow.css" type="text/css" />
<script type="text/javascript" src="clientscript/dhtmlwindow.js"></script>

Does someone here can confirm this issue ?

Any tips to clean this out ?

Anyone here running this mod with template edits got a way to get RSS Feeds working on IE ?

inciarco 02-14-2009 10:40 PM

Great Mod, Thank You For Sharing it. :up::up::up:

Could you please tell me the Plugin and Template Changes (and/or also the Additional Plugins I Should Create), to use the Mod with the vBulletin Blogs? :confused:

My Best Regards.

:)

Reycer 02-22-2009 02:08 PM

our members have found a small problem. When sending a message via this mod. The message does not show up in the sent folder. Not really a "big" deal, but some users have thought that their messages aren't being sent, because they don't show up in that folder.

Reycer 02-25-2009 01:11 AM

any updates?

We have also discovered that this does not work in the Blog.

Reycer 02-25-2009 02:54 PM

hmmmm.....am I to guess that this is no longer being supported?

Mahar 03-02-2009 03:00 AM

Is it possible to get this working for 3.8.x?

LakeAnna 03-04-2009 05:31 PM

I really like this mod, but I am using VBAdvanced CMPS and the window is loading my header, left column and right column - is there something I can do to eliminate this and just launch the window for the PM. Thanks.

LakeAnna 03-06-2009 12:20 PM

any help...

dlcVB 03-16-2009 06:54 AM

Quote:

Originally Posted by Mahar (Post 1758169)
Is it possible to get this working for 3.8.x?

Mahar,
After trying to get this to work and failing I have figured out what the problem was. When you install it there is an option in the settings that says: "Usergroups That Can Use Popup PM:
Enter the Usergroup IDs of the usergroups you want to allow access to the Popup PM popup feature. Leave blank to show for all users. Separate by commas, i.e. 1,2,3"

You cannot leave this blank as it says you can. Once I filled in the usergroup for my test user, it started working. This is running on 3.8.1

Good luck,
Joel

pooslokka 03-17-2009 11:17 AM

Hai Thank you and works really well !

vijayninel 03-20-2009 03:58 AM

In 3.8.1 the popup works fine the first time you try to send a message...But the second time you try to send a PM to to anyone it shows just a blank popup. :confused:

Leo Brazil 03-25-2009 06:24 PM

Quote:

Originally Posted by Leo Brazil (Post 1728018)
Hi Guys, I found another bug on this probably someone here have a solution.
I'm on 3.8.0 but I've been trying to track this issue since 3.7.4 so probably for those running on 3.7 will get the same issue as well.

I was not sure what mod was causing this but RSS Feeds were all dead with Internet Explorer 7 but Fire Fox were all correct.

It seems the template edit on headinclude. I'm placing here just a small piece of mine headinclude templete that is causing this issue:

Code:

</if>
<!-- / CSS Stylesheet -->
<link rel="stylesheet" href="clientscript/dhtmlwindow.css" type="text/css" />
<script type="text/javascript" src="clientscript/dhtmlwindow.js"></script>

Does someone here can confirm this issue ?

Any tips to clean this out ?

Just bumping this again. Anyone also could reproduce this error on IE ?

dxflw 03-29-2009 07:16 PM

Its works fine on vb 3.8.1 but i have a little problem with the box size, looks too small..the members needs to use the bars of the browser to see the content.

How do i incrase the size (width & height) of the popup box?

Nice work.Thanks for the add'on!

GhoHan 04-06-2009 11:39 AM

Tested on vb 3.8.1 found some bugs, Try to open and close then open again, screen is blank. :)

SemperFideles 04-10-2009 12:29 AM

I guess this no longer works for v3.8.1?

down.low 04-11-2009 04:08 AM

So is it confirmed a no-go for vB3.8.x) anybody have any idea?

Reycer 04-12-2009 03:46 PM

it was working fine for me, but then when I upgraded to 3.8.2 it quit working and I had to disable it. Would love to have it back though.

MmS1 04-18-2009 09:58 PM

Quote:

Originally Posted by i-comers.com (Post 1784961)
Tested on vb 3.8.1 found some bugs, Try to open and close then open again, screen is blank. :)

Me too but in 3.7.5

It's work in other style but my style nothing just blank page

BlueNinjaGo 04-18-2009 11:56 PM

3.7.3 and had no luck getting it to work.

MmS1 04-19-2009 10:08 PM

UNINSTALLED there's no support

odln018 04-22-2009 06:32 PM

Same issue with blank screen on second opening. - Uninstalled.

sparklywater 06-13-2009 03:30 AM

I'd be grateful if anyone can help me get this working with the Private Message Attachments mod. I've managed to use the $attachmentoption variable to show the 'Manage Attachments' button in the popup-window, but the attached files don't show up in the sent PMs (nor does the paperclip show up next to the message in the PM inbox). Everything else works fine when sending attachmentsin PMs through the standard method, they only don't work when using the Popup PM window. If anyone has managed to get this working, please let us know.

daxxer 07-01-2009 03:08 PM

dunno if this was mentioned earlier but the messages sent through the popup are not saved as sent. They are not saved at all. Otherwise this is a great mod. Uninstalled.

ricardoNJ 07-18-2009 08:11 AM

I want to change the "send a Private Message to " in another language. I'm seaching the word but I can't found it!

sparklywater 07-18-2009 05:59 PM

Quote:

Originally Posted by daxxer (Post 1840798)
dunno if this was mentioned earlier but the messages sent through the popup are not saved as sent. They are not saved at all. Otherwise this is a great mod. Uninstalled.

I'm not having this problem in vB 3.7.2


All times are GMT. The time now is 06:05 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.01391 seconds
  • Memory Usage 1,830KB
  • 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
  • (3)bbcode_code_printable
  • (1)bbcode_php_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (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