How to add TinyMCE on OSCommerce
Written by pnyet   
Tulisan ini menjelaskan how to dari penambahan tinyMCE editor kedalam administrasi produk, sehingga tampilan deskripsi produk sesuai dengan apa yang kita inginkan. Untuk publishing how to ini masih dalam format bahasa inggris, mungkin beberapa hari lagi akan saya posting translate dari how to nya. Artikel ini saya dapatkan dari sini dan penulisanya ada akhir artikel. TinyMCE Wysiwyg Editor for osCommerce 2.2m2
Installation instructions compiled
By xXDesertRoseXx
 
************************************************
WHAT THIS CONTRIBTUION DOES
=======================
This contribution is an extremly easy mod that turns any TEXTAREA into a full flegged WYSIWYG HTML EDITOR.
Best of all, its compatible with FireFox
 
Developed by http://www.moxiecode.com
******************************************************************************************
 
INSTALLATION INSTRUCTIONS
 
1.)  Unzip the tinymce2.0.8 and the plugins to a folder on your pc where you will find it again.
 
===============================================
 
2.)  Create a folder called ' tinymce ' in the catalog/admin directory
 
so it should look like this
 
a.) http://www.yoursite.com/catalog/admin/tinymce
     http://www.yoursite.com/store/admin/tinymce
or
 
b.) http://www.yoursite.com/admin/tinymce
   
or it could even look like this 
 
c.) http://www.yoursite.com/xxxx/catalog/admin/tinymce
 
=================================================
3.)  Go back to the where you unzipped the packages you just downloaded
 
and FIRST look inside the folder you downloaded at STEP 2
 
You should see the path look something like this
 
C:\path\to\your\folder\tinymce_2_0_8\tinymce
 
Inside the tinymce folder should be a directory called 'jscripts' and inside that, you will see another folder called tiny_mce and inside that the following:
 
3x Folders
 
1.  langs
2.  utils
3.  themes
 
+ you will see 4 files
 
1.  blank.htm
2.  tiny_mce.js
3.  tiny_mce.src.js
4.  tiny_mce_popup.js
 
The plugin folder must be copied into that directory so that you have all of the above 3 folders and the 4 files + the plugin folder
 
PLEASE NOTE THAT IN ORDER TO VIEW THE FULL EXAMPLES FEATURED IN THE tinymce_documentation download you need to copy that folder to the jscripts folder aswell
 
***********************************************************************
4.)
 
Now you have to upload the  jscripts folder containing the 4 abovementioned folders and 4 files to the tinymce folder which you created in catalog/admin.
 
dont get confused with the two folders called tinymce and tiny_mce
 
your paths should look like this 
 
 
http://www.yoursite.com/catalog/admin/tinymce/jscripts/tiny_mce
 
***********************************************************************
5.)
 
Now you are going to add the code to your pages.
 
The same piece of javasctript is used on all the pages that you want to use the editor on.
In my case I only added it to admin/categories.php page as I was having problems with the admin/mail.php and decided against it.  I may try the admin/newsletter.php section - but right now its only the adding of new products where I want to have this feature.
 
The following must be added between the <head></head> section of the page. So if you want to enable the editor on the 'add new products' page in admin
 
OPEN
 
catalog/admin/categories.php and between the <head></head> section copy and paste the following code.
 
 
 
