Log in

View Full Version : Major Additions - [AJAX] vB Pager 3.0.4


Pages : 1 2 3 4 [5] 6

da420
09-09-2006, 09:03 PM
Yes.

Some it does some it doesnt.

Everything worked for me, but the pop-up window.

Carly
09-10-2006, 12:59 AM
Anyone know how to fix isolated incidents of members having the unread pages show up on forumhome, but when they open the pager inbox, it says there are no new pages?

Not a usergroup/settings problem, already checked that.

Thanks

blind-eddie
09-10-2006, 11:11 AM
Anyone know how to fix isolated incidents of members having the unread pages show up on forumhome, but when they open the pager inbox, it says there are no new pages?

Not a usergroup/settings problem, already checked that.

Thanks





admincp/vBa CMPS/defaultsettings/Portal Output Global Variables

This is where the Global Variable for the pager should go, but I cant find what the Global Variable word is, I have tried many. If anyone knows please let me know.

Carly
09-10-2006, 06:34 PM
We don't use CMPS, so we don't have that option. Wish I could help out with the Global Variable.

MediaHound
09-10-2006, 09:38 PM
Awesome mod, everyone so far loves it on the board! Thank you for making this available!

I have a question:
How do we construct an URL using vb that allows the members to click and it will open the pager window with the sendee's name pre-filled, listed as a recipient?
Then once I know how to construct this url, I'll do an "if" conditional in postbit_legacy so when a user is online, they get an icon similar to https://vborg.vbsupport.ru/external/2006/09/5.gif that's a icon to SendPage.

If anyone has any tips here, it's greatly appreciated. Thanks again!

toolblast
09-10-2006, 10:14 PM
Hello!

When will this amazing mod be ported to vb 3.6?? I'd really like to use it! But I dont know if it works with 3.6 :(

MediaHound
09-10-2006, 10:50 PM
Hello!

When will this amazing mod be ported to vb 3.6?? I'd really like to use it! But I dont know if it works with 3.6 :(

It works, give it a whirl.

toolblast
09-10-2006, 10:57 PM
It works, give it a whirl.

It works with vb 3.6??? If it does that would be amazing.

MediaHound
09-10-2006, 11:51 PM
Looks like its working on mine...

toolblast
09-11-2006, 12:35 AM
ok great! I'll test it on mine.

I guess there wasn't any real changes to the vbulletin buddy system in 3.6

hotwheels
09-11-2006, 12:39 AM
I have had this since the beginning and it works, but has a few flaws..........One is, messages take for ever to recieve.......I had one sent to me today and it still hasn't shown up......It show's it's there, but for some reason, it takes up to 8 hours to get the message to pop up.....

toolblast
09-11-2006, 12:52 AM
Maybe it just doesnt properly refresh to check for new messages?

hotwheels
09-11-2006, 07:13 PM
not sure...........I finally just disabled it for now.

DJ Matt4684
09-11-2006, 09:37 PM
Is anybody getting an error when you go to Quick Links and then open vbpager? The system seems to work decent on my forum, but for some reason when I go to Quick Links and open vbpager I am getting the "page not found". I am not sure why this is because before it was working fine and now it isn't.

BlueKnight
09-12-2006, 12:03 AM
uhh anyone gonna give me some advice here?

MediaHound
09-12-2006, 02:09 AM
It sounds like you didn't modify the templates properly.
What other mods are you running?

MediaHound
09-12-2006, 02:09 AM
thats @ BK

johon
09-13-2006, 09:25 AM
Works without problems on my 3.6 Gold

MediaHound
09-13-2006, 03:04 PM
I have a question:
How do we construct an URL using vb that allows the members to click and it will open the pager window with the sendee's name pre-filled, listed as a recipient?
Then once I know how to construct this url, I'll do an "if" conditional in postbit_legacy so when a user is online, they get an icon similar to https://vborg.vbsupport.ru/external/2006/09/5.gif that's a icon to SendPage.

If anyone has any tips here, it's greatly appreciated. Thanks again!

bump ditty dump dump

Carly
09-13-2006, 03:16 PM
Anyone know how to fix isolated incidents of members having the unread pages show up on forumhome, but when they open the pager inbox, it says there are no new pages?

Not a usergroup/settings problem, already checked that.

Thanks

just want to bump this. I cannot figure out what to do!

RFViet
09-13-2006, 06:11 PM
Works without problems on my 3.6 Gold

Good news :laugh:

danny75
09-13-2006, 08:48 PM
my problem :cross-eyed:
can help me?

danny75
09-14-2006, 06:50 AM
okay, thanks, finish

dakar
09-17-2006, 03:22 AM
Anyone know how to fix isolated incidents of members having the unread pages show up on forumhome, but when they open the pager inbox, it says there are no new pages?

Not a usergroup/settings problem, already checked that.

Finally got around to upgrading today, from 3.5.4 to 3.6.1 and now having the same issue... wanted to check this thread for a possible solution...

Carly you get a free bump, if you find the offending problem LMK meanwhile I'll continue digging.

aberg
09-17-2006, 07:29 AM
Works fine with v3.6.1 but don't revert templates but compare them and change the needful thinks.
Most of the errors are comming through the revert of the templates

danny75
09-17-2006, 12:51 PM
hello,

i have 3.6.1.

Warnung: Division by zero in /includes/functions.php (Zeile 1990)
// ################################################## ###########################
/**
* Returns the HTML for multi-page navigation - based on code from 3dfrontier.com
*
* @param integer Total number of items found
* @param string Base address for links eg: showthread.php?t=99{&page=4}
* @param string Ending portion of address for links
*
* @return string Page navigation HTML
*/
function construct_page_nav($pagenumber, $perpage, $results, $address, $address2 = '')
{
global $vbulletin, $vbphrase, $stylevar, $show;

$curpage = 0;
$pagenav = '';
$firstlink = '';
$prevlink = '';
$lastlink = '';
$nextlink = '';

if ($results <= $perpage)
{
$show['pagenav'] = false;
return '';
}

$show['pagenav'] = true;

$total = vb_number_format($results);
$totalpages = ceil($results / $perpage);

$show['prev'] = false;
$show['next'] = false;
$show['first'] = false;
$show['last'] = false;

if ($pagenumber > 1)
{
$prevpage = $pagenumber - 1;
$prevnumbers = fetch_start_end_total_array($prevpage, $perpage, $results);
$show['prev'] = true;
}
if ($pagenumber < $totalpages)
{
$nextpage = $pagenumber + 1;
$nextnumbers = fetch_start_end_total_array($nextpage, $perpage, $results);
$show['next'] = true;
}

// create array of possible relative links that we might have (eg. +10, +20, +50, etc.)
if (!is_array($vbulletin->options['pagenavsarr']))
{
$vbulletin->options['pagenavsarr'] = preg_split('#\s+#s', $vbulletin->options['pagenavs'], -1, PREG_SPLIT_NO_EMPTY);
}

while ($curpage++ < $totalpages)
{
($hook = vBulletinHook::fetch_hook('pagenav_page')) ? eval($hook) : false;

if (abs($curpage - $pagenumber) >= $vbulletin->options['pagenavpages'] AND $vbulletin->options['pagenavpages'] != 0)
{
if ($curpage == 1)
{
$firstnumbers = fetch_start_end_total_array(1, $perpage, $results);
$show['first'] = true;
}
if ($curpage == $totalpages)
{
$lastnumbers = fetch_start_end_total_array($totalpages, $perpage, $results);
$show['last'] = true;
}
// generate relative links (eg. +10,etc).
if (in_array(abs($curpage - $pagenumber), $vbulletin->options['pagenavsarr']) AND $curpage != 1 AND $curpage != $totalpages)
{
$pagenumbers = fetch_start_end_total_array($curpage, $perpage, $results);
$relpage = $curpage - $pagenumber;
if ($relpage > 0)
{
$relpage = '+' . $relpage;
}
eval('$pagenav .= "' . fetch_template('pagenav_pagelinkrel') . '";');
}
}
else
{
if ($curpage == $pagenumber)
{
$numbers = fetch_start_end_total_array($curpage, $perpage, $results);
eval('$pagenav .= "' . fetch_template('pagenav_curpage') . '";');
}
else
{
$pagenumbers = fetch_start_end_total_array($curpage, $perpage, $results);
eval('$pagenav .= "' . fetch_template('pagenav_pagelink') . '";');
}
}
}

($hook = vBulletinHook::fetch_hook('pagenav_complete')) ? eval($hook) : false;

eval('$pagenav = "' . fetch_template('pagenav') . '";');
return $pagenav;
}

