Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions

Reply
 
Thread Tools Display Modes
  #1  
Old 05-15-2008, 03:06 PM
Hamel el Mesl's Avatar
Hamel el Mesl Hamel el Mesl is offline
 
Join Date: May 2008
Location: Egypt
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default separate tags

Hello all,

These problem seems to be international one.

In vbulletin 3.7.0, you have to separate tags by a comma >> (,)

The problem that my forum is arabic one, and in arabic the comma is a different letter.
I mean in the keyboard, when I'm writing arabic, i press another button to write a comma, so the tags are not separated because they are read as one tag, the arabic comma is read as usual letter.

When i submitted a support ticket, i recieved this reply;

Quote:
Hi there;
The same problem is with other multi-byte languages such as Chinese, too. Unfortunately, there is no work around for this without editing the source code, and we cannot provide support for that. Please ask over on vbulletin.org for a possible solution.

Best regards
Andy Huang
vBulletin Support Team
So, how can we go to this code ?
Is there any solution for that problem, especially because as i said it is an international problem !!
Reply With Quote
  #2  
Old 05-15-2008, 03:19 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I think you would have to actually go in and modify the code. See this in functions_bigthree.php (near the bottom of the file):
Quote:
function fetch_tagbits($threadinfo)
{
global $vbulletin, $stylevar, $vbphrase, $show, $template_hook;


if ($threadinfo['taglist'])
{
$tag_array = explode(',', $threadinfo['taglist']);

$tag_list = '';
foreach ($tag_array AS $tag)
{
$tag = trim($tag);
if ($tag === '')
{
continue;
}
$tag_url = urlencode(unhtmlspecialchars($tag));
$tag = fetch_word_wrapped_string($tag);

$tag_list .= ($tag_list != '' ? ', ' : '');
eval('$tag_list .= trim("' . fetch_template('tagbit') . '");');
}
}
else
{
$tag_list = '';
}

eval('$wrapped = "' . fetch_template('tagbit_wrapper') . '";');
return $wrapped;
}
I think you would have to modify the explode part. If you change the comma to something else, you need to explode on that new character instead of the comma. And, edit the comma in the $tag_list also.

edit: Hmmm, I'm really not sure about this. I'm not real good with php. I'm pretty sure this is where you would play with the code, but I'm not sure exactly how. Maybe someone else (Opserty?) will come along and help.
Reply With Quote
  #3  
Old 05-15-2008, 03:26 PM
Hamel el Mesl's Avatar
Hamel el Mesl Hamel el Mesl is offline
 
Join Date: May 2008
Location: Egypt
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you Lynne for your interest
and we will wait to hear from you again
and i will test it myself too

just to be sure, i will color the letters that I will change

Quote:

$tag_array = explode(',', $threadinfo['taglist']);
$tag_list .= ($tag_list != '' ? ', ' : '');
Reply With Quote
  #4  
Old 05-15-2008, 03:36 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes, I *think* that is what you would change. But, as I said, I haven't tested this and if I were you, I would test it on a test site. But, you will need to get rid of all the tags you currently have on the test site because they will be separated by commas. That is in the table "thread" under the column "taglist".
Reply With Quote
  #5  
Old 05-15-2008, 03:39 PM
Hamel el Mesl's Avatar
Hamel el Mesl Hamel el Mesl is offline
 
Join Date: May 2008
Location: Egypt
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I tried it Lynne

But It didn't work.
Reply With Quote
  #6  
Old 05-15-2008, 03:51 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Did you empty the thread table of all the tags first? What was the result of your experiment - no tags listed? Did they get input into the table at all with the new separator?
Reply With Quote
  #7  
Old 05-16-2008, 08:17 PM
Hamel el Mesl's Avatar
Hamel el Mesl Hamel el Mesl is offline
 
Join Date: May 2008
Location: Egypt
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I make the changes you said.
And tried to add a new thread and added new tags and seperated them with the new comma but they hadn't been separated.
they showed up as just one tag
Reply With Quote
  #8  
Old 05-16-2008, 08:39 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmmmm, well, I'm not sure then what needs to be changed.
Reply With Quote
  #9  
Old 05-17-2008, 01:17 AM
Hamel el Mesl's Avatar
Hamel el Mesl Hamel el Mesl is offline
 
Join Date: May 2008
Location: Egypt
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

So who can help us then ??
It's not just one person's problem..

I hope we can find the the person who can help in this..
There must be one !
Reply With Quote
  #10  
Old 05-17-2008, 02:05 AM
MoT3rror MoT3rror is offline
 
Join Date: Mar 2007
Posts: 423
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I believe the function in fetch_tagbits in functions_bigthree.php is the function you need to edit.
PHP Code:
$tag_array explode(','$threadinfo['taglist']); 
This explode seperates the taglist found in the thread table into array and the code below put all the tags together like shown on showthread.php.

The tags are insert with the function add_tags_to_thread in functions_newpost.php. Then the tags are exploded with the explode on line 627 of function fetch_valid_tags in functions_newpost.php.

You shouldn't have to edit to tags.php because in this file I believe it pulls all the tags from the tags table.

I didn't really look into changing or delete tags but that covers adding and selecting I believe.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07: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.05298 seconds
  • Memory Usage 2,245KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete