vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   New Posting Features - Default User Text Formatting (font styling) . Zero Query! (https://vborg.vbsupport.ru/showthread.php?t=231923)

goxy63 12-15-2012 10:50 AM

Update pls, looks like many probs with latest version of VB 4.2

For example its making problems within PM, upon quoting colors are messed up

Within visitor messaging, if you post few links as a message its making problems with colors or links

Problem with option view within user options of this mod....its not displayed properly if you have fixed width of forums

Thank you

justicechick 12-20-2012 02:53 AM

Thanks been looking for this to use in my 4.2 forum.

goxy63 12-21-2012 12:57 AM

Quote:

Originally Posted by justicechick (Post 2391778)
Thanks been looking for this to use in my 4.2 forum.

you dont have any problems that I mentioned above ?

justicechick 12-21-2012 02:51 AM

Quote:

Originally Posted by goxy63 (Post 2391989)
you dont have any problems that I mentioned above ?

Nope none at all...Ive only been doing this for 3 months and this seems to be one of the easiest mods that I have done so far.

blackberry 07-03-2013 02:15 PM

Thank you .. works fine on 4.2.1

Mysterious Ride 08-22-2013 08:04 AM

Hey, I was wondering if anyone knew how the change the list of colors selector to words instead of the color to make it easier to choose which color you want.

M.Iftikhar 10-09-2013 07:09 AM

Hello Please update this... now it is not working vb 4.2.2 today i upgraded my site to 4.2.2 when i enabled this it display error... working fine in 4.2.1....

ozzy47 10-09-2013 10:12 AM

Without the error, no one can help.

emath 10-12-2013 01:42 PM

same here, gives an error on vb4.2.2

ozzy47 10-12-2013 02:02 PM

As I said in the post above yours:

Quote:

Originally Posted by ozzy47 (Post 2451208)
Without the error, no one can help.


justicechick 11-18-2013 08:42 AM

Quote:

Originally Posted by ozzy47 (Post 2451208)
Without the error, no one can help.

Hi Ozzy! I loved this mod, however it did give me a error when first installing 4.2.2 , I dont remember the exact error though. But I went back and reinstalled it to try to get the error for you and so far no error this time. It just doesnt work and looks very strange when you go to the setting area. ------>>> https://vborg.vbsupport.ru/external/2013/11/25.png

In post there is no change in anything though.

ezak 11-19-2013 08:25 AM

when enable this mod in vb 4.2.2 . its show this error
Code:

Warning: Only variables should be assigned by reference in ..../includes/class_bootstrap.php(909) : eval()'d code on line 7

Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at ..../includes/class_core.php:5755) in ..../includes/facebook/facebook.php on line 49

and its doesn't work

please anyone can update it to the latest version of vb

justicechick 11-22-2013 06:32 PM

Quote:

Originally Posted by ezak (Post 2462032)
when enable this mod in vb 4.2.2 . its show this error
Code:

Warning: Only variables should be assigned by reference in ..../includes/class_bootstrap.php(909) : eval()'d code on line 7

Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at ..../includes/class_core.php:5755) in ..../includes/facebook/facebook.php on line 49

and its doesn't work

please anyone can update it to the latest version of vb

I had trouble when I upgraded to 4.2.2 as well, first the error then the problem I posted prior to this post. I re downloaded the file here though and reinstalled it after uninstalling the other and it is working now. I'm thinking ( I might be wrong though) that it is a conflict this mod is having with another mod. Bc I had some other modifications still giving me that code and after removing them this modification is working. If you need any help let me know and I can try to help figure it out with you.

https://vborg.vbsupport.ru/external/2013/11/22.png

scoutz 11-29-2013 03:01 AM

It worked fine, and I set everything. When i went to the profile.php page it was really broken.

ezak 11-29-2013 08:06 PM

I found the plugin which make that all problem

plugin: NLP - User Text Formatting -init our vars
Hook: global_state_check
code:
PHP Code:

