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)
-   -   Add-On Releases - Username Html MarkUp Everywhere 4.2.x (https://vborg.vbsupport.ru/showthread.php?t=290368)

pityocamptes 11-24-2013 09:10 PM

So is that part of standard VBulletin?

Elite_360_ 11-24-2013 09:16 PM

Quote:

Originally Posted by pityocamptes (Post 2463458)
So is that part of standard VBulletin?

no its someone mod please only ask for support about this mod you will have to ask where you got it

pityocamptes 11-24-2013 10:02 PM

Ok, figured out it was another mod. Thanks!

Nickie 11-25-2013 01:02 AM

Hey, I have recently encountered this issue with this modification...

Any solutions?

http://irl-upload.com/u/1385344934.png


EDIT:

Issue resolved. Read the first page of the replies and did step 3 as suggested!

hellboundblogge 11-26-2013 06:37 PM

When is the new update going to come?

ozzy47 12-09-2013 11:57 AM

OK I am sure it is something I did not do, but when a user visits New Posts:

Code:

http://YOURSITE.com/search.php?do=getnew&contenttype=vBForum_Post
Clicking on the arrow icon to go to the last unread post, directs you to the wrong thread.

Disco_Dave 12-09-2013 12:02 PM

Quote:

Originally Posted by ozzy47 (Post 2467038)
OK I am sure it is something I did not do, but when a user visits New Posts:

Code:

http://YOURSITE.com/search.php?do=getnew&contenttype=vBForum_Post
Clicking on the arrow icon to go to the last unread post, directs you to the wrong thread.

He knows this Ozzy, I posted this some time ago, apparently he has a fix in the latest version due soon :D

Elite_360_ 12-09-2013 12:03 PM

Quote:

Originally Posted by ozzy47 (Post 2467038)
OK I am sure it is something I did not do, but when a user visits New Posts:

Code:

http://YOURSITE.com/search.php?do=getnew&contenttype=vBForum_Post
Clicking on the arrow icon to go to the last unread post, directs you to the wrong thread.

i heard of that bug before i can't remember the fix i got to search this thread i think i fix it in 1.0.9 the new version 1.4.0 well i might call it 2.0.0 fixes all bug and no more template edits but if you want like 99% markup there will be 3 to 6 file edits i find that fix for you

ozzy47 12-09-2013 12:09 PM

I disabled Blogs, CMS, and activity stream on my site, so I believe only the above issue stands out for me. :)

Elite_360_ 12-09-2013 12:29 PM

Quote:

Originally Posted by ozzy47 (Post 2467041)
I disabled Blogs, CMS, and activity stream on my site, so I believe only the above issue stands out for me. :)

i guess i did not release that fix i got to upload 1.0.11 on my test form and i will get back at you my mind is lost in this mod the new one got like 70+ plugin hook

ozzy47 12-09-2013 12:37 PM

Good grief, I feel your pain, no hurry. :)

Elite_360_ 12-09-2013 12:57 PM

Quote:

Originally Posted by ozzy47 (Post 2467043)
Good grief, I feel your pain, no hurry. :)

yeah the username is in so many different places in the database they should just used the userid and just had the username in the user database and when you do a fetch_musername use the userid insted of the username because most query call the user database for more user info so they can get the musername or info for the username they always need the usergroupid

ozzy47 12-09-2013 03:37 PM

That seems to have done it, thanks. :)

ozzy47 12-09-2013 03:54 PM

Hmmm, spoke to soon, all kinds of errors.

Code:

Warning: Only variables should be passed by reference in ..../e360mods/markup/hooks/search_results_threadbit.php on line 3

Warning: Only variables should be passed by reference in ..../e360mods/markup/hooks/search_results_threadbit.php on line 4


New Joe 12-09-2013 04:03 PM

Your site won't even load for me now ozzy....

ozzy47 12-09-2013 04:06 PM

Hmmm, what is it saying?

ozzy47 12-09-2013 04:08 PM

Fixed the errors by changing the search_results_threadbit.php file to the following.

Code:

$variable1 = fetch_userinfo($thread['lastposterid']);
$variable2 = fetch_userinfo($thread['postuserid']);

$thread['lastposter'] = @fetch_musername($variable1);
$thread['postusername'] = @fetch_musername($variable1);


New Joe 12-09-2013 04:08 PM

As you were, back up working, just wouldn't load for a while.

ozzy47 12-09-2013 04:10 PM

Maybe while I was adjusting the mods file.

Elite_360_ 12-09-2013 04:34 PM

Quote:

Originally Posted by ozzy47 (Post 2467097)
Hmmm, spoke to soon, all kinds of errors.

Code:

Warning: Only variables should be passed by reference in ..../e360mods/markup/hooks/search_results_threadbit.php on line 3

Warning: Only variables should be passed by reference in ..../e360mods/markup/hooks/search_results_threadbit.php on line 4


you use $variable1 twice but anyway you're a genius your running 4.2.2 the @ was hiding the error for me i don't know why i didn't not think of that it need fresh eyes i was trying a new way in the new version i will release 2.0.0 in the next couple of days
Quote:

Originally Posted by ozzy47 (Post 2467106)
Fixed the errors by changing the search_results_threadbit.php file to the following.

Code:

$variable1 = fetch_userinfo($thread['lastposterid']);
$variable2 = fetch_userinfo($thread['postuserid']);