// ################################################## ###########################
can you help me?

dakar
09-17-2006, 05:39 PM
Okay found my bug (self imposed) for some reason the code modification didn't show up on the footer template before I reverted them as a difference.

redlabour
09-18-2006, 03:34 PM
Watch this Suggestions :

English (http://www.vbulletin.com/forum/showthread.php?t=201267)

German (http://www.vbulletin-germany.com/forum/showthread.php?t=25888)

Roxie
09-18-2006, 03:38 PM
Okay found my bug (self imposed) for some reason the code modification didn't show up on the footer template before I reverted them as a difference.

Can you tell me more about your issue?

Ronak
09-18-2006, 04:37 PM
Can i use this for vB 3.6.0 ?

nymyth
09-18-2006, 04:39 PM
^^are u serious???? theres like 5 pages + answering this......lol

Peace

dakar
09-18-2006, 04:52 PM
Can you tell me more about your issue?

Simple stupid mistake, there is a chunk of code that is needed at the bottom of the footer template... when I upgrade vB, of course it said my footer needed to be reverted but when I compared the new/old either it didn't show me the diff or I overlooked it.. As soon as I added that chunk back in everything was sorted out.

johon
09-19-2006, 11:34 AM
When you update your IE with the optional Update KB912945, the vBPager-Popup is deactivated under a windows popup
http://msdn.microsoft.com/workshop/graphics/activating_activex_fig02.gif
This is a change because the EOLAS patent and it will be in all further cumultative patches of the IE and also in the IE 7 final.

It is described here: http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/overview/activating_activex.asp

What changes have I to make to get rid of this windows pop-up? As far as I understand, the function must be no embedded but an external call.

Any suggestions? Even if I uninstall the patch - it will be just a question of time when the problem pops up again.

Thank you for your support!

Regards

Johon

Did anyone found out how to solve this problem?

Greetz

Johon

widemind
09-20-2006, 10:05 PM
Can i use this for vB 3.6.0 ?

Yes - works fine for 3.6.0

widemind
09-20-2006, 10:09 PM
Did anyone found out how to solve this problem?

Greetz

Johon

I read once somewhere that ActiveX had some sort of software agreement issue thinger me'jigger with Microsoft and now they require you to agree to start the ActiveX controllers... anyway - it's a big long story and I don't remember it. To make it short - google the error you're getting, and there is a program you can download to get rid of it. This is an error being caused by your own computer software - not this script.

stcont
09-20-2006, 10:43 PM
3.6.1 well works

gothicuser
09-23-2006, 05:21 AM
Since upgrading both the pager and vB to 3.6.1 I have lost the pop-ups within vBAdvanced ????
Anyone worked out why yet, or know of a solution?
For example, should I enter any variables into the "Portal Output Global Variables" ? in the vBA AdminCP.

blind-eddie
09-23-2006, 01:21 PM
Since upgrading both the pager and vB to 3.6.1 I have lost the pop-ups within vBAdvanced ????
Anyone worked out why yet, or know of a solution?
For example, should I enter any variables into the "Portal Output Global Variables" ? in the vBA AdminCP.


I ask this a month ago....There is so many variables. I tried many.But no luck

perfphysio
09-23-2006, 04:55 PM
Thanks for this mod. It is a pity the window closed automatically when you send a message. It would be nice to see a list of the conversation exchanges like in a text chat?

Also sending by hitting the return key would be great as well, rather than using it for a carriage return as this is what is standard in text chat?

I would like to say that my install was just on 3.1.6 and there does not appear to be any problems at all with it working thus far on this version of vBulletin :)

ikorolis
09-27-2006, 06:37 PM
uae Can You Upload a new Version of VBpager???

PixelFx
09-27-2006, 06:39 PM
I'm looking forward to an official update of this script :D maybe for vb3.6.2 ?

ikorolis
09-27-2006, 06:46 PM
Me too!!!

johon
09-28-2006, 08:32 AM
I read once somewhere that ActiveX had some sort of software agreement issue thinger me'jigger with Microsoft and now they require you to agree to start the ActiveX controllers... anyway - it's a big long story and I don't remember it. To make it short - google the error you're getting, and there is a program you can download to get rid of it. This is an error being caused by your own computer software - not this script.

Hi widemind,

this was a good hint - even that not the downloaded patch from MS solved my problem but the search in Google did ;)
When the problem appeared the first time, nothing about it was to found in Google, but now there was the "golden hint": The error depends on the sound which is played when a message arrives - an installed program had captured the filetype. When i set all file types in MediaPlayers options back to MediaPlayer the problem was gone!

Greetz

JoHon

perfphysio
09-29-2006, 09:48 AM
Hi All,

I have installed the pager system on my forum (www.physiobob.com/forum (http://www.physiobob.com/forum)) about a week ago now. All is working fine however I have noticed when looking at my stats for my saite that the page "/forum/pager.php" has been viewed more than 25 times that of even the forum homepage. This is like 88,000 times as against 3300 for the forum homepage. Now I have not promoted the pager system as yet and there are few if any pager messages appearing in the admin log so therefore people are not yet using it.

Why therefore is this page count so high? Is there something going on in the back ground that I am not aware of? I am considering uninstalling this feature due to my above observations as it makes me a little nervous. If someone could provide some insight I would be most appreciative, many thanks :confused:

reficul010
09-29-2006, 12:07 PM
Hello, GReat hack!! It works great but...
I have one minor problem with the pager..

Once you write a reply on a pagemsg.
and you refresh your forum....the reply box is cleared again.
(yes, this happens a lot, my forum uses a autorefresh on the active topics)

Is it possible to keep the written texts in the the replybox even after a page refresh?

tia

Harley77
09-29-2006, 04:02 PM
Hi All,

I have installed the pager system on my forum (www.physiobob.com/forum (http://www.physiobob.com/forum)) about a week ago now. All is working fine however I have noticed when looking at my stats for my saite that the page "/forum/pager.php" has been viewed more than 25 times that of even the forum homepage. This is like 88,000 times as against 3300 for the forum homepage. Now I have not promoted the pager system as yet and there are few if any pager messages appearing in the admin log so therefore people are not yet using it.

Why therefore is this page count so high? Is there something going on in the back ground that I am not aware of? I am considering uninstalling this feature due to my above observations as it makes me a little nervous. If someone could provide some insight I would be most appreciative, many thanks :confused:

It uses AJAX to poll the pager every 7 seconds or so by default. So, figure anyone who is visiting your site (and has pager access) will be "hitting" the pager.php file every X number of seconds the entire time they are on your site. This is normal behavior for this hack. And is also the source for a high level of CPU/SQL usage. You can adjust its polling interval and increase the time between checks in the AdminCP to reduce this.

perfphysio
09-29-2006, 04:12 PM
It uses AJAX to poll the pager every 7 seconds or so by default. So, figure anyone who is visiting your site (and has pager access) will be "hitting" the pager.php file every X number of seconds the entire time they are on your site. This is normal behavior for this hack. And is also the source for a high level of CPU/SQL usage. You can adjust its polling interval and increase the time between checks in the AdminCP to reduce this.
OK, i'll increase it to say 20 seconds and see what the effect is. On the one hand though you need it to be more frequent in order to have a pager conversation. I would think like text chat ideally you would want every 2 seconds or so. In reality the increased timing might mean that the product makes itself redundent.
That said I was not finding any performance issues at a setting of 5 seconds, more the issue was the number of page calls in my stats. Thanks for the assistance on this

TheAllusionist
09-29-2006, 05:01 PM
Excuse my ignorance, but does this basically make your site statistics like number of hits in accurate in regards to your sites activity. I could see that it shouldn't effect 'Unique Visitors' but does this bump up your numer of site 'hits' to unrealistic numbers, thus making determining activity impossible due to the MOD? Curious since potential advetizers have been asking what my activity is like and this throws a whole new curve into the equation or so it would appear by the previous posts.

spaghie
09-30-2006, 06:31 PM
I installed with 3.6.0 and it displays fine. i upgraded from an earlier version and have done a reinstall.
The problem i am having is that while it looks like it is there after i select who to page, it doesn't give me the popup window to type a message.
Anything i missed?

ikorolis
09-30-2006, 09:09 PM
We Want new Version!!! XAXA

The Finman
09-30-2006, 10:39 PM
I created this small pager icon for anyone interested in it.

https://vborg.vbsupport.ru/

Just save to your desktop and upload it to your statusicon folder. :)

bandare
10-01-2006, 02:12 AM
I created this small pager icon for anyone interested in it.

http://www.ronaldreagan.com/forums/styles/dj/statusicon/vbpager_icon.gif

Just save to your desktop and upload it to your statusicon folder. :)

thanks... using it:)

amigos
10-01-2006, 04:22 PM
Fantastic module.
Reminds of the old BBS days with paging messages!!
It would be nice for the administrators to be able to send pager messages to guests in order to hail them..I think it would be a great feature in order to get in touch personnaly with each guest!

TheAllusionist
10-01-2006, 04:25 PM
Would still like to know if this gives misleading site statistics?

FROGGYJ
10-02-2006, 03:12 AM
hrm this is weird. Everything has been working top notch for a long time. Then tonight I had to re-install paypal donations https://vborg.vbsupport.ru/showthread.php?t=91567

and now there is no icon in my postbit_legacy. I have doubled checked all the template changes are still in place and the icons are where they should be so I don't understand why it's not showing up lol. Any ideas?

snowlion
10-02-2006, 09:47 AM
it work fine with 3.6.1
installed ^^

reficul010
10-02-2006, 06:46 PM
Hello, GReat hack!! It works great but...
I have one minor problem with the pager..

Once you write a reply on a pagemsg.
and you refresh your forum....the reply box is cleared again.
(yes, this happens a lot, my forum uses a autorefresh on the active topics)

Is it possible to keep the written texts in the the replybox even after a page refresh?

tia

any suggestions maybe? any help appriciated ;)