// include(DIR . "/products_svn/nlp_usertextformatting/global_state_check.php");
if($vbulletin->options['nlp_usertextformatting_active']) {
    
// Setup usertextformatting -> added to vBulletin Object.
    
$vbulletin->usertextformatting =& unserialize($vbulletin->userinfo['usertextformatting']);
    
// allowed usergorups. Init
    
$vbulletin->usertextformatting['groups'] = unserialize($vbulletin->options['nlp_usertextformatting_groups']);
    
// check Groups. (using is_member_of(); to get acutal user group. (more than one group))
    
if(!is_member_of($vbulletin->userinfo$vbulletin->usertextformatting['groups'])) {
        
// if not .. disable mod.
        
$vbulletin->options['nlp_usertextformatting_active'] = false;
    }
    
// locations init.
    
$vbulletin->usertextformatting['loc'] = unserialize($vbulletin->options['nlp_usertextformatting_locations']);
    
// check locations.
    
if(THIS_SCRIPT !== 'profile' AND (!isset($vbulletin->usertextformatting['loc'][THIS_SCRIPT]) OR $vbulletin->usertextformatting['loc'][THIS_SCRIPT] == false)) {
        
$vbulletin->options['nlp_usertextformatting_active'] = false
    }   


anyone can fix this code to make is working without problem ?

\\ edit

specially in this line
Code:

$vbulletin->usertextformatting =& unserialize($vbulletin->userinfo['usertextformatting']);
and if you remove the '&'
to be
Code:

$vbulletin->usertextformatting = unserialize($vbulletin->userinfo['usertextformatting']);
the error will gone , but the mod will not working,

anyone can test on it and fix this code ?

letsjoy 12-01-2013 02:55 AM

Coder Please fix the plugin...

shahidbaloch 12-21-2013 08:00 PM

1 Attachment(s)
Dear Coder
i am using Vbulletin 4.2.2
when i try to use this Mod it return following error

Warning: Only variables should be assigned by reference in ..../includes/class_bootstrap.php(909) : eval()'d code on line 4

and setting page looks like this

Attachment 147638

i am not using any other font mod.
please fix the error i want this Mod.
looking forward for fixing

shahidbaloch 12-23-2013 06:45 PM

no reply? :(
plz help me for this prob

ozzy47 12-23-2013 06:54 PM

Try the appropriate XML, I am guessing, the AR-[Product]-Default-User-Text-Formatting.[Hz].v2.0.1 one is Arabic, and of course the EN-[Product]-Default-User-Text-Formatting.[Hz].v2.0.1 is English.

Edit: Attachments removed, mod needs more work.

shahidbaloch 12-23-2013 07:14 PM

Quote:

Originally Posted by ozzy47 (Post 2470212)
Try the appropriate XML, I am guessing, the AR-[Product]-Default-User-Text-Formatting.[Hz].v2.0.1 one is Arabic, and of course the EN-[Product]-Default-User-Text-Formatting.[Hz].v2.0.1 is English.

I am using 2nd file English version but its givig this error

Warning: Only variables should be assigned by reference in ..../includes/class_bootstrap.php(909) : eval()'d code on line 4
Unable to add cookies, header already sent.
File: /home/...................../includes/class_core.php
Line: 5755

its is necessary to upload language pack file?if yes then in which directory?

ozzy47 12-23-2013 07:25 PM

Hmm, nope, looks like that mod needs a bit more work than just a few simple edits. Maybe the developer will update it.

ezak 12-24-2013 09:16 AM

Quote:

Originally Posted by ozzy47 (Post 2470216)
Hmm, nope, looks like that mod needs a bit more work than just a few simple edits. Maybe the developer will update it.

thanks for try to update this mod, but the developer didn't response for our request

hope you can find the working mod for this

shahidbaloch 12-24-2013 05:26 PM

Quote:

Originally Posted by ozzy47 (Post 2470216)
Hmm, nope, looks like that mod needs a bit more work than just a few simple edits. Maybe the developer will update it.

thanx for quick reply
i request to developer plz do it in his earliest we need it badly for our forums.

shahidbaloch 01-16-2014 04:59 AM

there is no rep & update?

letsjoy 02-26-2014 07:42 PM

I think he's not supporting it anymore

K!nG 04-16-2014 05:50 PM

Can anyone confirm if its working on 4.2 ??

Thanks.

K!nG 04-17-2014 04:09 AM

EDIT : It's working without any issues/errors :)

Thanks for great mod :D

parveznpt 04-18-2014 09:23 AM

Thank U

pishtazweb 06-16-2014 08:34 AM

please update this hack for vbuleti 4.2.2

blackberry 06-19-2014 06:29 PM

works fine on vb 4.2.2

Haseenvilla 06-27-2014 12:56 PM

error in 4.2.2 :(
Warning: Only variables should be assigned by reference in ..../includes/class_bootstrap.php(909) : eval()'d code on line 4

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at ..../includes/class_core.php:5755) in ..../includes/facebook/facebook.php on line 49

BasicGreatGuy 06-28-2014 03:54 PM

I didn't realize that when you change the font settings, what you type will not appear changed until after you submit your post or reply. It appears to be working, although the font color choices don't appear in the drop down menu. You have to blindly click to try and find a color you like. Anyone now how to solve that problem? Also, someone posted a different options menu code. Which template exactly do I need to change to test out the alternate template for user options?

fxdigi-cash 07-03-2014 05:09 PM

for anyone who encounters the same error

go to this mod "same mod, but for vb.3.x and install it on your vb4.x.

here https://vborg.vbsupport.ru/showthread.php?t=215525

it works fine and no issues. The only thing is that you need to redo some styling such as alignment for the boxes, which is not big deal anyways.

Don't forget to remove the max version number in the xml code, this part should be like this:

HTML Code:

maxversion=""
Good luck!!

BasicGreatGuy 07-03-2014 05:13 PM

1 Attachment(s)
Quote:

Originally Posted by fxdigi-cash (Post 2505051)
for anyone who encounters the same error

go to this mod "same mod, but for vb.3.x and install it on your vb4.x.

here https://vborg.vbsupport.ru/showthread.php?t=215525

it works fine and no issues. The only thing is that you need to redo some styling such as alignment for the boxes, which is not big deal anyways.

Don't forget to remove the max version number in the xml code, this part should be like this:

HTML Code:

maxversion=""
Good luck!!

Have you experienced any font color bleed over with the mod? For instance, if a person who is using the mod quotes another, whatever color font the person using the mod has loaded changes the color of the post quoted. Sometimes completely, and at other times, just as you see here. It also happens in pm. See the attached.

fxdigi-cash 07-03-2014 05:35 PM

Quote:

Originally Posted by BasicGreatGuy (Post 2505054)
Have you experienced any font color bleed over with the mod? For instance, if a person who is using the mod quotes another, whatever color font the person using the mod has loaded changes the color of the post quoted. It also happens in pm.

I will try that and give feedback as soon as possible.

Thanks for the feedback :)

fxdigi-cash 07-03-2014 05:38 PM

I just tested it in the posts only and things look just fine...

I believe this one much better that the original mod on this thread!!

BasicGreatGuy 07-03-2014 06:53 PM

Quote:

Originally Posted by fxdigi-cash (Post 2505058)
I just tested it in the posts only and things look just fine...

I believe this one much better that the original mod on this thread!!

For some reason, the same thing happened in this version as well. I am running bulletin 4.2.1

fxdigi-cash 07-03-2014 06:58 PM

Quote:

Originally Posted by BasicGreatGuy (Post 2505064)
For some reason, the same thing happened in this version as well. I am running bulletin 4.2.1

This is weird!!

I have no issues at all with the mod v3.x on my vb4.2.2 pl1

Is that something caused by the none fixed issues on vb.4.2.1? I have no clue.

maybe it is better you upgrade to the latest version because on my side no troubles at all...

edgeless 10-06-2014 08:21 PM

This mod works on vB 4.2.x but the drop-down fields are all misaligned from their headings on the General Settings page.

Also, is there any way to get this mod to place the added formatting tags after the closing quote tag for quoted text within reply messages? It would be nice to retain the font particulars from the messages that the quoted text came from and only have one's response text modified.

tbworld 10-06-2014 08:30 PM

Always read the modification's thread before installing. Usually the thread will answer most of your questions, but feel free to add a new question if it is not listed. Thank you. :)


All times are GMT. The time now is 03:41 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.01499 seconds
  • Memory Usage 1,839KB
  • 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
  • (4)bbcode_code_printable
  • (2)bbcode_html_printable
  • (1)bbcode_php_printable
  • (12)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