$thread['lastposter'] = @fetch_musername($variable1);
$thread['postusername'] = @fetch_musername($variable1);



ozzy47 12-09-2013 04:36 PM

You are correct, variable1 was twice, changed it and all seems good. The errors were hidden for me too, till I turned off debug mode.

Elite_360_ 12-09-2013 04:45 PM

Quote:

Originally Posted by ozzy47 (Post 2467121)
You are correct, variable1 was twice, changed it and all seems good. The errors were hidden for me too, till I turned off debug mode.

i updated the fix you don't need the @ sign in the code that was just hiding the error
re-download the "search_results_threadbit.php" and let me know if you get an error

ozzy47 12-09-2013 04:49 PM

I think we got it this time. :)

Elite_360_ 12-09-2013 05:03 PM

Quote:

Originally Posted by ozzy47 (Post 2467124)
I think we got it this time. :)

i feel like this right now

https://vborg.vbsupport.ru/attachmen...4&d=1386612076

Jaggee 12-11-2013 09:53 PM

Works very well, but I'm using image next to my user's name so it give's wrong alt info of thread's starter when hovering over the thread.

It should be like "Started by NAME" but for me it's "Started by <img src=" when I hover.

Can you help me to fix it?

Elite_360_ 12-12-2013 12:07 AM

Quote:

Originally Posted by Jaggee (Post 2467716)
Works very well, but I'm using image next to my user's name so it give's wrong alt info of thread's starter when hovering over the thread.

It should be like "Started by NAME" but for me it's "Started by <img src=" when I hover.

Can you help me to fix it?

If you read the README text file the fix is #3

Jaggee 12-12-2013 10:44 AM

Quote:

Originally Posted by Elite_360_ (Post 2467744)
If you read the README text file the fix is #3

Thanks!

pityocamptes 12-17-2013 01:28 AM

I noticed this in the url's... is this normal? When you click on a user in the stats section you get this:

Code:

www.XXXXXXXXXXX.com/members/401-bimg-srchttpsXXXXXXXXXXXXXXcomimagesRegpng-border0span-stylecolor-greenwilthenrayspanb

spankaveli 12-17-2013 01:56 AM

Looks nice :)

Elite_360_ 12-17-2013 01:59 AM

Quote:

Originally Posted by pityocamptes (Post 2468868)
I noticed this in the url's... is this normal? When you click on a user in the stats section you get this:

Code:

www.XXXXXXXXXXX.com/members/401-bimg-srchttpsXXXXXXXXXXXXXXcomimagesRegpng-border0span-stylecolor-greenwilthenrayspanb

No but that fix in next version will be release by the 23rd maybe sooner i have been working on it for the last 2 weeks its looking good

spankaveli 12-29-2013 04:37 PM

Quote:

Originally Posted by Elite_360_ (Post 2468876)
No but that fix in next version will be release by the 23rd maybe sooner i have been working on it for the last 2 weeks its looking good

How's that update coming along?

Elite_360_ 12-29-2013 08:42 PM

Quote:

Originally Posted by spankaveli (Post 2471182)
How's that update coming along?

working on it now

Elite_360_ 12-31-2013 06:13 AM

Updated to 2.0.0
-Fix All know Bugs
-Markup Everywhere well almost like 90% if you use every feature that vb has
-Added Member Action Drop-Down where it did not have it "To many place to list"
-Added User Group Permissions in Usergroup Manager (Has it's own Markup)
-Added User Name Font
-Added User Name Prefix (Clan Tags) and the Option to Change to a Suffix in "Usergroup Manager"
-Added Auto Template Edits

Elite_360_ 12-31-2013 07:31 AM

Updated to 2.0.1
-Fix Registration Bug

Elite_360_ 12-31-2013 09:05 AM

Updated to 2.0.2
-Forgot to add the css template css is need for Member Action Drop-Down for the search.

blackberry 01-02-2014 07:01 PM

Thank you .. works like charm thanks alot and happy new year ;) best gift though

pityocamptes 01-08-2014 03:18 AM

Hey thanks. Will update here shortly. As far as the other previous version, how do I address the manual changes to the templates? Thanks again!

Elite_360_ 01-08-2014 04:49 AM

Quote:

Originally Posted by pityocamptes (Post 2472915)
Hey thanks. Will update here shortly. As far as the other previous version, how do I address the manual changes to the templates? Thanks again!

well all the templates edits are auto edits so you will not have to edit any template. But if you are Updating from 1.0.9, 1.0.10 and 1.0.11 to 2.x.x then you will have to revert all the templates in the list in the first post.

pityocamptes 01-08-2014 05:12 PM

Well I had the previous version and I recall that in the Read Me file it showed how to have your mod on other pages like side bar, CMS, Blog, etc. There was a list of templates to edit. Do I edit these back to vanilla? Or something else? Thanks.

Elite_360_ 01-08-2014 06:27 PM

Quote:

Originally Posted by pityocamptes (Post 2473032)
Well I had the previous version and I recall that in the Read Me file it showed how to have your mod on other pages like side bar, CMS, Blog, etc. There was a list of templates to edit. Do I edit these back to vanilla? Or something else? Thanks.

just revert the template


All times are GMT. The time now is 11:42 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.01664 seconds
  • Memory Usage 1,827KB
  • 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
  • (9)bbcode_code_printable
  • (16)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)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