View Full Version : New Posting Features - Add an Urdu Editor to your vBulletin forum - Urdu OpenPad integration
simunaqv
08-05-2007, 10:00 PM
Description:
This hack integrates Urdu OpenPad in your vBulletin forum. At the moment this hack is only available in the form of template modification instructions. These changes are aimed at converting specific edit areas into Urdu edit areas. You can use the same procedure to convert any other edit area into an Urdu edit area. Please note that this integration is available for textarea-mode i.e. it does not work for the wysiwyg mode.
NOTE: It has been brought to my notice that users on some forums are having problems logging in with Urdu user names. This is because of the way Unicode data is handled in a non-Unicode forum. I recommend skipping the modifications in the navbar, STANDARD_ERROR, STANDARD_ERROR_LITE, STANDARD_ERROR_LOGIN and the register templates on these forums.
Demo: Urdu Mehfil Forum (http://www.urduweb.org/mehfil)
Upload files:
Upload the contents of the upload folder to your forum root.
Template Changes:
in the headinclude template
===========================
FIND:
<if condition="$vboptions['externalrss']">
<link rel="alternate" type="application/rss+xml" title="$vboptions RSS Feed" href="external.php?type=RSS2" />
<if condition="$show['foruminfo'] OR $show['threadinfo']">
<link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - $foruminfo[title_clean] - RSS Feed" href="external.php?type=RSS2&forumids=$foruminfo[forumid]" />
</if>
</if>
AFTER ADD:
<script type="text/javascript" src="clientscript/OpenPad.js"></script>
<script type="text/javascript">
initUrduEditor();
</script>
in the navbar template
======================
FIND:
<td><input type="text" class="bginput" style="font-size: 11px" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="101" value="$vbphrase[username]" onfocus="if (this.value == '$vbphrase[username]') this.value = '';" /></td>
<td class="smallfont" colspan="2" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="103" id="cb_cookieuser_navbar" accesskey="c" />$vbphrase[remember_me]</label></td>
REPLACE WITH:
<td colspan="3"><input type="text" class="bginput" style="font-size: 11px" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="101" value="$vbphrase[username]" onfocus="if (this.value == '$vbphrase[username]') this.value = '';" /><br /><script language="javascript" type="text/javascript">writeToggleControl("vb_login_username");makeUrduEditor("vb_login_username", 11)</script></td>
<td class="smallfont" colspan="3" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="103" id="cb_cookieuser_navbar" accesskey="c" />$vbphrase[remember_me]</label></td>
FIND:
<div><input type="text" class="bginput" name="query" size="25" tabindex="1001" /><input type="submit" class="button" value="$vbphrase[go]" tabindex="1004" /></div>
REPLACE WITH:
<div><input type="text" class="bginput" name="query" size="25" tabindex="1001" /><input type="submit" class="button" value="$vbphrase[go]" tabindex="1004" />
<script language="javascript" type="text/javascript">makeUrduEditor("query", 11)</script>
</div>
in the STANDARD_ERROR template
==============================
FIND:
<td>$vbphrase[username]:<br /><input type="text" class="bginput" name="vb_login_username" size="50" accesskey="u" tabindex="1" /></td>
REPLACE WITH:
<td>$vbphrase[username]:<br /><input type="text" class="bginput" name="vb_login_username" id="vb_login_username_2" size="50" accesskey="u" tabindex="1" />
<br /><script language="javascript" type="text/javascript">makeUrduEditorById("vb_login_username_2", 11);writeToggleControl("vb_login_username_2", true)</script>
</td>
in the STANDARD_ERROR_LITE template
===================================
FIND:
<td>$vbphrase[username]:<br /><input type="text" class="bginput" name="vb_login_username" size="35" accesskey="u" tabindex="1" /></td>
REPLACE WITH:
<td>$vbphrase[username]:<br /><input type="text" class="bginput" name="vb_login_username" id="vb_login_username_2" size="35" accesskey="u" tabindex="1" />
<br /><script language="javascript" type="text/javascript">makeUrduEditorById("vb_login_username_2", 11);writeToggleControl("vb_login_username_2", true)</script>
</td>
in the STANDARD_ERROR_LOGIN template
====================================
FIND:
<td>$vbphrase[username]:<br /><input type="text" class="bginput" name="vb_login_username" size="50" accesskey="u" tabindex="1" /></td>
REPLACE WITH:
<td>$vbphrase[username]:<br /><input type="text" class="bginput" name="vb_login_username" id="vb_login_username_2" size="50" accesskey="u" tabindex="1" />
<br /><script language="javascript" type="text/javascript">makeUrduEditorById("vb_login_username_2", 11);writeToggleControl("vb_login_username_2", true)</script>
</td>
[B]in the register template
========================
FIND:
<div class="smallfont" style="margin-bottom:$stylevar[formspacer]px">
<strong>$vbphrase[username]</strong>:<br />
<input type="text" class="bginput" name="username" size="50" maxlength="$vboptions[maxuserlength]" value="$username" />
</div>
REPLACE WITH:
<div class="smallfont" style="margin-bottom:$stylevar[formspacer]px">
<strong>$vbphrase[username]</strong>:<br />
<input type="text" class="bginput" name="username" size="50" maxlength="$vboptions[maxuserlength]" value="$username" />
<br /><script language="javascript" type="text/javascript">writeToggleControl("username");makeUrduEditor("username", 11)</script></td>
</div>
FIND:
<div id="referrerfield"><input id="referrerfield_txt" type="text" class="bginput" name="referrername" value="$referrername" size="50" maxlength="$vboptions[maxuserlength]" /></div>
REPLACE WITH:
<div id="referrerfield"><input id="referrerfield_txt" type="text" class="bginput" name="referrername" value="$referrername" size="50" maxlength="$vboptions[maxuserlength]" />
<br /><script language="javascript" type="text/javascript">writeToggleControl("referrername");makeUrduEditor("referrername", 11)</script></td>
</div>
in the editor_toolbar_off template
=================================
FIND:
<div style="text-align:$stylevar[left]" style="padding-right:8px">
<textarea name="message" id="{$editorid}_textarea" rows="10" cols="60" style="width:100%; height:{$editor_height}px" tabindex="1">$newpost[message]</textarea>
<!--width:$stylevar[messagewidth]-->
</div>
REPLACE WITH:
<div style="text-align:$stylevar[left]" style="padding-right:8px">
<textarea name="message" id="{$editorid}_textarea" rows="10" cols="60" style="width:100%; height:{$editor_height}px" tabindex="1">$newpost[message]</textarea>
<!--width:$stylevar[messagewidth]-->
<br /><script language="JavaScript" type="text/javascript">writeToggleControl("{$editorid}_textarea", true);</script>
<br /><script language="JavaScript" type="text/javascript">writeKeyboard();</script>
</div>
FIND:
<script type="text/javascript">
<!--
vB_Editor['$editorid'] = new vB_Text_Editor('$editorid', $editortype, '$forumid', '$parsesmilie');
//-->
</script>
REPALCE WITH:
<script type="text/javascript">
<!--
vB_Editor['$editorid'] = new vB_Text_Editor('$editorid', $editortype, '$forumid', '$parsesmilie');
<if condition="$bbuserinfo['showvbcode'] != 2">
makeUrduEditorById('{$editorid}_textarea', 18);
</if>
//-->
</script>
in the editor_toolbar_on template
================================
FIND:
<tr valign="top">
<td class="controlbar">
<textarea name="message" id="{$editorid}_textarea" rows="10" cols="60" style="display:block; width:$stylevar[messagewidth]; height:{$editor_height}px" tabindex="1" dir="$stylevar[textdirection]">$newpost[message]</textarea>
</td>
<if condition="$smiliebox"><td class="controlbar">$smiliebox</td></if>
</tr>
ADD AFTER:
<if condition="$bbuserinfo['showvbcode'] != 2">
<tr>
<td>
<script language="JavaScript" type="text/javascript">
writeToggleControl("{$editorid}_textarea", true);
</script>
</td>
</tr>
<tr>
<td>
<script language="JavaScript" type="text/javascript">
writeKeyboard();
</script>
</td>
</tr>
</if>
FIND:
<script type="text/javascript">
<!--
vB_Editor['$editorid'] = new vB_Text_Editor('$editorid', $editortype, '$forumid', '$parsesmilie', undefined, '$ajax_extra');
//-->
</script>
REPLACE WITH:
<script type="text/javascript">
<!--
vB_Editor['$editorid'] = new vB_Text_Editor('$editorid', $editortype, '$forumid', '$parsesmilie', undefined, '$ajax_extra');
<if condition="$bbuserinfo['showvbcode'] != 2">
makeUrduEditorById('{$editorid}_textarea', 18);
</if>
//-->
</script>
in the newreply template
========================
FIND:
<td><input type="text" class="bginput" name="title" value="$title" size="50" maxlength="$vboptions[titlemaxchars]" tabindex="1" title="$vbphrase[optional]" /><td>
REPLACE WITH:
<
td><input type="text" class="bginput" name="title" value="$title" size="50" maxlength="$vboptions[titlemaxchars]" tabindex="1" title="$vbphrase[optional]" />
<br /><script language="javascript" type="text/javascript">writeToggleControl("title");makeUrduEditor("title", 14)</script>
</td>
in the newthread template
=========================
FIND:
<td><input type="text" class="bginput" name="subject" value="$subject" size="40" maxlength="$vboptions[titlemaxchars]" tabindex="1" /></td>
REPLACE WITH:
<tr>
<td><input type="text" class="bginput" name="subject" value="$subject" size="40" maxlength="$vboptions[titlemaxchars]" tabindex="1" />
<br />
<script language="javascript" type="text/javascript">writeToggleControl("subject");makeUrduEditor("subject", 14)</script>
</td>
in the showthread_quickreply template
=====================================
FIND:
<textarea name="message" id="{$editorid}_textarea" rows="10" cols="60" style="width:100%; height:{$editor_height}px" tabindex="1" dir="$stylevar[textdirection]"></textarea>
</if>
</fieldset>
<!--width:$stylevar[messagewidth]-->
ADD AFTER:
<if condition="$bbuserinfo['showvbcode'] != 2">
<br /><script language="JavaScript" type="text/javascript">writeToggleControl("{$editorid}_textarea", true);</script>
<br /><script language="JavaScript" type="text/javascript">writeKeyboard();</script>
</if>
FIND:
<script type="text/javascript">
<!--
vB_Editor['$editorid'] = new vB_Text_Editor('$editorid', $editortype, '$forumid', '$parsesmilie');
var QR_EditorID = '$editorid';
//-->
</script>
REAPLCE WITH:
<script type="text/javascript">
<!--
vB_Editor['$editorid'] = new vB_Text_Editor('$editorid', $editortype, '$forumid', '$parsesmilie');
var QR_EditorID = '$editorid';
<if condition="$bbuserinfo['showvbcode'] != 2">
makeUrduEditorById('{$editorid}_textarea', 18);
</if>
//-->
</script>
in the pm_newpm template
========================
FIND:
<div id="pmrecips"><textarea id="pmrecips_txt" name="recipients" rows="<if condition="is_browser('mozilla')">1<else />2</if>" cols="50" tabindex="1">$pm[recipients]</textarea></div>
REAPLCE WITH:
<div id="pmrecips"><textarea id="pmrecips_txt" name="recipients" rows="<if condition="is_browser('mozilla')">1<else />2</if>" cols="50" tabindex="1">$pm[recipients]</textarea>
<br /><script language="javascript" type="text/javascript">makeUrduEditor("recipients", 14);writeToggleControl("recipients")</script>
</div>
FIND:
<div id="bccpmrecips"><textarea id="bccpmrecips_txt" name="bccrecipients" rows="<if condition="is_browser('mozilla')">1<else />2</if>" cols="50" tabindex="1">$pm</textarea></div>
REAPLCE WITH:
<div id="bccpmrecips"><textarea id="bccpmrecips_txt" name="bccrecipients" rows="<if condition="is_browser('mozilla')">1<else />2</if>" cols="50" tabindex="1">$pm[bccrecipients]</textarea>
<br /><script language="javascript" type="text/javascript">makeUrduEditor("bccrecipients", 14);writeToggleControl("bccrecipients")</script>
</div>
FIND:
<td><input type="text" class="bginput" name="title" value="$pm[title]" size="50" maxlength="85" tabindex="1" /></td>
REPLACE WITH:
<td><input type="text" class="bginput" name="title" value="$pm[title]" size="50" maxlength="85" tabindex="1" />
<br /><script language="javascript" type="text/javascript">makeUrduEditor("title", 14);writeToggleControl("title")</script>
</td>
[B]Adding custom css classes:
Add the following css definitions to the additional css classes
.btnFlat {
background: #ECECEC;
border: 1px solid #D3D3D3;
cursor: pointer;
cursor: hand;
text-align:center;
font-family:Urdu Naskh Asiatype;
font-size:12px;
}
.btnRaised, .btnFlat:hover {
background: #D3D3D3;
border: 1px outset;
cursor: pointer;
cursor: hand;
text-align:center;
font-family:Urdu Naskh Asiatype;
font-size:12px;
}
.btnLowered, .btnFlat:active {
background: #D3D3D3;
border: 1px inset;
cursor: pointer;
cursor: hand;
text-align:center;
font-family:Urdu Naskh Asiatype;
font-size:12px;
}
.hiddentext {display:none}
.outline {cursor:hand; text-decoration:underline}
a.switch
{
font-family: Times New Roman;
color:#0000FF;
font-size:xx-small;
direction:rtl;
text-decoration:none;
unicode-bidi:embed;
}
a.switch:hover
{
background-color:#FF6699;
}
Updates:
August 08, 2007: Added instructions for modifiying the register template
simunaqv
08-06-2007, 08:20 PM
About Urdu OpenPad:
Urdu OpenPad is a javascript component that can convert any edit area (single-line input or mutiple-line textarea) on a web page into an Urdu edit area. It has been tested to work with Internet Explorer 5.5+ and FireFox. It is also usable in Opera 9.0+. The advantage of using Urdu OpenPad is that it allows the users to type Urdu without the need of installing Urdu language support or the Urdu Keyboard. The keyboard layout used by Urdu OpenPad is the Phonetic Urdu keyboard. The following pictures illustrate the phonetic Urdu key mapping used in Urdu OpenPad.
Normal State:
https://vborg.vbsupport.ru/external/2007/08/20.gif
Shift State:
https://vborg.vbsupport.ru/external/2007/08/21.gif
AltGR State:
https://vborg.vbsupport.ru/external/2007/08/22.gif
AltGR key is available on some non-English keyboards and it is equivalent to CTRL+ALT on the English keyboard.
Useful short-cuts:
Switching language mode (Urdu <==> English ) : CREL+SPACE
Zero width non-joiner (ZWNJ) : SHIFT+SPACE
Kaleem
08-06-2007, 08:29 PM
so if i do the whole coding it will make the whole forum in URDU, how do i add the only editor urdu editor or keypad instaed of the whole URDU translation ?
simunaqv
08-06-2007, 08:47 PM
so if i do the whole coding it will make the whole forum in URDU, how do i add the only editor urdu editor or keypad instaed of the whole URDU translation ?
LightInClouds, this hack is not for making an Urdu forum, it just adds an Urdu-editor to your forum, which is only part of the puzzle. I have released this hack since many people were asking for it after I converted my Urdu forum (http://www.urduweb.org/mehfil) from phpbb to vBulletin. But the majority of these people is interested only in adding an Urdu editor to their forums.
You do not need to apply each template change that I have listed. Only the changes to the headinclude template and the additional css are mandatory.
apiasto
08-06-2007, 09:41 PM
nice idea but i will wait n see what my members have to say before i go with it.
Selene
08-06-2007, 11:14 PM
pakistan zindabad :D
Kaleem
08-07-2007, 02:22 AM
After doing the Mandatory changes what url we should go to as my forum url is this
www.friendskorner.com/forum
I didt do the changes YET
simunaqv
08-07-2007, 07:23 AM
After doing the Mandatory changes what url we should go to as my forum url is this
www.friendskorner.com/forum (http://www.friendskorner.com/forum)
I didt do the changes YET
This mod has no effect on the url-mapping, this is just a modification to the edit areas.
projectego
08-07-2007, 08:21 AM
Looks interesting. I might take this for a spin later and see what it's like. Cheers! ;)
Thanks a lot Nabeel brother :)
The only one thing is confusing me that is "Username in unicode" if i change current usernames into urdu.. to database may ya user-end per koi problem ho sakti hai?
simunaqv
08-07-2007, 01:25 PM
Thanks a lot Nabeel brother :)
The only one thing is confusing me that is "Username in unicode" if i change current usernames into urdu.. to database may ya user-end per koi problem ho sakti hai?
Thank you Saad.
I have already explained that this mod only provides the capability to write Urdu. Storing Unicode Urdu data in the database is a separate issue that is not addressed here. I will write a separate post explaining what exactly is needed for a Unicode Urdu forum.
If you do not want users to enter usernames in Urdu, you can skip the modifications in the navbar, STANDARD_ERROR, STANDARD_ERROR_LITE, STANDARD_ERROR_LOGIN templates.
Kaleem
08-07-2007, 02:03 PM
What if i want the Editor on the seperate page?
Lahoria
08-07-2007, 02:05 PM
thanks will install it
Kaleem
08-07-2007, 02:11 PM
like this
https://vborg.vbsupport.ru/showthread.php?t=113239&highlight=arabic+keyboard
simunaqv
08-07-2007, 02:20 PM
like this
https://vborg.vbsupport.ru/showthread.php?t=113239&highlight=arabic+keyboard
Setting up Urdu OpenPad on a separate page should be quite simple. In fact many Urdu forums are already doing this. An example can be seen on http://www.hallagulla.com/urdu/view.php?pg=urdu_editor .
You just need a vbulletin powered page that contains an Urdu editor and the on-screen keyboard. I will try to gather information about it.
Kaleem
08-07-2007, 02:32 PM
Setting up Urdu OpenPad on a separate page should be quite simple. In fact many Urdu forums are already doing this. An example can be seen on http://www.hallagulla.com/urdu/view.php?pg=urdu_editor .
You just need a vbulletin powered page that contains an Urdu editor and the on-screen keyboard. I will try to gather information about it.
Yea i have seen this but this is like the PAGE within the Page as u can see the Footer underneath the Editor as well as on the whole page.
Kaleem
08-07-2007, 02:40 PM
I think by using this we can do this :)
https://vborg.vbsupport.ru/showthread.php?t=103076
Invalid ID
08-07-2007, 03:34 PM
Waah, bohat aala, bohat zuberdast. Bohat shukeria Bhai
Kaleem
08-07-2007, 04:05 PM
I reached until here any help will be appreciated.
http://www.friendskorner.com/forum//view.php?pg=urdu_keyboard_and_editor
simunaqv
08-07-2007, 05:01 PM
I reached until here any help will be appreciated.
http://www.friendskorner.com/forum//view.php?pg=urdu_keyboard_and_editor
I see two problems in that page:
1. The encoding is set to ISO-8859-1. That is why the text on the on-screen keyboard is not appearing properly. You can try changing the encoding to utf-8.
2. The css definitions needed for the on-screen keyboard are missing. Add these to the additional css definitions in the main css file of your style.
Kaleem
08-07-2007, 05:14 PM
I see two problems in that page:
1. The encoding is set to ISO-8859-1. That is why the text on the on-screen keyboard is not appearing properly. You can try changing the encoding to utf-8.
2. The css definitions needed for the on-screen keyboard are missing. Add these to the additional css definitions in the main css file of your style.
How i add this encoding it should e in the Header rite?
I added the CSS definitions and it the keyboard disappeared.
simunaqv
08-07-2007, 05:19 PM
How i add this encoding it should e in the Header rite?
I added the CSS definitions and it the keyboard disappeared.
You can find the encoding in the language settings. I have no clue about the disappearing of the on-screen keyboard.
Kaleem
08-07-2007, 05:27 PM
Ok i changed to utf-8.
I took out ur Additional CSS things and keyboard showed up but not clickable :s
simunaqv
08-07-2007, 06:20 PM
I have looked at the page source and it still does not contain the additional css definitions. May be you are adding these to some other style. Please make the size of the textarea a bit smaller otherwise the users will have to scroll to use the on-screen keyboard.
Kaleem
08-07-2007, 06:23 PM
I have looked at the page source and it still does not contain the additional css definitions. May be you are adding these to some other style. Please make the size of the textarea a bit smaller otherwise the users will have to scroll to use the on-screen keyboard.
Whenever i use the css definitions provided by you the keyboard disappears :s
Let me Add again and u will see it will.
Kaleem
08-07-2007, 07:36 PM
i figured it out its working finfe now
Thank You :)
http://www.friendskorner.com/forum//view.php?pg=urdu_keyboard_and_editor
myown
08-08-2007, 09:03 AM
Hi,
I am quite happy that this hack is released. Thanks Nabeel Bahi. Great work.
I cant find modifications for Registration, if some one need registeration in Urdu then upon registration, after these modifications, he will be only able to use english username. Any help will be great.
Thanks in advance,
Best Regards,
simunaqv
08-08-2007, 01:59 PM
Hi,
I am quite happy that this hack is released. Thanks Nabeel Bahi. Great work.
I cant find modifications for Registration, if some one need registeration in Urdu then upon registration, after these modifications, he will be only able to use english username. Any help will be great.
Thanks in advance,
Best Regards,
Have you applied the template modifications? These should also take into account the registration textbox. Anyway my suggestion would be to skip the modifications in navbar, STANDARD_ERROR, STANDARD_ERROR_LITE and the STANDARD_ERROR_LOGIN templates if your forum is not a true unicode forum. Otherwise users with Urdu usernames will not be able to login.
myown
08-08-2007, 02:11 PM
Hi Nabeel,
My forums are fully Urdu forums. I have implemented all the modifications and all are working well. Only registration is not taking Urdu input.
Right now i am converting my old forums (SMF) into VB.. but getting few errors. Hopeful will be finishing these errors tonight. (solved)
But found an - other problem, user passwords are not working :(
But regarding this reregistration i cant do any thing :(
Please can you look into this issue? any idea where things have gone wrong...
Best Regards,
Endurer
08-08-2007, 02:36 PM
Awesome :) My members will love it.
Invalid ID
08-08-2007, 03:29 PM
Kiya iska font change ho sakta hay? Koi behter font jesay Jang akhbaar ka font hay?
Shukeria
simunaqv
08-08-2007, 08:05 PM
I have included the instructions to modify the register template and the mod has been updated.
simunaqv
08-08-2007, 08:06 PM
Kiya iska font change ho sakta hay? Koi behter font jesay Jang akhbaar ka font hay?
Shukeria
Open clientscript/OpenPad.js and look for Urdu Naskh Asiatype and change it to whatever font you like.
myown
08-09-2007, 07:14 AM
Thanks Nabeel Bahi,
after this modifications now, every thing is working fine, will be uploading today and moving to VB.
Only problem is that all users have to reset their passwords :(
Hope every thing works fine.
simunaqv
08-09-2007, 07:46 AM
Thanks Nabeel Bahi,
after this modifications now, every thing is working fine, will be uploading today and moving to VB.
Only problem is that all users have to reset their passwords :(
Hope every thing works fine.
What does this have to do with passwords? The template modifications in this mod do not alter the password fields.
myown
08-09-2007, 07:59 AM
Sure, it is not the direct affect of these modifications, it is because of differnet hashing functions used in different forums for storing passwords.
SMF uses md5-hmac while vb uses md5 hashes... so passwords will not work at all after migrating from smf to vb.
Thanks again for great job.
Best Regards,
simunaqv
08-09-2007, 09:25 AM
Best of luck for your new forum. I am looking forward to see it.
myown
08-09-2007, 02:03 PM
thanks again, for all this support. I hope Saturday site will be up and running.
Found an-other issue.
Advance search don't have Urdu Support, may be need to look into this issue.
Thanks in advance,
Best Regards,
Invalid ID
08-15-2007, 04:59 AM
Open clientscript/OpenPad.js and look for Urdu Naskh Asiatype and change it to whatever font you like.
Good... and for that do I have to have that font on my forum directory?
simunaqv
08-15-2007, 09:22 AM
Good... and for that do I have to have that font on my forum directory?
No. The font must be installed on users' systems.
myown
08-16-2007, 11:51 AM
Thanks alot, i managed to get it working. It looks very nice. A great hack and well built.
Best Regards,
myown
08-16-2007, 11:52 AM
Best of luck for your new forum. I am looking forward to see it.
Thanks dear, for your look see it here: http://forums.com.pk/
simunaqv
08-17-2007, 10:34 AM
Thanks dear, for your look see it here: http://forums.com.pk/
Congratulations.
Basit
09-22-2007, 09:46 PM
Nabeel,
Looks like I am stuck, could you please have a look at www.urdupoet.net/forum and advise where I missed ? I want to test it on this forum before I install it on www.hallagulla.com.
your help is highly appreciated.
Kind Regards,
mystic10
11-03-2007, 06:00 PM
if someone does not know urdu will they understand what written if we click the english part
mystic10
11-03-2007, 06:56 PM
please help..i dont know what i did wrong...when i open a new thread title is in urdu but the rest is in english..please help..oh and those who write in urdu can non urdu people see the translation of what they wrote
Shaheen
12-25-2007, 12:54 PM
Nice work buddy :)
i will install SOon ;)
PAKIDIL
03-01-2008, 08:52 PM
hello i have installed this in my forum i m currently using 3.6.5 urdu editor works fine .the problme i m have is below the thread
https://vborg.vbsupport.ru/
AND also the size of the words is not increasing
CAN ANY one help me in this how to resolve it please other wise this hack is gr8 to install thanks for the hack too
simunaqv
03-05-2008, 02:06 PM
Megatr0n
04-28-2008, 10:21 PM
Will this work with 3.7?
Will this work with 3.7?
It's working on 3.7.0 very good ... :)
Megatr0n
05-01-2008, 06:46 PM
On both browsers? FireFox and IE?
<font color="Red">Sorry to say It's not working on 3.7.1</font>
simunaqv
06-26-2008, 04:08 PM
Sorry to say It's not working on 3.7.1
It is working perfectly on my forum (www.urduweb.org/mehfil (http://www.urduweb.org/mehfil)) which is running on 3.7.1. What problems are you having?
It is working perfectly on my forum (www.urduweb.org/mehfil (http://www.urduweb.org/mehfil)) which is running on 3.7.1. What problems are you having?
thanks for reply nabeel bhai ...
the Editor is not working in showthread_quickreply, newreply, newthread, pm_newpm
but only working inside textarea & input (version 3.7.1 & 3.7.2)
sample in snapshot
http://img174.imageshack.us/img174/5198/snap1lp9.gif
did you make any different changes in 3.7.1 ?
usmansabir
06-27-2008, 04:50 PM
hello i have installed this in my forum i m currently using 3.6.5 urdu editor works fine .the problme i m have is below the thread
http://img139.imageshack.us/img139/359/33210933yu1.jpg
AND also the size of the words is not increasing
CAN ANY one help me in this how to resolve it please other wise this hack is gr8 to install thanks for the hack too
I'm having the same problem .. and i'm newbie as well.. could you please tell me whre i'm wrong and could you please also tell me where exactly to go and change what .. your explanation so far has been really great. but this CSS thing is confusing for me ..
thankx in advance for your help.
Megatr0n
06-27-2008, 09:31 PM
It is working perfectly on my forum (www.urduweb.org/mehfil (http://www.urduweb.org/mehfil)) which is running on 3.7.1. What problems are you having?
I can also confirm it is working fine. I'm running 3.7.2.
usmansabir
06-28-2008, 01:48 PM
right found that CSS section .. added code.. keyboard keys working but keyboard fonts and when i click on them .. they aren't Urdu .. :S how do i change fonts ?
usmansabir
06-28-2008, 03:10 PM
Another Problem ...
Cant find English Typing Option .. while using Search in the navbar .. only takes Urdu input.
https://vborg.vbsupport.ru/external/2008/06/10.jpg
simunaqv
06-29-2008, 09:37 AM
thanks for reply nabeel bhai ...
the Editor is not working in showthread_quickreply, newreply, newthread, pm_newpm
but only working inside textarea & input (version 3.7.1 & 3.7.2)
sample in snapshot
http://img174.imageshack.us/img174/5198/snap1lp9.gif
did you make any different changes in 3.7.1 ?
The screenshot show that you are using editor in wysiwyg mode. The Urdu editor integration does not work in the wysiwyg mode. You need to switch to the text editor mode. If you want to switch the editor mode for all of your users, you will need to execute a database query for that.
simunaqv
06-29-2008, 09:43 AM
I'm having the same problem .. and i'm newbie as well.. could you please tell me whre i'm wrong and could you please also tell me where exactly to go and change what .. your explanation so far has been really great. but this CSS thing is confusing for me ..
thankx in advance for your help.
Another Problem ...
Cant find English Typing Option .. while using Search in the navbar .. only takes Urdu input.
http://www.lovepakistan.info/noeng.JPG
You can switch the language mode using the CTRl+SPACE keyboard shortcut.
As for the the other problem, you need to set the default encoding of your forum to utf-8. You will find this setting in the language settings.
The screenshot show that you are using editor in wysiwyg mode. The Urdu editor integration does not work in the wysiwyg mode. You need to switch to the text editor mode. If you want to switch the editor mode for all of your users, you will need to execute a database query for that.
please explain more about wysiwyg mode ?
how can i switch the editor mode ?
simunaqv
06-30-2008, 02:28 PM
You will find this setting in your profile options at the bottom of the page.
wWw.Fun2Wii.Com
06-30-2008, 09:39 PM
جميا جداا يغالي
مكشور
thanks
Megatr0n
07-02-2008, 04:21 PM
simunaqv, you get my last PM? My Urdu editor looks like a Roman one, LOL.
tanha
07-29-2008, 05:31 PM
plz dear no xml file plz attcah xml file for new vorsion .3.7.2 thanks
simunaqv
08-04-2008, 11:31 AM
plz dear no xml file plz attcah xml file for new vorsion .3.7.2 thanks
This mod consists of only template modifications, there is no XML file. This mod also works for 3.7.2.
ever-fresh
10-10-2008, 10:26 AM
will it work for 3.7.x ?
simunaqv
10-20-2008, 01:48 PM
will it work for 3.7.x ?
Sorry for the late reply. Yes it does. :)
Basit
12-02-2008, 09:10 PM
Asalam o Alaikum Nabeel,
Not sure if you are still providing support or not. I once again tried it on my forum but facing some strange behavior. When ever a user type Hay (Halway wali) whole message get messed up. For example view following page.
http://www.hallagulla.com/urdu/help-line-feedback-73/please-add-urdu-uni-code-font-pad-286039.html
Any idea how to fix this problem ?
Looking forward to hear from you soon.
Regards,
tanha
03-18-2009, 02:52 PM
plase aney Updates?????
tanha
03-19-2009, 06:15 AM
Aslam Alekum Dear ..
Can you tell me that its only work with 3.6.8 version ?
i have tried in 3.6.4 and 3.7.4 but editor is not working 100%, only working in Login combo box and subject combo box not working in message box,
please guide me what can I do know ?
Thanks
tanha
03-21-2009, 12:30 PM
Asalam o Alaikum Nabeel,
Not sure if you are still providing support or not. I once again tried it on my forum but facing some strange behavior. When ever a user type Hay (Halway wali) whole message get messed up. For example view following page.
http://www.hallagulla.com/urdu/help-line-feedback-73/please-add-urdu-uni-code-font-pad-286039.html
Any idea how to fix this problem ?
Looking forward to hear from you soon.
Regards,
I am also facing same problem.....
please help....
SpaceStar
03-31-2009, 07:35 PM
Assalamo allaikum
Any updates dor 3.8?
Lahoria
04-01-2009, 03:40 PM
Assalamo allaikum
Any updates dor 3.8?
yeah does it work one 3.8.2 ?
is it easy to install ?
tanha
04-02-2009, 11:42 AM
Asalam o Alaikum Nabeel,
Not sure if you are still providing support or not. I once again tried it on my forum but facing some strange behavior. When ever a user type Hay (Halway wali) whole message get messed up. For example view following page.
http://www.hallagulla.com/urdu/help-line-feedback-73/please-add-urdu-uni-code-font-pad-286039.html
Any idea how to fix this problem ?
Looking forward to hear from you soon.
Regards,
Still waiting for your response :o
Lahoria
04-02-2009, 11:55 AM
is it possible ti run and english and a urdu pad/ forum at the same time ... sorry I can see it is possible ( hallagulla )
but how with a v.3.8.2 board
fourat
04-04-2009, 04:19 AM
جزاك الله خير
nomoreturn
04-27-2009, 11:34 PM
installed but want to know is that working on vb 3.8.2
simunaqv
04-29-2009, 03:22 PM
Yes it does.
nomoreturn
05-13-2009, 07:04 AM
Hello installed on 3.8.2 but have some isuue its just working in title area not working in message area and also didn't see any keybord thing under the message area how to show keybord under the message area so i have to install some thing else for keyboard or i'm doing some thing wrong. i saw in previous posts you Suggest to execute database query how to do database query thing and can we do it just for one style because i just want to use thismod only in one style and one more
nomoreturn
05-15-2009, 11:46 AM
Hello installed on 3.8.2 but have some isuue its just working in title area not working in message area and also didn't see any keybord thing under the message area how to show keybord under the message area so i have to install some thing else for keyboard or i'm doing some thing wrong. i saw in previous posts you Suggest to execute database query how to do database query thing and can we do it just for one style because i just want to use thismod only in one style and one more
Any help ?
simunaqv
05-19-2009, 12:44 PM
You are using the wysiwyg editor. The Urdu editor works only in text editor mode. You need to change it in your preferences. For the on-screen keyboard you need to make the required template edits as described in the instructions.
nomoreturn
05-20-2009, 09:23 AM
Thanks i change preference and now its working thanks
SulemanSubhani
05-21-2009, 12:46 PM
salam
how any theme i convert to urdu .. please tell me in detail
SulemanSubhani
05-21-2009, 12:49 PM
and plesse also tell .
how make different style for jameel nastaleq or alvi nastaleq etc
is this possible also you upload some style ?
ITDarasgah
05-21-2009, 08:47 PM
Hi,
I want to urdu open pad or urdu uni pad like this please see the pictures
simunaqv
05-25-2009, 10:13 AM
salam
how any theme i convert to urdu .. please tell me in detail
and plesse also tell .
how make different style for jameel nastaleq or alvi nastaleq etc
is this possible also you upload some style ?
You just need to change the style sheet of your styles to include appropriate font names and point sizes. I may at some point upload customized styles for Urdu.
simunaqv
05-25-2009, 10:15 AM
Hi,
I want to urdu open pad or urdu uni pad like this please see the pictures
From the picture it looks like that somebody included a separate page in the forum for including the Urdu editor. And this is Urdu OpenPad, not to be confused with UrduPad which is not my product.
ITDarasgah
05-25-2009, 12:27 PM
Thanks i change preference and now its working thanks
Some one plz help me how can change the preference...I have same problem
its work in title but not working in editor....
ITDarasgah
05-25-2009, 05:44 PM
I am solve my problem by self but one more problem show to me....its working with Internet Explorer good but in Mozilla Firefox not working...so what can i do.
ITDarasgah
05-26-2009, 07:03 AM
Does anyone have any idea how I can solve this?
simunaqv
05-26-2009, 07:12 AM
This Urdu editor works ok both in internet explorer and in firefox. What problem are you having in firefox?
ITDarasgah
05-26-2009, 10:17 AM
<font size="3">Thank for reply.... I reinstall now problem solve..</font>
SulemanSubhani
05-29-2009, 09:36 AM
السلام علیکم
میرا فورم تقریبا سیٹ ہوگیا ہے پر بہت سی جگہ ایسی جہاں ابھی بھی اردو ایڈیٹر شو نہیں جیسا جب کوئی نیا موضوع پوسٹ کرنا چاہے تو نیچے ٹیگ کا آتے ہیں کہ شامل کریں پر وہاں ایڈیٹر کام نہیں کرتا اسی طرح اگر کہیں اور ایڈیٹر کام نہیں کرتا تو اس کو وہاں شامل کرنے کا کیا طریقہ کار ہوگا ۔
شکریہ
simunaqv
05-29-2009, 11:43 PM
Well, the instructions for this mod apply only to small number of edit areas in the forum. But you can use the same technique to integrate the Urdu editor into any of the edit areas.
tanha
05-30-2009, 07:07 AM
You are using the wysiwyg editor. The Urdu editor works only in text editor mode. You need to change it in your preferences. For the on-screen keyboard you need to make the required template edits as described in the instructions.
https://vborg.vbsupport.ru/external/2009/06/144.jpg
dear i have some problem in 3.8.2 version please give some more details
sdfaheem
06-04-2009, 06:12 PM
https://vborg.vbsupport.ru/attachment.php?attachmentid=99110&d=1242201463
dear i have some problem in 3.8.2 version please give some more details
I am also having the same problem as above, could anyone help me with this?
I have enabled the text editor but still i am not able to view the Urdu keyboard, but when i edit the same post the keyboard is getting displayed.
sdfaheem
06-05-2009, 09:21 AM
The urdu keypad is not getting displayed in Internet Explorer.
Also, i am having problem with the display too:
https://vborg.vbsupport.ru/
aliali
06-12-2009, 01:07 PM
The urdu keypad is not getting displayed in Internet Explorer.
Also, i am having problem with the display too:
http://img35.imageshack.us/img35/1196/urdu.jpg
kabhi to ayaga mara khowabon ka raja and jawab daga...........wait..............:D:D
simunaqv
06-20-2009, 09:07 PM
haha..
Well, sometimes it is better to read through the previous posts. I have already mentioned that this garbage is appearing because utf-8 encoding is not being used. If you are using internet explorer, you can right click on the page and then go to encoding->Unicode (utf-8). This will temporarily rectify the problem. You need to change the encoding in you language settings to utf-8 to permanently get rid of this problem.
aliali
07-01-2009, 07:08 AM
I am also having the same problem as above, could anyone help me with this?
I have enabled the text editor but still i am not able to view the Urdu keyboard, but when i edit the same post the keyboard is getting displayed.
http://images.upload2world.com/get-7-2009-upload2world_com_hju.JPG
http://images.upload2world.com/get-7-2009-upload2world_com_snkpxkg.JPG
http://images.upload2world.com/get-7-2009-upload2world_com_hjlf.JPG
http://images.upload2world.com/get-7-2009-upload2world_com_wsminr.JPG
http://images.upload2world.com/get-7-2009-upload2world_com_bqmkzvs.JPG
Pakblogger
12-13-2009, 06:00 AM
sorry to say but its not working with VB 3.8.4, only for title, subject, user name are showing urdu uni option and not showing in Message box anywhere (Quick Reply, Post Reply, New Thread, Edit thread etc)
tanha
03-25-2010, 08:19 AM
how this will work with magictool box, I have installed magictool box its not working in message area, I have changed only one template "Edit editor_toolbar_on"
below is coding which I have changed in Edit editor_toolbar_on template, please set below coding as I can able to use urdu editor with magictool box
$vBeditTemplate[clientscript]
<center>
<table cellpadding="0" cellspacing="0" width="100%" border="0">
<tr>
<td id="$editorid" class="vBulletin_editor" width="100%">
<div id="{$editorid}_controls" class="controlbar">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td><div class="imagebutton" id="{$editorid}_cmd_removeformat"><img src="$stylevar[imgdir_editor]/removeformat.gif" width="21" height="20" alt="$vbphrase[remove_text_formatting]" /></div></td>
<if condition="$show['font_bbcode'] OR $show['size_bbcode']">
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
</if>
<if condition="$show['font_bbcode']">
<td><div class="imagebutton" id="{$editorid}_popup_fontname" title="$vbphrase[fonts]">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="popup_feedback"><div id="{$editorid}_font_out" style="width:91px"> </div></td>
<td class="popup_pickbutton"><img src="$stylevar[imgdir_editor]/menupop.gif" width="11" height="16" alt="" /></td>
</tr>
</table>
</div></td>
</if>
<if condition="$show['size_bbcode']">
<td><div class="imagebutton" id="{$editorid}_popup_fontsize" title="$vbphrase[sizes]">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="popup_feedback"><div id="{$editorid}_size_out" style="width:25px"> </div></td>
<td class="popup_pickbutton"><img src="$stylevar[imgdir_editor]/menupop.gif" width="11" height="16" alt="" /></td>
</tr>
</table>
</div></td>
</if>
<if condition="$show['color_bbcode']">
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_popup_forecolor" title="$vbphrase[colors]">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td id="{$editorid}_color_out"><img src="$stylevar[imgdir_editor]/color.gif" width="21" height="16" alt="" /><br /><img src="$vboptions[cleargifurl]" id="{$editorid}_color_bar" alt="" style="background-color:black" width="21" height="4" /></td>
<td class="alt_pickbutton"><img src="$stylevar[imgdir_editor]/menupop.gif" width="11" height="16" alt="" /></td>
</tr>
</table>
</div></td>
</if>
<if condition="$show['wysiwygsmilies']">
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_popup_smilie" title="$vbphrase[smilies]">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_editor]/smilie.gif" alt="" width="21" height="20" /></td>
<td class="alt_pickbutton"><img src="$stylevar[imgdir_editor]/menupop.gif" width="11" height="16" alt="" /></td>
</tr>
</table>
</div></td>
</if>
<if condition="$show['attach']">
<td><div class="imagebutton" id="{$editorid}_popup_attach" title="$vbphrase[attachments]">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_editor]/attach.gif" alt="" width="21" height="20" /></td>
<td class="alt_pickbutton"><img src="$stylevar[imgdir_editor]/menupop.gif" width="11" height="16" alt="" /></td>
</tr>
</table>
</div></td>
</if>
<!--
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_cmd_cut"><img src="$stylevar[imgdir_editor]/cut.gif" width="21" height="20" alt="$vbphrase[cut]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_copy"><img src="$stylevar[imgdir_editor]/copy.gif" width="21" height="20" alt="$vbphrase[copy]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_paste"><img src="$stylevar[imgdir_editor]/paste.gif" width="21" height="20" alt="$vbphrase[paste]" /></div></td>
-->
<if condition="$show['basicbbcodeonly']">
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<if condition="$show['basic_bbcode']">
<td><div class="imagebutton" id="{$editorid}_cmd_bold"><img src="$stylevar[imgdir_editor]/bold.gif" width="21" height="20" alt="$vbphrase[bold]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_italic"><img src="$stylevar[imgdir_editor]/italic.gif" width="21" height="20" alt="$vbphrase[italic]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_underline"><img src="$stylevar[imgdir_editor]/underline.gif" width="21" height="20" alt="$vbphrase[underline]" /></div></td>
</if>
<if condition="$show['url_bbcode']">
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_cmd_createlink"><img src="$stylevar[imgdir_editor]/createlink.gif" width="21" height="20" alt="$vbphrase[insert_link]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_unlink"><img src="$stylevar[imgdir_editor]/unlink.gif" width="21" height="20" alt="$vbphrase[remove_link]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_email"><img src="$stylevar[imgdir_editor]/email.gif" width="21" height="20" alt="$vbphrase[insert_email_link]" /></div></td>
</if>
<if condition="$show['align_bbcode']">
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<if condition="$stylevar['textdirection'] == 'ltr'">
<td><div class="imagebutton" id="{$editorid}_cmd_justifyleft"><img src="$stylevar[imgdir_editor]/justifyleft.gif" width="21" height="20" alt="$vbphrase[align_left]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifycenter"><img src="$stylevar[imgdir_editor]/justifycenter.gif" width="21" height="20" alt="$vbphrase[align_center]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifyright"><img src="$stylevar[imgdir_editor]/justifyright.gif" width="21" height="20" alt="$vbphrase[align_right]" /></div></td>
<else />
<td><div class="imagebutton" id="{$editorid}_cmd_justifyright"><img src="$stylevar[imgdir_editor]/justifyright.gif" width="21" height="20" alt="$vbphrase[align_right]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifycenter"><img src="$stylevar[imgdir_editor]/justifycenter.gif" width="21" height="20" alt="$vbphrase[align_center]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifyleft"><img src="$stylevar[imgdir_editor]/justifyleft.gif" width="21" height="20" alt="$vbphrase[align_left]" /></div></td>
</if>
</if>
<if condition="$show['quote_bbcode']">
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_cmd_wrap0_quote"><img src="$stylevar[imgdir_editor]/quote.gif" width="21" height="20" alt="$vbphrase[wrap_quote_tags]" /></div></td>
</if>
</if>
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_cmd_undo"><img src="$stylevar[imgdir_editor]/undo.gif" width="21" height="20" alt="$vbphrase[undo]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_redo"><img src="$stylevar[imgdir_editor]/redo.gif" width="21" height="20" alt="$vbphrase[redo]" /></div></td>
<if condition="is_browser('ie') AND !is_browser('mac')">
<td><div class="imagebutton" id="{$editorid}_cmd_spelling"><img src="$stylevar[imgdir_editor]/spelling.gif" width="21" height="20" alt="$vbphrase[check_spelling]" /></div></td>
</if>
<td>
<div class="imagebutton" id="{$editorid}_cmd_resize_0_100"><img src="$stylevar[imgdir_editor]/resize_0.gif" width="21" height="9" alt="$vbphrase[decrease_size]" /></div>
<div class="imagebutton" id="{$editorid}_cmd_resize_1_100"><img src="$stylevar[imgdir_editor]/resize_1.gif" width="21" height="9" alt="$vbphrase[increase_size]" /></div>
</td>
<if condition="$show['wysiwyg_compatible']">
<td><div class="imagebutton" id="{$editorid}_cmd_switchmode"><img src="$stylevar[imgdir_editor]/switchmode.gif" width="21" height="20" alt="$vbphrase[switch_editor_mode]" /></div></td>
</if>
</tr>
</table>
<if condition="!$show['basicbbcodeonly']">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<if condition="$show['basic_bbcode']">
<td><div class="imagebutton" id="{$editorid}_cmd_bold"><img src="$stylevar[imgdir_editor]/bold.gif" width="21" height="20" alt="$vbphrase[bold]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_italic"><img src="$stylevar[imgdir_editor]/italic.gif" width="21" height="20" alt="$vbphrase[italic]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_underline"><img src="$stylevar[imgdir_editor]/underline.gif" width="21" height="20" alt="$vbphrase[underline]" /></div></td>
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
</if>
<if condition="$show['align_bbcode']">
<if condition="$stylevar['textdirection'] == 'ltr'">
<td><div class="imagebutton" id="{$editorid}_cmd_justifyleft"><img src="$stylevar[imgdir_editor]/justifyleft.gif" width="21" height="20" alt="$vbphrase[align_left]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifycenter"><img src="$stylevar[imgdir_editor]/justifycenter.gif" width="21" height="20" alt="$vbphrase[align_center]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifyright"><img src="$stylevar[imgdir_editor]/justifyright.gif" width="21" height="20" alt="$vbphrase[align_right]" /></div></td>
<else />
<td><div class="imagebutton" id="{$editorid}_cmd_justifyright"><img src="$stylevar[imgdir_editor]/justifyright.gif" width="21" height="20" alt="$vbphrase[align_right]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifycenter"><img src="$stylevar[imgdir_editor]/justifycenter.gif" width="21" height="20" alt="$vbphrase[align_center]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifyleft"><img src="$stylevar[imgdir_editor]/justifyleft.gif" width="21" height="20" alt="$vbphrase[align_left]" /></div></td>
</if>
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
</if>
<if condition="$show['list_bbcode']">
<td><div class="imagebutton" id="{$editorid}_cmd_insertorderedlist"><img src="$stylevar[imgdir_editor]/insertorderedlist.gif" width="21" height="20" alt="$vbphrase[ordered_list]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_insertunorderedlist"><img src="$stylevar[imgdir_editor]/insertunorderedlist.gif" width="21" height="20" alt="$vbphrase[unordered_list]" /></div></td>
</if>
<if condition="$show['align_bbcode'] OR $show['list_bbcode']">
<if condition="$stylevar['textdirection'] == 'ltr'">
<td><div class="imagebutton" id="{$editorid}_cmd_outdent"><img src="$stylevar[imgdir_editor]/outdent.gif" width="21" height="20" alt="$vbphrase[decrease_indent]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_indent"><img src="$stylevar[imgdir_editor]/indent.gif" width="21" height="20" alt="$vbphrase[increase_indent]" /></div></td>
<else />
<td><div class="imagebutton" id="{$editorid}_cmd_outdent"><img src="$stylevar[imgdir_editor]/indent.gif" width="21" height="20" alt="$vbphrase[decrease_indent]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_indent"><img src="$stylevar[imgdir_editor]/outdent.gif" width="21" height="20" alt="$vbphrase[increase_indent]" /></div></td>
</if>
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
</if>
<if condition="$show['url_bbcode']">
<td><div class="imagebutton" id="{$editorid}_cmd_createlink"><img src="$stylevar[imgdir_editor]/createlink.gif" width="21" height="20" alt="$vbphrase[insert_link]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_unlink"><img src="$stylevar[imgdir_editor]/unlink.gif" width="21" height="20" alt="$vbphrase[remove_link]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_email"><img src="$stylevar[imgdir_editor]/email.gif" width="21" height="20" alt="$vbphrase[insert_email_link]" /></div></td>
</if>
<if condition="$show['img_bbcode']">
<td><div class="imagebutton" id="{$editorid}_cmd_insertimage"><img src="$stylevar[imgdir_editor]/insertimage.gif" width="21" height="20" alt="$vbphrase[insert_image]" /></div></td>
</if>
<if condition="$show['quote_bbcode']">
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_cmd_wrap0_quote"><img src="$stylevar[imgdir_editor]/quote.gif" width="21" height="20" alt="$vbphrase[wrap_quote_tags]" /></div></td>
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
</if>
<if condition="$show['code_bbcode']">
<td><div class="imagebutton" id="{$editorid}_cmd_wrap0_code"><img src="$stylevar[imgdir_editor]/code.gif" width="21" height="20" alt="$vbphrase[wrap_code_tags]" /></div></td>
</if>
<if condition="$show['html_bbcode']">
<td><div class="imagebutton" id="{$editorid}_cmd_wrap0_html"><img src="$stylevar[imgdir_editor]/html.gif" width="21" height="20" alt="$vbphrase[wrap_html_tags]" /></div></td>
</if>
<if condition="$show['php_bbcode']">
<td><div class="imagebutton" id="{$editorid}_cmd_wrap0_php"><img src="$stylevar[imgdir_editor]/php.gif" width="21" height="20" alt="$vbphrase[wrap_php_tags]" /></div></td>
</if>
$vBeditTemplate[extrabuttons]
</tr>
</table>
</if>
</div>
</center>
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr valign="top">
<td class="controlbar">
<textarea name="message" id="{$editorid}_textarea" rows="10" cols="60" style="display:block; width:$stylevar[messagewidth]; height:{$editor_height}px" tabindex="1" dir="$stylevar[textdirection]">$newpost[message]</textarea>
</td>
<if condition="$smiliebox"><td class="controlbar">$smiliebox</td></if>
</tr>
</table>
</td>
</tr>
</table>
<input type="hidden" name="wysiwyg" id="{$editorid}_mode" value="$editortype" />
<script type="text/javascript">
<!--
vB_Editor['$editorid'] = new vB_Text_Editor('$editorid', $editortype, '$forumid', '$parsesmilie', undefined, '$ajax_extra');
//-->
</script>
tanha
03-29-2010, 05:20 AM
bump!
ARSamo
03-29-2010, 09:27 AM
how this will work with magictool box, I have installed magictool box its not working in message area, I have changed only one template "Edit editor_toolbar_on"
below is coding which I have changed in Edit editor_toolbar_on template, please set below coding as I can able to use urdu editor with magictool box
i am facing the same...........
plz help nabil bhai
SulemanSubhani
03-31-2010, 08:23 AM
وی 4 پہ کامیابی کے ساتھ اردو ایڈیٹر شامل کرنے کی
بہت بہت مبارک
اور انتظار ہے کہ آپ کب ریلیز کرینگے تاکہ اردو فورم وی 4 پہ ہوجائیں
ایک بار پھر آپ کو اور آپ کی ٹیم کو بہت بہت مبارک
ARSamo
04-03-2010, 04:00 PM
The screenshot show that you are using editor in wysiwyg mode. The Urdu editor integration does not work in the wysiwyg mode. You need to switch to the text editor mode. If you want to switch the editor mode for all of your users, you will need to execute a database query for that.
dear nabeel can you explain how to execute a database query ..........?
or have u tutriol link.... plz?
thnx in advance......
ARSamo
04-03-2010, 06:02 PM
thnx i have done it myself...
adminpanel-->>maintainance-->>execute SQL Query-->>select Show Standard Editor Toolbar (From Automatic Query)-->> press continue button
for further detail visit this link.....
http://www.vbulletin.com/docs/html/codestandards_sql_query
simunaqv
04-08-2010, 08:30 AM
how this will work with magictool box, I have installed magictool box its not working in message area, I have changed only one template "Edit editor_toolbar_on"
below is coding which I have changed in Edit editor_toolbar_on template, please set below coding as I can able to use urdu editor with magictool box
$vBeditTemplate[clientscript]
<center>
<table cellpadding="0" cellspacing="0" width="100%" border="0">
<tr>
<td id="$editorid" class="vBulletin_editor" width="100%">
<div id="{$editorid}_controls" class="controlbar">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td><div class="imagebutton" id="{$editorid}_cmd_removeformat"><img src="$stylevar[imgdir_editor]/removeformat.gif" width="21" height="20" alt="$vbphrase[remove_text_formatting]" /></div></td>
<if condition="$show['font_bbcode'] OR $show['size_bbcode']">
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
</if>
<if condition="$show['font_bbcode']">
<td><div class="imagebutton" id="{$editorid}_popup_fontname" title="$vbphrase[fonts]">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="popup_feedback"><div id="{$editorid}_font_out" style="width:91px"> </div></td>
<td class="popup_pickbutton"><img src="$stylevar[imgdir_editor]/menupop.gif" width="11" height="16" alt="" /></td>
</tr>
</table>
</div></td>
</if>
<if condition="$show['size_bbcode']">
<td><div class="imagebutton" id="{$editorid}_popup_fontsize" title="$vbphrase[sizes]">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="popup_feedback"><div id="{$editorid}_size_out" style="width:25px"> </div></td>
<td class="popup_pickbutton"><img src="$stylevar[imgdir_editor]/menupop.gif" width="11" height="16" alt="" /></td>
</tr>
</table>
</div></td>
</if>
<if condition="$show['color_bbcode']">
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_popup_forecolor" title="$vbphrase[colors]">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td id="{$editorid}_color_out"><img src="$stylevar[imgdir_editor]/color.gif" width="21" height="16" alt="" /><br /><img src="$vboptions[cleargifurl]" id="{$editorid}_color_bar" alt="" style="background-color:black" width="21" height="4" /></td>
<td class="alt_pickbutton"><img src="$stylevar[imgdir_editor]/menupop.gif" width="11" height="16" alt="" /></td>
</tr>
</table>
</div></td>
</if>
<if condition="$show['wysiwygsmilies']">
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_popup_smilie" title="$vbphrase[smilies]">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_editor]/smilie.gif" alt="" width="21" height="20" /></td>
<td class="alt_pickbutton"><img src="$stylevar[imgdir_editor]/menupop.gif" width="11" height="16" alt="" /></td>
</tr>
</table>
</div></td>
</if>
<if condition="$show['attach']">
<td><div class="imagebutton" id="{$editorid}_popup_attach" title="$vbphrase[attachments]">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_editor]/attach.gif" alt="" width="21" height="20" /></td>
<td class="alt_pickbutton"><img src="$stylevar[imgdir_editor]/menupop.gif" width="11" height="16" alt="" /></td>
</tr>
</table>
</div></td>
</if>
<!--
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_cmd_cut"><img src="$stylevar[imgdir_editor]/cut.gif" width="21" height="20" alt="$vbphrase[cut]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_copy"><img src="$stylevar[imgdir_editor]/copy.gif" width="21" height="20" alt="$vbphrase[copy]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_paste"><img src="$stylevar[imgdir_editor]/paste.gif" width="21" height="20" alt="$vbphrase[paste]" /></div></td>
-->
<if condition="$show['basicbbcodeonly']">
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<if condition="$show['basic_bbcode']">
<td><div class="imagebutton" id="{$editorid}_cmd_bold"><img src="$stylevar[imgdir_editor]/bold.gif" width="21" height="20" alt="$vbphrase[bold]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_italic"><img src="$stylevar[imgdir_editor]/italic.gif" width="21" height="20" alt="$vbphrase[italic]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_underline"><img src="$stylevar[imgdir_editor]/underline.gif" width="21" height="20" alt="$vbphrase[underline]" /></div></td>
</if>
<if condition="$show['url_bbcode']">
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_cmd_createlink"><img src="$stylevar[imgdir_editor]/createlink.gif" width="21" height="20" alt="$vbphrase[insert_link]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_unlink"><img src="$stylevar[imgdir_editor]/unlink.gif" width="21" height="20" alt="$vbphrase[remove_link]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_email"><img src="$stylevar[imgdir_editor]/email.gif" width="21" height="20" alt="$vbphrase[insert_email_link]" /></div></td>
</if>
<if condition="$show['align_bbcode']">
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<if condition="$stylevar['textdirection'] == 'ltr'">
<td><div class="imagebutton" id="{$editorid}_cmd_justifyleft"><img src="$stylevar[imgdir_editor]/justifyleft.gif" width="21" height="20" alt="$vbphrase[align_left]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifycenter"><img src="$stylevar[imgdir_editor]/justifycenter.gif" width="21" height="20" alt="$vbphrase[align_center]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifyright"><img src="$stylevar[imgdir_editor]/justifyright.gif" width="21" height="20" alt="$vbphrase[align_right]" /></div></td>
<else />
<td><div class="imagebutton" id="{$editorid}_cmd_justifyright"><img src="$stylevar[imgdir_editor]/justifyright.gif" width="21" height="20" alt="$vbphrase[align_right]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifycenter"><img src="$stylevar[imgdir_editor]/justifycenter.gif" width="21" height="20" alt="$vbphrase[align_center]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifyleft"><img src="$stylevar[imgdir_editor]/justifyleft.gif" width="21" height="20" alt="$vbphrase[align_left]" /></div></td>
</if>
</if>
<if condition="$show['quote_bbcode']">
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_cmd_wrap0_quote"><img src="$stylevar[imgdir_editor]/quote.gif" width="21" height="20" alt="$vbphrase[wrap_quote_tags]" /></div></td>
</if>
</if>
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_cmd_undo"><img src="$stylevar[imgdir_editor]/undo.gif" width="21" height="20" alt="$vbphrase[undo]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_redo"><img src="$stylevar[imgdir_editor]/redo.gif" width="21" height="20" alt="$vbphrase[redo]" /></div></td>
<if condition="is_browser('ie') AND !is_browser('mac')">
<td><div class="imagebutton" id="{$editorid}_cmd_spelling"><img src="$stylevar[imgdir_editor]/spelling.gif" width="21" height="20" alt="$vbphrase[check_spelling]" /></div></td>
</if>
<td>
<div class="imagebutton" id="{$editorid}_cmd_resize_0_100"><img src="$stylevar[imgdir_editor]/resize_0.gif" width="21" height="9" alt="$vbphrase[decrease_size]" /></div>
<div class="imagebutton" id="{$editorid}_cmd_resize_1_100"><img src="$stylevar[imgdir_editor]/resize_1.gif" width="21" height="9" alt="$vbphrase[increase_size]" /></div>
</td>
<if condition="$show['wysiwyg_compatible']">
<td><div class="imagebutton" id="{$editorid}_cmd_switchmode"><img src="$stylevar[imgdir_editor]/switchmode.gif" width="21" height="20" alt="$vbphrase[switch_editor_mode]" /></div></td>
</if>
</tr>
</table>
<if condition="!$show['basicbbcodeonly']">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<if condition="$show['basic_bbcode']">
<td><div class="imagebutton" id="{$editorid}_cmd_bold"><img src="$stylevar[imgdir_editor]/bold.gif" width="21" height="20" alt="$vbphrase[bold]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_italic"><img src="$stylevar[imgdir_editor]/italic.gif" width="21" height="20" alt="$vbphrase[italic]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_underline"><img src="$stylevar[imgdir_editor]/underline.gif" width="21" height="20" alt="$vbphrase[underline]" /></div></td>
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
</if>
<if condition="$show['align_bbcode']">
<if condition="$stylevar['textdirection'] == 'ltr'">
<td><div class="imagebutton" id="{$editorid}_cmd_justifyleft"><img src="$stylevar[imgdir_editor]/justifyleft.gif" width="21" height="20" alt="$vbphrase[align_left]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifycenter"><img src="$stylevar[imgdir_editor]/justifycenter.gif" width="21" height="20" alt="$vbphrase[align_center]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifyright"><img src="$stylevar[imgdir_editor]/justifyright.gif" width="21" height="20" alt="$vbphrase[align_right]" /></div></td>
<else />
<td><div class="imagebutton" id="{$editorid}_cmd_justifyright"><img src="$stylevar[imgdir_editor]/justifyright.gif" width="21" height="20" alt="$vbphrase[align_right]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifycenter"><img src="$stylevar[imgdir_editor]/justifycenter.gif" width="21" height="20" alt="$vbphrase[align_center]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_justifyleft"><img src="$stylevar[imgdir_editor]/justifyleft.gif" width="21" height="20" alt="$vbphrase[align_left]" /></div></td>
</if>
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
</if>
<if condition="$show['list_bbcode']">
<td><div class="imagebutton" id="{$editorid}_cmd_insertorderedlist"><img src="$stylevar[imgdir_editor]/insertorderedlist.gif" width="21" height="20" alt="$vbphrase[ordered_list]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_insertunorderedlist"><img src="$stylevar[imgdir_editor]/insertunorderedlist.gif" width="21" height="20" alt="$vbphrase[unordered_list]" /></div></td>
</if>
<if condition="$show['align_bbcode'] OR $show['list_bbcode']">
<if condition="$stylevar['textdirection'] == 'ltr'">
<td><div class="imagebutton" id="{$editorid}_cmd_outdent"><img src="$stylevar[imgdir_editor]/outdent.gif" width="21" height="20" alt="$vbphrase[decrease_indent]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_indent"><img src="$stylevar[imgdir_editor]/indent.gif" width="21" height="20" alt="$vbphrase[increase_indent]" /></div></td>
<else />
<td><div class="imagebutton" id="{$editorid}_cmd_outdent"><img src="$stylevar[imgdir_editor]/indent.gif" width="21" height="20" alt="$vbphrase[decrease_indent]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_indent"><img src="$stylevar[imgdir_editor]/outdent.gif" width="21" height="20" alt="$vbphrase[increase_indent]" /></div></td>
</if>
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
</if>
<if condition="$show['url_bbcode']">
<td><div class="imagebutton" id="{$editorid}_cmd_createlink"><img src="$stylevar[imgdir_editor]/createlink.gif" width="21" height="20" alt="$vbphrase[insert_link]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_unlink"><img src="$stylevar[imgdir_editor]/unlink.gif" width="21" height="20" alt="$vbphrase[remove_link]" /></div></td>
<td><div class="imagebutton" id="{$editorid}_cmd_email"><img src="$stylevar[imgdir_editor]/email.gif" width="21" height="20" alt="$vbphrase[insert_email_link]" /></div></td>
</if>
<if condition="$show['img_bbcode']">
<td><div class="imagebutton" id="{$editorid}_cmd_insertimage"><img src="$stylevar[imgdir_editor]/insertimage.gif" width="21" height="20" alt="$vbphrase[insert_image]" /></div></td>
</if>
<if condition="$show['quote_bbcode']">
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
<td><div class="imagebutton" id="{$editorid}_cmd_wrap0_quote"><img src="$stylevar[imgdir_editor]/quote.gif" width="21" height="20" alt="$vbphrase[wrap_quote_tags]" /></div></td>
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
</if>
<if condition="$show['code_bbcode']">
<td><div class="imagebutton" id="{$editorid}_cmd_wrap0_code"><img src="$stylevar[imgdir_editor]/code.gif" width="21" height="20" alt="$vbphrase[wrap_code_tags]" /></div></td>
</if>
<if condition="$show['html_bbcode']">
<td><div class="imagebutton" id="{$editorid}_cmd_wrap0_html"><img src="$stylevar[imgdir_editor]/html.gif" width="21" height="20" alt="$vbphrase[wrap_html_tags]" /></div></td>
</if>
<if condition="$show['php_bbcode']">
<td><div class="imagebutton" id="{$editorid}_cmd_wrap0_php"><img src="$stylevar[imgdir_editor]/php.gif" width="21" height="20" alt="$vbphrase[wrap_php_tags]" /></div></td>
</if>
$vBeditTemplate[extrabuttons]
</tr>
</table>
</if>
</div>
</center>
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr valign="top">
<td class="controlbar">
<textarea name="message" id="{$editorid}_textarea" rows="10" cols="60" style="display:block; width:$stylevar[messagewidth]; height:{$editor_height}px" tabindex="1" dir="$stylevar[textdirection]">$newpost[message]</textarea>
</td>
<if condition="$smiliebox"><td class="controlbar">$smiliebox</td></if>
</tr>
</table>
</td>
</tr>
</table>
<input type="hidden" name="wysiwyg" id="{$editorid}_mode" value="$editortype" />
<script type="text/javascript">
<!--
vB_Editor['$editorid'] = new vB_Text_Editor('$editorid', $editortype, '$forumid', '$parsesmilie', undefined, '$ajax_extra');
//-->
</script>
I do not use the magical toolbox, therefore I cannot say anything about it being compatible.
simunaqv
04-08-2010, 08:32 AM
thnx i have done it myself...
adminpanel-->>maintainance-->>execute SQL Query-->>select Show Standard Editor Toolbar (From Automatic Query)-->> press continue button
for further detail visit this link.....
http://www.vbulletin.com/docs/html/codestandards_sql_query
I apologize for replying late. You method is correct. Another way is to execute the following database query from phpmyadmin:
UPDATE user SET showvbcode = 1;
In the above query you need to substitue the name of the user table in the database.
creative-friend
01-26-2011, 12:52 PM
Brother i dont want to convert the whole forum into urdu......
i just want urdupad for my forum
so can you please explain what changed make to get only Urdupad......
alot of forum has urdupad in quick reply thats how i want aswell....
ARSamo
02-12-2011, 05:26 PM
how do i add this in quickedit/postbit plz......?
ARSamo
04-10-2011, 07:09 AM
وی 4 پہ کامیابی کے ساتھ اردو ایڈیٹر شامل کرنے کی
بہت بہت مبارک
اور انتظار ہے کہ آپ کب ریلیز کرینگے تاکہ اردو فورم وی 4 پہ ہوجائیں
ایک بار پھر آپ کو اور آپ کی ٹیم کو بہت بہت مبارک
any update .....??
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.