spaghie
10-06-2006, 04:49 AM
it is a great module and i had been using it before upgrading. migrated to a new server and upgraded to 3.6.0, displays everything but doesn't actually page. Any ideas?
HELP!!

mcom
10-06-2006, 04:43 PM
thanks, it works fine with 3.6.1 but there's a bug if you ban a user, the display in navbar will disappear.

Shazz
10-06-2006, 11:01 PM
Didn't work with my 3.6.2

modz.org
10-10-2006, 01:19 AM
will this be released officially for 3.6.2?

Lionel
10-11-2006, 07:36 AM
what is the issue with 3.62. I just installed and it is working so far

PimvanJ
10-12-2006, 07:46 AM
I'm using vB 3.5.4 and the pager works perfect.
But it seems that for some reason the link in the profile not working anymore.
In Opera webbrowser there is no problem but Firefox and IE give trouble.
I'm not having any trouble before with this and I have no hacks installed lately
so I guess this has something to do with the IE or Windows.(some auto-update patch or so)
Any more problems with the link in the user profile or is the fault somewhere in my software?

Shazz
10-12-2006, 02:38 PM
what is the issue with 3.62. I just installed and it is working so far
On my side, It won't show PM"s Ive done all the settings and have installed it right. I tried using the fixes for it but still no luck

PimvanJ
10-12-2006, 06:31 PM
Found it.
It has something to do with Privoxy (content filtering proxy server)
This programm has replaced some text in webpages and also the User template and when I'm saving this template (without editing!) it save also the replaced content. :tired:

Lionel
10-13-2006, 12:35 AM
hello, is there a way to display profile picture insteadof avatar?

snowlion
10-13-2006, 02:52 AM
does it work well with 3.6.2, i'm not yet test

kr580
10-13-2006, 08:26 PM
I just installed a 3.6.2 board and vB Pager doesn't want to show up in the Navbar. I've added the code as the README says to (several times) but it won't show up under Welcome, x, etc.

Any ideas?

-----

Nevermind... Usergroups settings weren't changed.

we_scooter
10-13-2006, 08:44 PM
I just installed a 3.6.2 board and vB Pager doesn't want to show up in the Navbar. I've added the code as the README says to (several times) but it won't show up under Welcome, x, etc.

Any ideas?

-----

Nevermind... Usergroups settings weren't changed.
so it works with vb 360 :alien: ?????????

Chicago_VLNU_4s
10-14-2006, 11:28 PM
i've been getting this error recently. it happens sometimes, then goes away.

http://www.offthaave.com/forums/imagehosting/145317fc4df456.jpg

could it be my computer, templates or what?

Renmiri
10-19-2006, 11:47 PM
Thanks a million!!!!

Some of our users don't have MSN or any IM so this was a godsend! :D

BTW, to make it look more like MSN I did a bit of a hack. Now it shows the log of messages on the Pagebuddy window and on the new page window.

It takes 2 little plugins, 2 template changes and a new template. No new fields needed.
EDIT:
Version 1.2
Almost identical to MSN except avatars are on the left side (alterable on template pager_newpager if you like tables :p I hate them so I didn't bother).

https://vborg.vbsupport.ru/showthread.php?p=1100871

hello, is there a way to display profile picture insteadof avatar?
yep, edit the pager.php file.

MedBlix
10-24-2006, 11:18 PM
I keep getting this when I try and I never get the thing to show up in the admincp what do I add to it?

Sorry, you are not allowed to use vB Pager!

blackdirector
10-26-2006, 05:55 PM
I tried to install vb pager today. When I look under usergroup I do not see any options to set. What did I do wrong.

pewp
10-30-2006, 07:16 PM
ok so i'm having a problem here... everything seemed to install fine, i'm not getting any errors, but when i page someone it just shows an unread message, but no pop up. and when you click to go to the inbox it shows it as being empty...

pewp
10-30-2006, 07:39 PM
it is a great module and i had been using it before upgrading. migrated to a new server and upgraded to 3.6.0, displays everything but doesn't actually page. Any ideas?
HELP!!


i think this is the same problem i'm having

professional77
11-02-2006, 12:49 PM
thanks very very mush

professional77
11-02-2006, 12:50 PM
thanks very very mush

vbreal
11-03-2006, 09:40 PM
Any help would be appreciated

i am using the photopost gallery. When ever i go to the gallery the vp page never pops up there. its been bugging me for months. is ther anyway to fix this.

roni1015
11-04-2006, 05:57 PM
Any idea why there would be a delay of several minutes between a page being sent, and actually being received. I have the page check time set at 10 seconds.

danny75
11-05-2006, 09:21 AM
and for 3.6.2 ?

Diggazz
11-11-2006, 03:42 AM
Works here for both 3.6.2 and 3.6.3

just remember to redo the template edits if you revert when upgrading

snowlion
11-14-2006, 10:24 AM
Works here for both 3.6.2 and 3.6.3
thank you https://vborg.vbsupport.ru/external/2009/02/1.gif

blockbusted
11-15-2006, 02:21 AM
I'm having a slight problem...

When I am sending a message, the text auto-deletes as I type it. Anyone else having the same problem? I'm using 3.6.3 and Firefox.

Edit: Same problem in IE

=\

EDIT AGAIN: One of my moderators figured it out. <sarcasm>Thanks for all the help guys!</sarcasm>

Bison
11-16-2006, 01:58 AM
THis is a great hack, thanks!

Managor
11-17-2006, 01:37 PM
In vBulletin 3.6.2 there is (I have) a problem with the Pager Buddy List. I can only save 2 Buddies to the Buddy List. I checked User Group Permissions and the Pager Preferences but there wasn't any option to limit the number of Buddies. So what's going on?

tienkhom
11-17-2006, 05:11 PM
works great with 3.6.2 !!!

Scooterpig
11-21-2006, 05:56 AM
I'm having a slight problem...

When I am sending a message, the text auto-deletes as I type it. Anyone else having the same problem? I'm using 3.6.3 and Firefox.

Edit: Same problem in IE

=\

EDIT AGAIN: One of my moderators figured it out. <sarcasm>Thanks for all the help guys!</sarcasm>

How did you fix it please cause I have same problem?

mrmike
11-21-2006, 09:20 AM
Thanks for a really GREAT hack! :D

Is there a way to disable or autoprune the sent messages?

I just want pager to be a quick mess without the sent history!

Thanks in adv.

/Mike

Wheels
11-21-2006, 07:49 PM
Is anyone having a server load issue with the pager? I'm a admin on a 3.6.3 vB and when it's turned on, the server is slower then congress. When it's off, it speeds up. I tried doing a search here, but the board shot blanks.

Rickie3
11-21-2006, 08:51 PM
sweet hack,wondering if its possible to have the pager button in the who's online section next to username and if its possible to make the username clickable to send a message on the who's online on the forum index

Rickie3
11-22-2006, 01:13 AM
ive noticed you have it in this earlier version here https://vborg.vbsupport.ru/showthread.php?t=66744&highlight=messanger
https://vborg.vbsupport.ru/external/2006/11/5.jpg

jalmz
11-22-2006, 02:51 AM
works like a superman.. great!

geevest.com
11-23-2006, 10:14 AM
hei i have a question....
this work in IE and mozilla?

Rickie3
11-23-2006, 10:26 AM
hei i have a question....
this work in IE and mozilla?sure does;)