<script language="javascript" type="text/javascript" src="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_ADMIN; ?>tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript">
tinyMCE.init({
    mode : "textareas",
    theme : "advanced",
    plugins : "table,save,autosave,autosave,cleanup,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,zoom,flash,searchreplace,print,contextmenu,directionality,inlinepopups,media,nonbreaking,visualchars,devkit,paste,noneditable,layer,fullpage,fullscreen,",
    theme_advanced_buttons1_add_before : "save,separator,",
    theme_advanced_buttons1_add : "fontselect,fontsizeselect",
    theme_advanced_buttons2_add : "separator,insertdate,inserttime,preview,zoom,separator,forecolor,backcolor",
    theme_advanced_buttons2_add_before: "cut,copy,paste,separator,search,replace,separator",
    theme_advanced_buttons3_add_before : "tablecontrols,separator",
    theme_advanced_buttons3_add : "emotions,iespell,flash,advhr,separator,print,ltr,rtl",
    theme_advanced_buttons4_add_before : "visualchars,nonbreaking,devkit,separator,layer,fullpage,fullscreen",
    table_styles : "Header 1=header1;Header 2=header2;Header 3=header3",
    table_cell_styles : "Header 1=header1;Header 2=header2;Header 3=header3;Table Cell=tableCel1",
    table_row_styles : "Header 1=header1;Header 2=header2;Header 3=header3;Table Row=tableRow1",
    table_cell_limit : 100,
    table_row_limit : 5,
    table_col_limit : 5,
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",
    theme_advanced_path_location : "bottom",
    plugin_insertdate_dateFormat : "%Y-%m-%d",
    plugin_insertdate_timeFormat : "%H:%M:%S",
    extended_valid_elements : "a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]",
    external_link_list_url : "example_data/example_link_list.js",
    external_image_list_url : "example_data/example_image_list.js",
    flash_external_list_url : "example_data/example_flash_list.js"
});
</script>
 
****************************************************************************************************************************************************************
 
IMPORTANT NOTES - PLEASE READ THIS AS IT WILL HELP YOU UNDERSTAND THE WORKING OF THE TINYMCE EDITOR
 
 
1.)  Notice the first first line of code - this is very important as it stipulates the path to the tiny_mce.js script file which is necessary for the script to work
 
<script language="javascript" type="text/javascript" src="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_ADMIN; ?>tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
 
IF YOU HAVE CHANGED THE DIRECTORY STUCTURE MAKE SURE THAT YOU CHANGE THE PATH TO THE FOLDER IN THE LINE ABOVE.
 
src="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_ADMIN; ?>  ====== INDICATES THE PATH TO THE ADMIN DIRECTORY
 
 
tinymce/jscripts/tiny_mce/tiny_mce.js"> ===== IS THE PATH TO THE tiny_mce.js file
 
 
**************************************************************************************************************************************************
 
Now lets try to understand a bit more of the script itself as it controls how the editor will behave.
 
