vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Administrative and Maintenance Tools - Read PMs (PM Management Suite Lite) (https://vborg.vbsupport.ru/showthread.php?t=209344)

Mosh 01-14-2011 02:56 PM

Update: v3.8.17
-- Altered: updated 3 phrases in the Turkish language file "read_pms_tur.php"

This is just a language update. There is no new functionality, no bug fixes, just updated an existing language. So, only update if you feel the need to.

As Adem GEN? is continuing to keep the ball rolling with language translations (thank you once again Adem GEN? ;)), I will make the following request to everybody.

As a lot of people benefit from this hack, if you have time, I would urge you to help me out and give back to the community at the same time, by providing a translation in your native language (as long as there is not an official translation already out there).

So, if you read and write a different language other than Brazilian, English, German, Italian, Spanish or Turkish, and have a couple of hours to provide a translation in your language, please see the Translations section in the first post for more information.

Jeff Bade 04-05-2011 06:37 PM

I just installed it..
Not sure about keeping it yet..

Anyway it's use can be logged in the Control Panel Log?

Mosh 04-07-2011 09:12 PM

Quote:

Originally Posted by Jeff Bade (Post 2181210)
Anyway it's use can be logged in the Control Panel Log?

There is no Control Panel logging performed at all.

Chadi 10-21-2011 02:49 PM

Upgraded php to 5.3x and now I get this in backend:

Code:

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 55

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 107

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 111

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 119

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 130

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 134

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 142

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 211

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 389

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/class_core.php on line 2552


Mosh 10-22-2011 10:21 PM

Quote:

Originally Posted by Chadi (Post 2259793)
Upgraded php to 5.3x and now I get this in backend:

Code:

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 55

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 107

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 111

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 119

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 130

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 134

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 142

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 211

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/init.php on line 389

Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/includes/class_core.php on line 2552


In PHP 5 and above pass-by-reference is done automatically, but in PHP 4 had to be done explicitly. As of PHP 5.3 you will get the deprecated warning message appear.

What you need to do is edit read_pms.php, at line 502 find:

PHP Code:

    $bbcode_parser =& new vB_BbCodeParser($vbulletinfetch_tag_list()); 

and change it to:

PHP Code:

    $bbcode_parser = new vB_BbCodeParser($vbulletinfetch_tag_list()); 

That should fix your issue :)

I am probably not going to put a fix for download yet, as most vBulletin v 3.x.x installations still reside on servers that have not been upgraded to PHP 5.3 and above yet.

Chadi 10-26-2011 03:03 AM

Thanks, but I tried that, didn't fix it.

Mosh 10-26-2011 06:58 AM

Quote:

Originally Posted by Chadi (Post 2261598)
Thanks, but I tried that, didn't fix it.

That does fix it for this hack, as there is only 1 "pass by reference" in the read_pms.php file.

You have remember that even vBulletin 3.8.7 PL2 (latest version of 3.8.x) has not been designed with PHP 5 in mind and PHP 5.3 will display multiple depreciated messages without this hack installed at all.

For instance, I just checked and there are 16 lines in vBulletin 3.8.7 PL2's includes/init.php file that will generate the depreciated message you are getting and I have not even checked any other vBulletin files, so I suspect there are a lot more of them.

You are going to need to post about this at vBulletin.com if it has not already been flagged.

Gardemarin 12-06-2011 10:38 PM

VB 3.8.5

I have an error message before the table, when the field "TO" contains "Recipients can not be displayed."

If i have 3 or 5 field with "Recipients can not be displayed", then 3 or 5 error message displayed and soon...

Please, fix this issue.

PHP Code:

WARNINGarray_values() [function.array-values]: The argument should be an array
in line 430 of file /home/.../admincp/read_pms.php
Trace path
:
, function 
all_error_handlerline
/home/.../admincp/read_pms.php, function array_valuesline 430 

PHP Code:

WARNINGarray_values() [function.array-values]: The argument should be an array
in line 216 of file /home/.../admincp/read_pms.php
Trace path
:
, function 
all_error_handlerline
/home/.../admincp/read_pms.php, function array_valuesline 216 


Mark_Zuckerberg 04-21-2012 06:02 AM

changed the code

Code:

    $bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
to

$bbcode_parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());


but still the same error see the screencaps

https://vborg.vbsupport.ru/external/2012/04/21.png

mahmo0od 04-21-2012 09:22 PM

woooooooow
good mod
i will install it
thank u friend


All times are GMT. The time now is 11:47 AM.

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

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01467 seconds
  • Memory Usage 1,760KB
  • 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
  • (4)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

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

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