Managor
11-23-2006, 09:49 PM
omg... my webhoster forced me to uninstall the pager because it stressed the server too much :(

But it is a very nice script - I loved it as long I've had installed it ;)

ThorstenA
11-25-2006, 09:09 AM
Is it possible to integrate this product (vbpager) into private message system, so that you can chat in private message system? So that you just see if you get a new private message and can reply to it?

Cocko
11-26-2006, 12:24 PM
Just have recognized - vB Pager issue getting vB systemmessage
ie. when I need to fill out recommendet profile fileds

Error in page: 'objPager' is null or no object, Code 0
(Browser IE)

2nd issue: the complete site page is rebuilt in footer
(Browser IE, Firefox)

Added below the following code
<script type="text/javascript">
<!--
// Main vBulletin Javascript Initialization
vBulletin_init();
//-->
</script>this code
$pagermessageWhen I delete $pagermessage no error
occurs but some pager functions won't work.

Any hints about to fix these issues?
(vB 3.6.4, vB Pager 3.0.4)

rknight111
11-26-2006, 07:48 PM
Is this available for 3.6.3 or 3.6.4, I have flashchat and am looking at a way to ask users in

RON

redspider
11-26-2006, 09:30 PM
I just installed in 3.6.4 but one problem the usercp dont have a option for vbpager.

Trana
11-27-2006, 03:03 AM
I just installed in 3.6.4 but one problem the usercp dont have a option for vbpager.

Same problem here.

chillster
11-29-2006, 01:34 AM
I upgraded to 3.6.4 and I my inbox has messages in it. I can see my sent messages but cannot see my inbox messages. Any way to fix this? Or this will not work properly with the new upgrade?

bolly.beats
12-04-2006, 11:44 PM
Every thing'z workin fine without /pager.php file, when i open this page, it redirects me to /index.php, what to do? plz help :D

blind-eddie
12-05-2006, 12:34 PM
Works great in 3.6.4.....

blind-eddie
12-05-2006, 12:38 PM
I just cant get it to pop up on my vba pages

Attitude
12-07-2006, 09:32 AM
Hi All.

Just wanna confirm if it works with vBulletin® Version 3.6.3 ?

I could not find one for 3.6.3 so I tried installing this one.

Did all the steps. But then vbPager option was not appearing. (Step 4)

Can anyone please help. M new to this forum, so dunno where else to request. If there is any other vbPager for 3.6.x series, can anyone please get me the link or something. I would really appreciate any kinda help I get.

Thanks

Garry

Attitude
12-07-2006, 09:33 AM
I just installed in 3.6.4 but one problem the usercp dont have a option for vbpager.

Seems like same prob! Stuck at 4th step as well!

blind-eddie
12-07-2006, 11:40 AM
mine works after upgrading to 3.6.4...

Cocko
12-07-2006, 06:37 PM
Just have recognized - vB Pager issue getting vB systemmessage
ie. when I need to fill out recommendet profile fileds

Error in page: 'objPager' is null or no object, Code 0
(Browser IE)

2nd issue: the complete site page is rebuilt in footer
(Browser IE, Firefox)

Added below the following code
<script type="text/javascript">
<!--
// Main vBulletin Javascript Initialization
vBulletin_init();
//-->
</script>this code
$pagermessageWhen I delete $pagermessage no error
occurs but some pager functions won't work.

Any hints about to fix these issues?
(vB 3.6.4, vB Pager 3.0.4)


anybody confirm or can help about ?

rareclownfish
12-07-2006, 10:35 PM
works on 3.6.4

Trana
12-07-2006, 11:29 PM
I did a fresh install with overwrite enabled on 3.6.4 and I'm still getting the error message:

Error: You have turned off vB Pager messages. You may not view or send pager messages until you turn them on by editing your profile.

But no options listed in the profile.

Attitude
12-08-2006, 02:12 AM
mine works after upgrading to 3.6.4...
lol mate r u of any help ?

let me knw.... coz mine is 3.6.3 but still not able to work properly. I am stuck at step 4. :(

blind-eddie
12-08-2006, 11:06 AM
Step 4. From The Admincp, Edit vB Pager Options and Usergroup Permissions.?

This is what your stuck on? admincp/vB Pager Options

blind-eddie
12-08-2006, 11:18 AM
I did a fresh install with overwrite enabled on 3.6.4 and I'm still getting the error message:

Error: You have turned off vB Pager messages. You may not view or send pager messages until you turn them on by editing your profile.

But no options listed in the profile.

You dont see this in usercp/editoptions?

https://vborg.vbsupport.ru/ (http://img237.imageshack.us/my.php?image=vbpager2kj6.png)

blind-eddie
12-08-2006, 11:22 AM
Everything works great on vb pages, but I need to know what the
Portal Output Global Variable is to get this to work on vba pages.

Trana
12-10-2006, 05:27 PM
You dont see this in usercp/editoptions?

http://img237.imageshack.us/img237/7483/vbpager2kj6.th.png (http://img237.imageshack.us/my.php?image=vbpager2kj6.png)

Nope. I did a reinstall with overwrite to make sure I didn't lose anything during the upgrade to 3.6.4. Those options do not show in the usercp.

blind-eddie
12-10-2006, 06:01 PM
Go to adminpc/vB Pager Options and make sure you have it turned on....Mine worked after upgrade....but still need Portal Output Global Variable to get this to work on vba pages....

Trana
12-10-2006, 06:08 PM
Yes, it is enabled globally. I didn't think there was anything else to do to enable it. I checked the plugins and all of them are active.

blind-eddie
12-10-2006, 06:28 PM
Whats your site address?

Trana
12-10-2006, 08:13 PM
I have it disabled at the moment until I can figure out what the problem is. I can enable it for you to take a look at if necessary.

Can you give me any idea what I should be checking?

Thanks.

blind-eddie
12-10-2006, 08:52 PM
Re-Read readme-----Double Check Every thing, Something was missed.

redwinger
12-11-2006, 03:12 AM
Got it working in 3.6.4 but am for some reason missing the icon to click in the postbit. Edited the template but it just isn't there. Otherwise it works fine. Any suggestions?

Attitude
12-12-2006, 01:11 PM
Step 4. From The Admincp, Edit vB Pager Options and Usergroup Permissions.?

This is what your stuck on? admincp/vB Pager Options


this is where I am stuck bro! I dun get any vB pager options in the admincp!!!! what to do man. I am so sad abt it :(

Please help

blind-eddie
12-12-2006, 01:21 PM
this is where I am stuck bro! I dun get any vB pager options in the admincp!!!! what to do man. I am so sad abt it :(

Please help

sent you pm

Trana
12-12-2006, 07:22 PM
Re-Read readme-----Double Check Every thing, Something was missed.


Got it, a part of my template seems to be reverted incorrectly.

Its working now.

Can anyone tell me how I can create a link to a users buddylist to send messages? For example, instead of being given a list of WOL, I would only like to show the buddies online. Any idea how to do this?

blind-eddie
12-12-2006, 08:42 PM
Glad to hear that.....Does anybody know the global varable to get the pager to pop up in vba pages...I have ask this same question about 25 times and have yet to get a response.....It worked before my upgrade....

Trana
12-12-2006, 09:00 PM
I think I am looking for the same thing. This is what I have in there now:

<a href="#" onclick="window.open('../forum/pager.php?do=buddylist&amp;puserid=$userinfo[userid]','pagerbuddylist','statusbar=no,menubar=no,toolba r=no,scrollbars=yes,resizable= yes,width=$vboptions[vbpager_width],height=$vboptions[vbpager_height]'); return false;">

But that opens the pager with all online users listed. I would like to know the two options:

Open pager window for a specific user
Open pager window for my buddy list

Any help would be appreciated.

blind-eddie
12-12-2006, 09:42 PM
I still cant get the page buddy on front page, but is in all user's cp..

Trana
12-13-2006, 02:15 AM
I still cant get the page buddy on front page, but is in all user's cp..

Right, seems like the same problem. The link on my postbit and in the member profile page works fine, but on the VBA pages (i.e. within the modules) it pushed you to the "who's online" pager popup.

blind-eddie
12-13-2006, 03:37 AM
This hack needs re-written....

Trana
12-15-2006, 07:19 PM
<if condition="$vboptions['vbpager_active'] AND $bbuserinfo['userid']">
<a href="#" onclick="window.open('forum/pager.php?do=buddylist&amp;puserid=$loggedin[userid]','pagerbuddylist','statusbar=no,menubar=no,toolba r=no,scrollbars=yes,resizable=yes,width=$vboptions[vbpager_width],height=$vboptions[vbpager_height]'); return false;"><img src="../forum/images/misc/comment.gif" alt="<phrase 1="$post[username]">$vbphrase[pager_send_pager_message_to_x]</phrase>" border="0" /></a></if>

Change it to $loggedin[userid] as per the above and it should work, at least it does on my site.

mariannet
12-15-2006, 07:31 PM
Everything works great, only a user go to modify options and make a change, then it sets you to "Pager off" and this can only be reversed by changing the setting in the DB table?

Amiga Harrison
12-17-2006, 03:17 AM
This works perfectly for my board using vB 3.6.4

It initially wouldn't pop up any messages when I installed it, even though it was showing there were unread messages as being present, and it wouldn't show the messages in the popup messages list inbox, but was showing the send messages. But I then worked out I had placed some of the code in the wrong location in one of the templates. Correcting that and resaving the permissions for each usergroup got it all working perfectly.

blind-eddie
12-17-2006, 04:12 AM
<if condition="$vboptions['vbpager_active'] AND $bbuserinfo['userid']">
<a href="#" onclick="window.open('forum/pager.php?do=buddylist&amp;puserid=$loggedin[userid]','pagerbuddylist','statusbar=no,menubar=no,toolba r=no,scrollbars=yes,resizable=yes,width=$vboptions[vbpager_width],height=$vboptions[vbpager_height]'); return false;"><img src="../forum/images/misc/comment.gif" alt="<phrase 1="$post[username]">$vbphrase[pager_send_pager_message_to_x]</phrase>" border="0" /></a></if>

Change it to $loggedin[userid] as per the above and it should work, at least it does on my site.


Where do I go to edit this?

Trana
12-17-2006, 04:58 AM
Where do I go to edit this?

If I understand correctly, you were having problems with the VBA module for the buddylist, by default this should be something like adv_portal_buddylist. If that is the module that you were having problems with, go into that template and make that change. That will resolve the issue where clicking on the link within VBA pages opens the Who's Online page instead of the link to that person's pager.

blind-eddie
12-17-2006, 05:14 AM
Thank You very much.....thats what I was looking for....I will let you know if it works..

Bison
12-17-2006, 02:17 PM
To add to his answer, you need to edit the adv_portal_buddylist template of each style. Select "Style manager" and when you see you list of styles, select "edit templates" of each style. add the "forum/" or whatever you call your forums directory to the left of "pager.php" ... that should fix it. :)

rknight111
12-17-2006, 03:48 PM
I am making a left side menu on my site and I am looking for the code to call up the pager. I will have a button 'Page Member' Does anyone know what the coding is to get the button to do this..

RON

Bison
12-17-2006, 04:09 PM
I would think all you need to do is copy the template "loggedinuser" with the pager code.

gothicuser
12-17-2006, 07:50 PM
I am making a left side menu on my site and I am looking for the code to call up the pager. I will have a button 'Page Member' Does anyone know what the coding is to get the button to do this..

RON
Do you mean a button for individual members??
If so then thats simple:
<a href="#" onclick="window.open('$vboptions[bburl]/pager.php?do=buddylist&puserid=3','pagerbuddylist','statusbar=no,menubar= no,toolbar=no,scrollbars=yes,resizable=yes,width=6 20,height=500'); return false;"> Member A </a>
Just change the userid to what you need.

Trana
12-18-2006, 03:03 AM
Does anyone know of a way to integrate reply capabilities into this? Like if a user sends me a message, the window that pops up would allow a direct response instead of having to create a whole new page.

blind-eddie
12-18-2006, 03:35 AM
Does anyone know of a way to integrate reply capabilities into this? Like if a user sends me a message, the window that pops up would allow a direct response instead of having to create a whole new page.


What do you mean by create a whole new page?

Trana
12-18-2006, 11:39 PM
What do you mean by create a whole new page?

If someone pages you and you want to respond, you need to page them. It would be cool if you could respond to them directly in the existing pager window on the screen you are on.

blind-eddie
12-19-2006, 12:52 AM
Oh ok...I see what you mean...that would be cool...It would also be nice if that page remained opened like MSN or Yahoo pager, even if you get pages from others...It or they would remain open til you close them....Sure wish I was a coder....

Attitude
12-19-2006, 04:22 AM
lol mate r u of any help ?

let me knw.... coz mine is 3.6.3 but still not able to work properly. I am stuck at step 4. :(

bump :(

blind-eddie
12-19-2006, 11:34 AM
bump :(

I pm'ed you....

blind-eddie
12-19-2006, 11:58 AM
I still cant get this to pop up on vba pages......

Trana
12-19-2006, 03:54 PM
You get NO popups on your VBA pages?

blind-eddie
12-19-2006, 05:43 PM
You get NO popups on your VBA pages?


That is correct.

blind-eddie
12-20-2006, 10:59 PM
I dont have adv_portal_buddylist ,,,, I have adv_portal_buddylistbits ,
Now what do I do?

Bison
12-21-2006, 12:35 AM
I just got this to work with my VBA pages on my forum this way:

Edit your "loggedinuser" template and make a direct link to your pager.php file.

Example:

<a href="http://www.yourforum.com/forums/pager.php">

blind-eddie
12-21-2006, 12:53 AM
I just got this to work with my VBA pages on my forum this way:

Edit your "loggedinuser" template and make a direct link to your pager.php file.

Example:

I dont have just "loggedinuser" template , I have forumhome_loggedinuser & forumdisplay_loggedinuser. Im lost...again

Bison
12-22-2006, 01:29 AM
I dont have just "loggedinuser" template , I have forumhome_loggedinuser & forumdisplay_loggedinuser. Im lost...again

that's the one ... forumhome_loggedinuser.

Didn't you originally edit this template when you installed vbpager?

blind-eddie
12-22-2006, 02:43 AM
I see I already have it as you say......

$stylevar[dirmark]<a href="member.php?$session[sessionurl]u=$loggedin[userid]" rel="nofollow">$loggedin[musername]</a>$loggedin[invisiblemark]$loggedin[buddymark]
<!-- [START HACK='vB Pager' AUTHOR='UAEWEB.COM' VERSION='3.0.0' CHANGEID= 8 ] -->
<if condition="$vboptions['vbpager_active'] AND $bbuserinfo['userid'] != $loggedin['userid'] AND $bbuserinfo[userid]"><a href="#" onclick="window.open('$vboptions[bburl]/pager.php?do=buddylist&amp;puserid=$loggedin[userid]','pagerbuddylist','statusbar=no,menubar=no,toolba r=no,scrollbars=yes,resizable= yes,width=$vboptions[vbpager_width],height=$vboptions[vbpager_height]'); return false;"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/vbpager_icon.gif" alt="<phrase 1="$loggedin[username]">$vbphrase[pager_send_pager_message_to_x]</phrase>" border="0" /></a></if>
<!-- [END HACK='vB Pager' AUTHOR='UAEWEB.COM' VERSION='3.0.0' CHANGEID= 8 ] -->

Trana
12-24-2006, 04:42 AM
You should have added a link to the jscript in your footer as per the original instructions. By chance, is your CMPS config set to ignore the footer template?

blind-eddie
12-24-2006, 05:09 AM
You should have added a link to the jscript in your footer as per the original instructions. By chance, is your CMPS config set to ignore the footer template?

I have no clue......I will look.

blind-eddie
12-24-2006, 01:32 PM
I have looked and cant find the jscript....

JohnBee
12-25-2006, 03:22 AM
Whenever I shut down my forum this hack messes up my footer. Tried relocating it in the code but I can't seem to get around it.
Is there a variable I could add to ignore the pager footer code when my forums are closed for maintenance?

Bison
12-26-2006, 03:47 AM
I have looked and cant find the jscript....

Follow the instructions in the hack and you'll see where the javascript is susposed to be inserted in the footer.

Bison
12-26-2006, 03:53 AM
I see I already have it as you say......




$stylevar[dirmark]<a href="member.php?$session[sessionurl]u=$loggedin[userid]" rel="nofollow">$loggedin[musername]</a>$loggedin[invisiblemark]$loggedin
<!-- [START HACK='vB Pager' AUTHOR='UAEWEB.COM' VERSION='3.0.0' CHANGEID= 8 ] -->
<if condition="$vboptions['vbpager_active'] AND $bbuserinfo['userid'] != $loggedin['userid'] AND $bbuserinfo[userid]"><a href="#" onclick="window.open('[B]$vboptions[bburl]/pager.php?do=buddylist&amp;puserid=$loggedin[userid]','pagerbuddylist','statusbar=no,menubar=no,toolba r=no,scrollbars=yes,resizable=yes,width=$vboptions[vbpager_width],height=$vboptions[vbpager_height]'); return false;"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/vbpager_icon.gif" alt="<phrase 1="$loggedin[username]">$vbphrase[pager_send_pager_message_to_x]</phrase>" border="0" /></a></if>
<!-- [END HACK='vB Pager' AUTHOR='UAEWEB.COM' VERSION='3.0.0' CHANGEID= 8 ] -->

Hold the mouse pointer over the pager image on the CMPS page and see where the path to the pager.php file is calling from. if your forum path is not in the url. you need to change the code highlighted above to point directly where the pager.php file is.

blind-eddie
12-27-2006, 05:31 PM
In the readme it says :In the template: postbit (Optional)
Find:
<if condition="$show['reputationlink']"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a> &nbsp;</if>
------------------------------------------------------
But, I dont have that, I have :
<if condition="$show['reputationlink']">
<span id="reputationmenu_$post[postid]"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow" id="reputation_$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a></span>
----------------------------------------
Do I edit this or just add it below?

Also In the template: postbit_legacy (Optional)
=============================
FIND:
=============================
<if condition="$show['reputationlink']"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" border="0" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" /></a></if>

I have:
<if condition="$show['reputationlink']">
<span id="reputationmenu_$post[postid]"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow" id="reputation_$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a></span>

Any help would be great

Terminatoronly
01-01-2007, 07:43 AM
installed :D

tekstylez
01-09-2007, 04:01 PM
In the readme it says :In the template: postbit (Optional)
Find:
<if condition="$show['reputationlink']"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a> &nbsp;</if>
------------------------------------------------------
But, I dont have that, I have :
<if condition="$show['reputationlink']">
<span id="reputationmenu_$post[postid]"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow" id="reputation_$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a></span>
----------------------------------------
Do I edit this or just add it below?


Also In the template: postbit_legacy (Optional)
=============================
FIND:
=============================
<if condition="$show['reputationlink']"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" border="0" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" /></a></if>


I have:
<if condition="$show['reputationlink']">
<span id="reputationmenu_$post[postid]"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow" id="reputation_$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a></span>


Any help would be great

same here :confused:

blind-eddie
01-09-2007, 08:22 PM
Good luck getting an answer.....

gothicuser
01-10-2007, 04:27 AM
In the readme it says :In the template: postbit (Optional)
Find:
<if condition="$show['reputationlink']"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a> &nbsp;</if>
------------------------------------------------------
But, I dont have that, I have :
<if condition="$show['reputationlink']">
<span id="reputationmenu_$post[postid]"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow" id="reputation_$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a></span>
----------------------------------------
Do I edit this or just add it below?


Also In the template: postbit_legacy (Optional)
=============================
FIND:
=============================
<if condition="$show['reputationlink']"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" border="0" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" /></a></if>


I have:
<if condition="$show['reputationlink']">
<span id="reputationmenu_$post[postid]"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow" id="reputation_$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a></span>


Any help would be great
What you have is the code from 3.6.4
All you have to do is for 'postbit' find:

<if condition="$show['reputationlink']">
<span id="reputationmenu_$post[postid]"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow" id="reputation_$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a></span>
<if condition="$show['popups']"><script type="text/javascript"> vbrep_register("$post[postid]")</script></if>&nbsp;
</if>
and add the hack code after that, and for 'postbit_legacy' find:
<if condition="$show['reputationlink']">
<span id="reputationmenu_$post[postid]"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow" id="reputation_$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a></span>
<if condition="$show['popups']"><script type="text/javascript"> vbrep_register("$post[postid]")</script></if>
</if>
and again, add the hack code after that.

netmagic
01-10-2007, 04:36 AM
HI,

I´ve got the following prob with 3.0.4 on a 3.5.4 System.
I can sent messages and I can see on topnavi that I´ve got x new messages.
But when I open the Messenger-Window there will be shown only the "youve got no messages" text. Can anyone help me?

Thanks alot!
netmagic

tekstylez
01-10-2007, 02:29 PM
and again, add the hack code after that.

Also, I am having trouble with the navbar template...

Where do I ad the navbar code for 3.6.4?

gothicuser
01-10-2007, 03:24 PM
Also, I am having trouble with the navbar template...

Where do I ad the navbar code for 3.6.4?
Ah.... I'm not sure I can answer that one! My navbar is so modded as to make it almost unrecognisable.
I'll have a butchers at the code and try and get back m8.

NuclioN
01-11-2007, 06:40 AM
This is a great hack! In the sms addon their whas an option to send messages to guests/not logged in users. Can you make it work with vbpager? :)

utw-Mephisto
01-27-2007, 11:11 AM
I am getting the following error when trying to download messages as XML :


Warning: Missing argument 1 for vB_XML_Builder::vB_XML_Builder(), called in /forums/pager.php on line 1451 and defined in /includes/class_xml.php on line 354

Fatal error: vB_XML_Builder::Registry object is not an object in /includes/class_xml.php on line 362


Anyone has the same ?

alfaowner
01-27-2007, 01:38 PM
Got it working in 3.6.4 but am for some reason missing the icon to click in the postbit. Edited the template but it just isn't there. Otherwise it works fine. Any suggestions?

Was it a big job to get it working bro? I just upgraded and tomorrow was going to see if I could get it to work

Ian

sait.dogan
01-28-2007, 12:14 AM
Thanks Installing Now. :up:

infinitiiz
01-28-2007, 03:25 PM
Oooppps .. never mind .. error

Lionel
01-29-2007, 03:55 PM
I have been using this hack for a while without any problems. Recently I had a surge of visitors on my site and the server load has been shooting sometimes up to 30.00. Finally I disabled the pager thinking that 200 users every 5 seconds checking for new pages could kill the server. Sure enough load went down to below 1.0. Does that make sense? Is there a way around it?

Rickeo
01-30-2007, 07:14 PM
TY So muc I love it so much best mod ever in the world ty

Ramsesx
01-31-2007, 08:07 AM
One other bug.

It looks like the permissions are not being inherited from secondary usergroups. It's not letting them overwrite.

For example, the primary usergroup (Registered Member) is set needing to post 5 posts per day to reply. The secondary usergroup (Donating Member) is set to be able to use the pager without having to post. Yes, the donating member usergroup is set to override the primary group.

However, my users that are also donating members, are still being told they must make 5 posts before they can use the pager. :(

Anybody knows how to fix this? Thanks.

blind-eddie
01-31-2007, 01:58 PM
Change their secondary to primary & edit permissions

tekstylez
02-02-2007, 02:52 PM
I am having a problem with multiple users stating that, when entering text in the pager window, it is disappearing..

tekstylez
02-03-2007, 12:12 PM
I am having a problem with multiple users stating that, when entering text in the pager window, it is disappearing..

support on this, please?

TTG
02-03-2007, 12:21 PM
I am having a problem with multiple users stating that, when entering text in the pager window, it is disappearing..

Not try to send / reply while viewing the who's online page on your forum ?
If they are, the text will disappear when the page refreshes !

princeedward
02-03-2007, 08:39 PM
thanks.,nice hack...install clicked....;)

Baron Von Chris
02-15-2007, 07:58 AM
Hi, I'm kind of a newbie so I hope my questions are not ignorant. I got through about 10 pages of posts when I realized I had 60 to go, so I'm just going to ask my questions. If they have already been asked/answered then please copy/paste the solutions for me. Thanks!

-So, I'm running vb 3.6.4 and I just installed this hack. Seems to work fine in the Default Style template. I have other templates loaded and I can't use the pager when I have one of the other style templates on. None of the icons show up in the postbit and although I can send pages when looking at another persons profile, they never receive them. Is there a way to get the pager working with the other templates?

Hope this isn't redundant, thanks for your time!

blind-eddie
02-15-2007, 03:18 PM
I have many styles on my site, And even when you do all template edits in default, some edits dont apply to other styles. You have to double check that each style template edit was changed during install. You will have to edit each styles even if done in default, if they are not working on that style.

Baron Von Chris
02-15-2007, 03:36 PM
Not to sound like a total noob, but how exactly do I do that. I keep getting the same answer and I understand the problem, but I need someone to help me through one of them so I can do the rest. Basically the instructions for the hack have me copy/paste a bunch of code in specified places. How do I find those same places in other skins?

blind-eddie
02-15-2007, 04:10 PM
Go to your admincp/styles & Templates/search in templates, when you follow mod/hack instructions it tell you to edit templates, when you search in templates at the top drop down box it allows you to chose which style to edit, pick the one in question, repeat these steps on each template edit as per mod/hack in that style.

Baron Von Chris
02-15-2007, 04:13 PM
Dude, you rule. That was easy enough, why was it so hard to get that answer from anyone else?

Thanks man, you are my new best friend.

blind-eddie
02-15-2007, 04:16 PM
Glad I could help...Answers are hard to get here at times......

Baron Von Chris
02-15-2007, 04:23 PM
Well, thanks for taking the time. Hopefully once I become more familiar with this then I can start contributing too.

Mischievious
02-22-2007, 09:36 PM
My forum is in the root directory, so what should I put in the Forum Directory Name field of the vB Pager options?

mrcrx
02-23-2007, 11:01 AM
Does this load up the server and will it be released on vb3.6 verisons?

blind-eddie
02-23-2007, 01:01 PM
It uses some resources, and yes it works on 3.6

TheGoaT
02-27-2007, 01:43 PM
I just installed this word for word, and I am having a problem in my admincp panel. The vb options in my usergroup manager is not there. I cant give any usergroup permission to use it. Any ideas?

I am using vb 3.5.5 with vbadvanced.

blind-eddie
02-27-2007, 02:15 PM
I should be there....refresh admin cp page,

TheGoaT
02-27-2007, 02:33 PM
I have several times, its just not there.

blind-eddie
02-27-2007, 04:50 PM
Then you need to re-read readme....you missed admincp file uploads

TheGoaT
02-27-2007, 05:59 PM
I uploaded every file in the zip.

JD210
03-05-2007, 12:08 AM
HI,

I?ve got the following prob with 3.0.4 on a 3.5.4 System.
I can sent messages and I can see on topnavi that I?ve got x new messages.
But when I open the Messenger-Window there will be shown only the "youve got no messages" text. Can anyone help me?

Thanks alot!
netmagic

I have this exact same problem. I am running 3.5.5, and when I get a Pager Message, it shows in the display that there is one waiting but when I open Pager there is nothing there. I know that there is a message because I can go to the database and read it, but that is the only way. I have had this installed for some months now, and it was working fine, now it is not. Anyone have any ideas?

blind-eddie
03-05-2007, 12:14 AM
Look back about 40 pages or so....I have & still have that problem, pager messages wont open on vba pages or front page...You have to go to forums or whos online to get them to pop up. Somewhere in these 80 pages is a remedy to correct this issue, but it didnt work for me , so I still use the pager but open it on non- vba pages

JD210
03-05-2007, 08:42 AM
Thanks for the reply. I will dig through these pages and see what I can do to make it work. As much as I enjoy the pager, if I can't get it to work correctly, I would just rather uninstall it.

whiteeagle0
03-05-2007, 10:36 AM
help

when i click to page a uer that pop up comes up but then when i click page user after clciking on the check box nothing happens

Elenna
03-05-2007, 03:27 PM
WhiteEagle0 - I had this same issue. In the settings, I removed the / from the forums location (just left it blank), then it started working for me.

whiteeagle0
03-08-2007, 01:45 AM
ok it's working thanks :)


I have a few questions tho

1), Can I Have My Display Name Show As System Message

2), Can I Stop The Instent Messanger From Closing After I Send A Reply :( And Update Like Ajax?

3), Can I Have It Minimizible To Where You Can Minmize A Conversation And It Blinks In Orange Like Msn Messanger

4), How Can I Get It So I Don't Have To Refresh The Page To See If Someone Instent Messaged Me So It Automaticly Appears When Someone Sends It....

5), How Can I Add A Background To The Instent Messanger Or Change The Colors

6), How Do I Modify The Files And Can I Have Permission To Add Features To Mine :D I Want Mine To Have Like A Skin To Act Like Msn Messanger :P

blind-eddie
03-08-2007, 02:20 AM
I wish!

Elenna
03-08-2007, 02:35 AM
ok it's working thanks :)


I have a few questions tho
....
4), How Can I Get It So I Don't Have To Refresh The Page To See If Someone Instent Messaged Me So It Automaticly Appears When Someone Sends It....

5), How Can I Add A Background To The Instent Messanger Or Change The Colors

I'm glad that it's working :)

As far as #4 goes, if you modify the refresh option (I forget which one it is, off-hand!), it will change the time ebtween checking for new messages. If you get a message during that time, it will automatically appear on your screen, without a refresh.

For #5, I am guessing that it is pulling info from your theme, but there are template files that you should be able to edit to change colors.

whiteeagle0
03-08-2007, 06:13 PM
could you tell me what file it is or the code? to find the refresh

as far as the colors it's not pulling it from my theme my theme is black and white and this is blue and grey the normal vbulletin colors lol

Poetschke
03-09-2007, 08:11 PM
Hello what and where I must change what, so that one can click a user in the user on-line list and can send him there directly news?

Roxie
03-12-2007, 08:16 PM
could you tell me what file it is or the code? to find the refresh


as far as the colors it's not pulling it from my theme my theme is black and white and this is blue and grey the normal vbulletin colors lol

It's in the vbpager settings.

SampNet
03-20-2007, 01:58 PM
I've searched through many of the pages here and couldn't find any help. I'm logged in as admin and when I try Paging another member, I receive a popup with the following message: Sorry, you are not allowed to use vB Pager! I also tried using it as a non-admin to no avail.

I'm probably overlooking something ... I appreciate any assistance.

blind-eddie
03-20-2007, 02:37 PM
check your usergroup settings & enable it in your usercp

SampNet
03-20-2007, 03:29 PM
check your usergroup settings & enable it in your usercp

Thanks buddy. Worked.

ktaylor
03-21-2007, 07:20 PM
I totally love this hack.. and I think my users are going to as well.

I did have a bit of a problem with not seeing the page pop up after sending a page but that was fixed by making sure I had the "WWW" in the forum site url under the site/url/contact details... even tho my forums go to forums.jetgirls.net, it's actually www.jetgirls.net/forums and that's where the kicker was!

GREAT hack!! Thank you!

btw, is there anyway i can change some of the words from "pager" to "instant messenger" or "IM"? particularily the cloud bubbles in the "whose online" section, i'd love it if it said "send IM to..." and instead of "pager messages" it could be "IM messages" cuz essentially, it is more of an IM than a pager of sorts.

tekstylez
03-22-2007, 01:29 PM
When clicking to page a member, only the "whos online" list pops up, where before the send a message box would show.... I adjust all the permissions, and settings, why is it doing this? Basicaly it will not let me send messages to users who are not online....