tinyMCE.init({      ======= this initialised the the editor
 
mode : "textareas",   ===== this tells the editor which areas to target  - in our case its the text areas - so where ever there is a textarea there will be a editor - in my case I also have the       
                                            Header Tags Controller mod installed and because the those are text areas there are editors at those fields too.
 
theme : "advanced",   ======= this controls which editor is going to be used - Pse see the documentaton for examples of the 4 available themes - you can get a simple, advanced, full and                                                           word versions  If you only want  the simple version of the editor you need to change the theme to simple.
 
plugins : "table,save,autosave,autosave,cleanup,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,zoom,flash,searchreplace,print,contextmenu,directionality,inlinepopups,media,nonbreaking,visualchars,devkit,paste,noneditable,layer,fullpage,fullscreen,xhtmlextras,",
 
the above line controls which plugins are to be used.  here you can take out what you dont need and jsut keep what you want to have.
 
              theme_advanced_buttons1_add_before : "save,separator,",
    theme_advanced_buttons1_add : "fontselect,fontsizeselect",
    theme_advanced_buttons2_add : "separator,insertdate,inserttime,preview,zoom,separator,forecolor,backcolor",
    theme_advanced_buttons2_add_before: "cut,copy,paste,separator,search,replace,separator",
    theme_advanced_buttons3_add_before : "tablecontrols,separator",
    theme_advanced_buttons3_add : "emotions,iespell,flash,advhr,separator,print,ltr,rtl",
    theme_advanced_buttons4_add_before : "visualchars,nonbreaking,devkit,separator,layer,fullpage,fullscreen",
 
the above controls how the buttons on the editor are displayed - so here you can siwith things around to suit you.
 
 
 
table_styles : "Header 1=header1;Header 2=header2;Header 3=header3",
    table_cell_styles : "Header 1=header1;Header 2=header2;Header 3=header3;Table Cell=tableCel1",
    table_row_styles : "Header 1=header1;Header 2=header2;Header 3=header3;Table Row=tableRow1",
    table_cell_limit : 100,
    table_row_limit : 5,
    table_col_limit : 5,
 
 
this controls the table styles NOTE THAT THE table_cell_limit and table_row_limit and table_col_limit can be edited to suit you.
 
 
 
               theme_advanced_toolbar_location : "top",  ============= this controls where the buttons are placed and the alignment of the buttons
    theme_advanced_toolbar_align : "left",
 
 
              plugin_insertdate_dateFormat : "%Y-%m-%d",   ======== plugins which insert date and time
    plugin_insertdate_timeFormat : "%H:%M:%S",
 
 
extended_valid_elements : "a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]",
 
 
above is supported html elements
 
 
              external_link_list_url : "example_data/example_link_list.js",          =============== not yet 100% sure about this still trying to find out
    external_image_list_url : "example_data/example_image_list.js",
    flash_external_list_url : "example_data/example_flash_list.js"
 
 
**********************************************************************************************************************************************
 
NOW BY FOLLOWING THE INSTRUCTIONS ABOVE YOU WILL GET THE TINYMCE TO WORK ON YOUR SITE
 
HOWEVER 
 
I AM HAVING A SMALL PROBLEM
 
MY SITE IS WORKING FINE WITH NO ERRORS BUT AFTER HAVING ADDED A PRODUCT USING THE EDITOR AND THEN VIEWING THE PRODUCT FROM THE CATALOG SIDE (FRONT END)
 
I SEE THAT I HAVE 2 STRAY   "/>  TAGS AT THE TOP LEFT OF MY PAGE ON THE PRODUCT THAT I HAVE ADDED AND AM VIEWING - NOW I AM STILL TRYING TO SORT THIS OUT.
 
SHOULD ANYONE FIND THE PROBLEM BEFORE I DO PLEASE BE SO KIND AND POST THE SOLUTION TO THIS IN THE FORUMS OR AT THE CONTRIBUTION SECTION.
 
*************************************************************************************************************************************************************
 
Best wishes
 
Rose
+/-
Write comment
Name:
Email:
 
Website:
Title:
UBBCode:
[b] [i] [u] [url] [quote] [code] [img] 
 
 
:):grin;)8):p:roll:eek:upset:zzz:sigh:?:cry
:(:x
 
Please input the anti-spam code that you can read in the image.
+/- Comments
Add New Search RSS
dsfa   |222.174.116.xxx |28-04-2010 07:40:17
Christian Louboutin Shoes can be a good gift for you to send to your wife or girlfriend when
her birthday comes.It is also a good idea to select a suit of Herve Leger Dress to go with the shoes.The Spring is a good season for you to wear our
MBT Shoes to relax your feet after an exhausting day of work.Many people say,the
American pilots like wearing Ugg Boots in winter as to keep their feet warm.Meanwhile,it is also the time for
rock climbing with Vibram Five Fingers around your feet..Wearing Links of London or Tiffany Jewelry will reflect you great femininity and noblity.And the Wholesale DVD will be a good choice for you to see some classic films at
home.
Christian Lo...
ZERO   |125.70.57.xxx |20-05-2010 08:54:52
Economic downturns may not be good for wow gold your bottom line but they might be a boon to wow powerleveling your health, according to a study on health trends during the 20 years
around the Great Depression.Researchers from the University
of Michigan found U.S. life expectancy increased by 6 wow gold years between 1929 and 1932, from 57 to 63, with the increase occurring
for both men and women and for whites and non-whites.The number of
deaths from disease, accidents wow cd key and infant mortality during the Great Depression also fell."The cheap wow gold finding is strong and counterintuitive," said researcher Jose Tapia
Granados from the university...
ZERO   |125.70.57.xxx |20-05-2010 08:59:18
yes, that was little Tuk: in reality his wow leveling name was not Tuk, but that waswhat he world of warcraft leveling called himself before he dfo gold could speak plain: he meant dfo powerleveling it for Charles,and it is all well enough if daoc gold one does but know it. He had now to camelot gold take care ofhis little sister Augusta, who was darkfall gold much younger than himself, and he darkfall power leveling was,besides, to learn his lesson cheap ffxi gil at the gil same time; but these two ffxi cheap gil things would notdo together at all. There sat ffxi power leveling the poor little fellow, with his runescape gold sister on hislap, and he sang to her all the songs runescape money he knew; and he glanced the w...
coachoutletfactorycoachoutletf  - http://www.coachoutletfactory.com     |58.22.137.xxx |21-05-2010 10:25:40
coach outlet factory
coach factory outlet
coach outlet

COACH HANDBAGS
COACH WALLETS
COACH ACCESSORIES
COACH BOOTS
COACH SHOES
Coach-Handbags
COACH JEWELRY
COACH APPAREL
COACH MEN
zjcjy   |125.70.58.xxx |21-05-2010 15:14:19
BPOakley SunglassessaysOakley Sunglasses SaleitOakley Sport Sunglasseshopesmens oakley sunglassestooakley whiskerimplementoakley juliet sunglassesasports sunglassesplansunglassestooakleyshutRay Ban sunglassestheaviator sunglasseswell ray ban wayfarerwithinRay BantheRay Ban Aviatornextray ban wayfarer sunglassesweekChanel SunglassesA definitiveChanel Sunglasses On Salesolutionreplica chanel sunglassesdiscount chanel sunglasseschanel sunglasses onlinediscount chanel sunglasseswomens sunglasseswhichdesigner sun glassessunglasses salewomens designer sunglassesinvolvestiffany jewellerydrillingtiffany jewelrytiffanyCheap Tiffany Jewelrytiffany and coUK tiffanya reliefTiffany NecklaceTiffany BraceletTiffany EarringsTiffany ringswell to interceptGH...
zjcjy   |125.70.58.xxx |21-05-2010 15:25:06
In Houstonray ban aviator sunglassescheap ray ban sunglassesray ban sunglassesWayfarer Ray Ban SunglassesBuy Ray Banraybanthe hub of BP'story burch shoescrisis responsmanolo blahnik shoesjimmy choo sandalsjimmy choo shoesChristian Louboutin Shoeschristian louboutin pumpsthe company's campaignysl shoeszanotti shoesgucci shoesferragamo shoeschanel shoeshas become an industrywideEd HardyEd Hardy clothinged hardy onlineed hardy t shirteffort. DrillingEd Hardy CapsEd Hardy ShoeEd Hardy MensEd Hardy Womensed hardy swimwearand well-control expertsladies handbagsbrand bagshandbags discountcheap designer handbagsdesigner handbagsfrom rivals likediscount designer handbagscoach handbagschanel handbagsLouis Vuitton bagsExxon Mobil Corpghdghd iv stylerGHD Hair Straightene...
zjcjy   |125.70.58.xxx |21-05-2010 15:25:16
and wave heightsGucci SunglassesGucci Sunglasses SaleReplica Gucci Sunglassesgucci aviator sunglassesgucci sun glassesflash on anothersunglasses shopvogue sunglassesauthentic designer sunglassesscreen atdesigner sunglasseschanel bagchristian louboutin pumpsghd purplethe sidePandora braceletChanel BraceletPandora Beadsed hardy skirtsNext door is Simopsblowervacuum pumpsIndustrial fanIndustrial blowerpressure blowerfan bloweror simultaneousair blowerHigh pressure bloweroperationsCommercial blowerleaf blowerHigh Pressure Ventilatorwhich choreographsghdghd straightenersghd hair straightenersghd curlsghd hair ironthe complex danceCheap GHD straightenersGHD Hair Productsstraighteners hairghd purpleof drill shipspink ghd straightenerspink ghddr...
Anonymous   |221.6.130.xxx |19-06-2010 08:42:49
principles mytheon gold and we hope everyone to discuss the discussion buy mytheon gold, I think many players have own ideas cheap mytheon gold to playing the game and win the fighting mytheon online gold , I only hope get some points from you.
azuga money  - azuga money   |221.6.130.xxx |24-06-2010 12:21:18
Do you know azuga gold ?if you play the online game,you will know buy azuga gold is the game gold. In the game, if you had more cheap azuga gold , you will had a tall level. But if you want azuga online gold , you can come here and spend a little money to bought azuga money
wedding dress     |110.84.180.xxx |26-06-2010 15:33:46
298274818336917502974 It took one and half an hour to vest the bride in her
wedding dress rhineweddingstoresSlowly I took off my wedding dress and veil 2010 wedding dressThe bride made her wedding gown herself wedding dressesYour wedding dress makes you look ***y wedding dress factoryThe bride usually wears a beautiful
Anonymous   |124.135.237.xxx |17-07-2010 07:29:08
Christian Louboutin Shoes are the most attractive in this season's shoes, if you wear these shoes,
plus Pandora Jewelryyou will become more attractive. But if you have Zumba Fitness DVD, P90X, or three Insanity Workout DVDLarge fitness video teaching materials, you will become this season's most
dazzling ***y goddess.
Christian Louboutin Knockoffs,Christian Louboutin Wedding Shoes,
Christian Louboutin Boots,Christian Louboutin Sandals,Christian Louboutin Wedges,Christian Louboutin Platform,P90X DVD,DVD Sales,Vibram Five Fingers,Herve Leger,Cheap Christian Louboutin,Alexander Wang Dress,Alexander Wang Shoes,Alexander Mcqueen Shoes,Giuseppe Zanotti Shoes,ED Hardy Shoes,Jimmy Choo Shoes,Chanel Shoes,YSL Shoes,Manolo Bl...
ads  - ads   |125.69.136.xxx |19-07-2010 13:31:16
i believe you are a good writer, but have you erver thought to write some
special artcals for peopel who likes shopping very much. for
exaple, the artical aboutreplica louis vuitton bags orvibram,ghd flat iron orchristian shoes,cheap ugg bootsand
replica watches swiss made as well asjordan shoes salechi flat iron,discount nfl team apparel,
t shirts. i think more and more people would comr to read your blogs.


air jordan 12
air jordan xii
air jordan retro 12
air jordan retro xii
air jordan 11
air jordan xi
air jordan retro 11
air jordan retro xi
air jordan 3
air jordan iii
air jordan retro 3
air jordan retro iii
air jordan 12
air jordan xii
air jordan retro 12
air jordan retro xii
air jordan 13
air jordan xiii
babydoll     |120.36.36.xxx |20-07-2010 13:21:04
Now lots of people buy adult *** product to improve *** life high stocking,we supply all kinds of adult *** product Long Lady Stocking,because we are manufacture and have our factory women stocking,our product are all safe and wholesale wife babydoll,welcome to visit our store pijamas,all kinds of adult *** product for female and male open bust babydoll, you will buy your love *** product from our store Strap on dildos,adult *** product will greatly improve the quality of your *** life stocking online,*** life is very important baby doll nighties,*** life is harmonious babydoll costumes,the life is happies Wholesale Long Stocking,you can introduce your family and friend to visit our store Finger vibrators,best wi...

3.26 Copyright (C) 2008 Compojoom.com / Copyright (C) 2007 Alain Georgette / Copyright (C) 2006 Frantisek Hliva. All rights reserved."