EDIT:
I just tried to page someone online... when clicking on the username in the whos online window, it takes me to my homepage

haytham
03-26-2007, 08:26 PM
Great hack thanks. Just one thing. I used an older version where even if the person wasn't online, I was able to write him a message. This version will not allow me to write a message unless the user is online. Was this intentional?

tekstylez
03-26-2007, 08:40 PM
When clicking to page a member, only the "whos online" list pops up, where before the send a message box would show.... I adjust all the permissions, and settings, why is it doing this? Basicaly it will not let me send messages to users who are not online....

EDIT:
I just tried to page someone online... when clicking on the username in the whos online window, it takes me to my homepage

any support on this issue???????

daddygrim
03-28-2007, 11:16 AM
works for 3.6.5?

akulion
03-28-2007, 06:28 PM
hey anyone has an idea how to change the color of the text box?

currently it displays brown text ..and i have a skin with a dark blue bg..so its pretty unreadable

blind-eddie
03-29-2007, 02:02 AM
works for 3.6.5?


Yes, but postbit & postbit legacy temepates cant be edited, but works great.

daddygrim
03-29-2007, 02:29 AM
can i see how yours work?

blind-eddie
03-29-2007, 02:38 AM
sure, but you will need to reg. on my site to be able to use it..
http://outerzone.us

You can click on quick links & open vbpager & page any member online or go to members list & click on any name & page them even if they are offline.

daddygrim
03-29-2007, 02:41 AM
ok i will now. thanks!!

xtumen
03-29-2007, 10:52 PM
I just installed this word for word, and I am having a problem in my admincp panel. The vb options in my usergroup manager is not there. I cant give any usergroup permission to use it. Any ideas?

I am using vb 3.5.5 with vbadvanced.

Same thing, but with vB 3.6.4 and vBa CMPS 2.2.1. When I try to open ***/forum/admincp/pageradmin.php I see a blank blue page with vB Pager title. And there are no permissions where they should be. I've reinstalled and refreshed many times - no help. Any way around that?

blind-eddie
03-29-2007, 11:24 PM
I dont see why you would be having this problem. I installed this a long time ago. I have no problem with it. Look in your admincp/usergroups/ pick one....You will see vbpager options there...Also when you log into admincp, vbpager also shows on the left.

uaesensation
04-01-2007, 11:42 AM
Thank you uae for this hack and thanks for all who helped and supported you.

I have slight problem and hopeful you could provide me with solution. noone in my vbulletin could access "sent folder" or "download" .. they are disabled somehow, although i made sure that sent and read messages are not marked as deleted. please check the screenshot for more clarification.

P.S. i'm using vbulletin 3.6.5

blind-eddie
04-01-2007, 12:49 PM
Do you see Pager & Private Messages on top right of any page after login?

uaesensation
04-01-2007, 05:41 PM
yes, u mean like this
---------------------------------------------------
You last visited: Today at 02:29 PM
Private Messages: Unread 0, Total 14.
Pager Messages: Unread 0, Total 299.
---------------------------------------------------

everything is working fine except that i cant go to sent messages folder

tmal2
04-02-2007, 09:52 PM
Hi All, I just installed VB pager and had no problems except for one. The sound is not working. I've got it set in the control panel to play the sound when a message comes in but it's not working.

Any suggestions?

bmoods
04-08-2007, 05:28 AM
Good morning,

I veils have a vBulletin forum 3.6.5 and I installs to vBpager 3.0.4.

But it there in a small problem:

The members cannot answer and the fenètre returns without arrèt.
At the level of answers messages are not enregistrès.

All permissions are good.

I need help.

Thank you and good day.

MedBlix
04-08-2007, 10:20 PM
I keep getting "Not Allowed To Use This"
Error.

uaesensation
04-09-2007, 03:53 PM
bmoods and medblix .. make sure you read and do these step https://vborg.vbsupport.ru/showpost.php?p=898837&postcount=496

dagummit
04-10-2007, 03:45 AM
is there a way to keep the pager window open after the user sends/replies to a page?

and...

is there a way to keep a running history of the pages as they come in on the pager window...like you would see in AIM?

Thanks...nice mod btw!

thejdm
04-11-2007, 02:40 AM
anything for 3.6.x ??

BACANERIA
04-13-2007, 05:13 AM
thank you thank you thank you it works great.

iogames
04-13-2007, 03:05 PM
Yeah! my favorite hack! and I don't have it installed lol [anything for 3.6.x???]

Amaresh
04-14-2007, 10:24 PM
works great on 3.6.5 (y) Thanks

tekstylez
04-15-2007, 06:29 AM
When clicking to page a member, only the "whos online" list pops up, where before the send a message box would show.... I adjust all the permissions, and settings, why is it doing this? Basicaly it will not let me send messages to users who are not online....

EDIT:
I just tried to page someone online... when clicking on the username in the whos online window, it takes me to my homepage

dont mean to be a pest, but i realy need some help with this!

frandy
04-19-2007, 02:35 PM
How are you able to view members messages?? I think there are people advertising on my forums.

TotalTorque.net
04-20-2007, 10:20 PM
I installed this yesterday and had to disable it within an hour. Even between a limited number of people (mods x 6) is caused havoc with numerous database errors, and on two occasions the site went down for 5-10 mins, and we've had no problems at all in recent months so I can only associate it with the overhead this puts on the server/database? We were pinging messages about a lot, but it just seems very unstable.

bluegum
05-01-2007, 11:05 AM
I can send a new pm and recieve them
but myself and users can not reply to them??

all permissions are corerect

We just can not reply to the pages sent??

help!!!

valdet
05-01-2007, 11:48 AM
Before I install this can someone please tell me if this is taking too much of database load time?
Do you notice your boards running slower after installing?

Thx.

CowboyJeffR
05-03-2007, 01:47 AM
I've read the majority of this thread and can't find a solution.

I'm running V3.6.5. I was using the default style and everything worked great..

today I installed a new skin. I made sure all the templates were updated with the additional code (I checked it numerous time). My user are showing they have a page, but it will not pop up. If they switch back to the default style the message appears immediately.

The skin I installed was BlackandBlue which I downloaded from this board.

Any ideas.

Deimos
05-03-2007, 09:47 PM
Does anyone know of a way to restrict which usergroups are listed on the "Open VB Pager" list (I.e the who's online list?)

I'm restricting it's use to staff ONLY, but when they open the pager listing, it lists staff and anyone else who's on, rather than restricting it to those who have permission to use the pager.

TTG
05-03-2007, 11:37 PM
I've read the majority of this thread and can't find a solution.

I'm running V3.6.5. I was using the default style and everything worked great..

today I installed a new skin. I made sure all the templates were updated with the additional code (I checked it numerous time). My user are showing they have a page, but it will not pop up. If they switch back to the default style the message appears immediately.

The skin I installed was BlackandBlue which I downloaded from this board.

Any ideas.

Try removing the template edits from the postbits and you may find it works. I found that was the only problem I had with a skin I installed.

CowboyJeffR
05-04-2007, 12:14 AM
Try removing the template edits from the postbits and you may find it works. I found that was the only problem I had with a skin I installed.

I wish I'd read this earlier. Today I printed out every template that is used by Pager for both my default style and new style and reviewed each one Line by Line.

In my default style I never changed the Postbit_Legacy but did change the Postbit template. I copied the new code in the Postbit template, but I must have deleted some of the information which was above.

I corrected this and it's working....

You're smart TTG...you figured out it was something that was optional...I'm impressed.

kildjean
05-04-2007, 01:41 AM
im running vb 3.6.x I cannot find the permissions you say so people can use it... how can I set them can you show me which permissions you talk about?

thanks!

Kil

parabat
05-04-2007, 10:03 AM
im running vb 3.6.x I cannot find the permissions you say so people can use it... how can I set them can you show me which permissions you talk about?

thanks!

Kil

Awesome Mod, so thanx!!!! :up:
Definitely MOD!

Usergroup permissions can be found with in each usergroup.

-PB

TurboLaserAWD
05-06-2007, 08:03 AM
I am having a problem with multiple users stating that, when entering text in the pager window, it is disappearing..

I'm having this same problem. I'm using the default template on 3.6.5 and everything is uploaded and all templates have been modified correctly.

What happens is when I go to a users profile and click "Send a pager message to *user*" a window pops up with who's online and then another window with a page overlays that. The main problem though is that as soon as I type a letter it immediately dissapears, no matter how much I type. If I try to hit the page button I get an error telling me that my message is too short (because all of my text dissapeared). This is my only obstacle right now and I'd like to know how to get over it. Thanks!

RemiAlone
05-12-2007, 10:46 AM
If i remember correctly that's being caused by having a limit on the total character of that message. Probably it's set to zero right now.

Mrdby
05-13-2007, 12:05 PM
3.6.6??

TTG
05-14-2007, 11:13 PM
3.6.6??

Working fine on my 3.6.6 :up:

sabrawy
05-15-2007, 07:17 PM
hello guys i wanna make with Flash media server a file to make people able to chat i want the owner of this script allow me to edite or i will make the file and give it to him to update his hack if he wants
:) can i add to the script if i want?
thank u

iogames
05-16-2007, 04:18 AM
hello guys i wanna make with Flash media server a file to make people able to chat i want the owner of this script allow me to edite or i will make the file and give it to him to update his hack if he wants
:) can i add to the script if i want?
thank u

I've been trying to contact the creator/developer to do the same, to upgrade the Hack but he doesn't respond, can you PM me and we can work on it?