Page 9 of 22 FirstFirst ... 789101119 ... LastLast
Results 81 to 90 of 214
  1. #81
    Join Date
    Feb 2010
    Posts
    237
    Plugin Contributions
    0

    Default Re: Support Thread for CKEditor Plugin

    Hi:

    I recently changed my template and when I did I downloaded the latest update of CK Editor.

    Much to my chagrin, the new editor is the standard version. In this forum Dr. Byte says that you can download the full version of the editor from the Ck Editor website and install it.

    I did this, and have the full editor running on my testsite. I was talking to my host who told me I should take it off because it can be hacked and is not PCI compliant.

    Is that right?

    Dave

  2. #82
    Join Date
    Apr 2010
    Posts
    897
    Plugin Contributions
    0

    Default Re: Support Thread for CKEditor Plugin

    Um, yikes! Please post if you find more info!!

    I will, too

  3. #83
    Join Date
    Dec 2015
    Location
    Alabama
    Posts
    51
    Plugin Contributions
    0

    Default Re: Support Thread for CKEditor Plugin

    I am new to Zen cart, have used oscommerce, man, I love zen cart more options and much easier to add on, or plug in.

    I am using version 1.5.4 and ckeditor 4.5.2. Now the problem, all works good except the panel is blank, no icons or anything. I can mouseover and see anchor, unanchor, link etc, but no pictures.

    Can anyone help a poor guy out.

  4. #84
    Join Date
    Sep 2009
    Posts
    37
    Plugin Contributions
    0

    Default Re: Support Thread for CKEditor Plugin

    Hello.

    I have one perhaps weird question regarding to the CKEditor, but why not :)

    I installed CKEditor (4.5.2 (revision 09b0cca)) on my fresh-new ZenCart installation (ZC v. 1.5.4), it shows up, but I'm missing some icons in the editor, most wanted is the "Font-Size" icon - it just does NOT show up on the editor.

    Here is the complete ckeditor-custom-button-bar image

    and here is what I see inside the ZC administration, within the Product/Category editing --> image.


    What can I do to fix it?

  5. #85
    Join Date
    Apr 2010
    Posts
    897
    Plugin Contributions
    0

    Default Re: Support Thread for CKEditor Plugin

    Hi tilenk,

    Maybe this will help:
    https://www.zen-cart.com/showthread....70#post1284070

    Good luck!

  6. #86
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: Support Thread for CKEditor Plugin

    Quote Originally Posted by tilenk View Post
    Hello.

    I have one perhaps weird question regarding to the CKEditor, but why not :)

    I installed CKEditor (4.5.2 (revision 09b0cca)) on my fresh-new ZenCart installation (ZC v. 1.5.4), it shows up, but I'm missing some icons in the editor, most wanted is the "Font-Size" icon - it just does NOT show up on the editor.

    Here is the complete ckeditor-custom-button-bar image

    and here is what I see inside the ZC administration, within the Product/Category editing --> image.


    What can I do to fix it?
    Latest (which includes CKEditor v4.5.6) has the Font-Size and Justify buttons added.
    https://www.zen-cart.com/downloads.php?do=file&id=1098
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  7. #87
    Join Date
    Jan 2016
    Location
    Jacksonville, FL USA
    Posts
    3
    Plugin Contributions
    0

    Default Re: Support Thread for CKEditor Plugin for Zen Cart

    Today, I downloaded and installed the latest version of the ckeditor plugin and v1.5.4 of the cart from this site. The ckeditor folder is in the editors directory and the ckeditor.php file is in the includes folder. The CKeditor was not showing in the dropdown select tool on the configuration page so I had to hack the admin/includes/init_includes/init_html_editor.php on line 48 to read:
    PHP Code:
    if (true$editors_list['CKEDITOR']  = array('desc' => EDITOR_CKEDITOR,  'handler' => 'ckeditor.php',  'special_needs' => ''); 
    from
    PHP Code:
    if (is_dir(DIR_FS_CATALOG DIR_WS_EDITORS 'ckeditor'$editors_list['CKEDITOR']  = array('desc' => EDITOR_CKEDITOR,  'handler' => 'ckeditor.php',  'special_needs' => ''); 
    Even though the ckeditor is selected, there are no toolbars on any text modification area.

  8. #88
    Join Date
    Jul 2012
    Posts
    16,798
    Plugin Contributions
    17

    Default Re: Support Thread for CKEditor Plugin for Zen Cart

    Quote Originally Posted by Jetta View Post
    Today, I downloaded and installed the latest version of the ckeditor plugin and v1.5.4 of the cart from this site. The ckeditor folder is in the editors directory and the ckeditor.php file is in the includes folder. The CKeditor was not showing in the dropdown select tool on the configuration page so I had to hack the admin/includes/init_includes/init_html_editor.php on line 48 to read:
    PHP Code:
    if (true$editors_list['CKEDITOR']  = array('desc' => EDITOR_CKEDITOR,  'handler' => 'ckeditor.php',  'special_needs' => ''); 
    from
    PHP Code:
    if (is_dir(DIR_FS_CATALOG DIR_WS_EDITORS 'ckeditor'$editors_list['CKEDITOR']  = array('desc' => EDITOR_CKEDITOR,  'handler' => 'ckeditor.php',  'special_needs' => ''); 
    Even though the ckeditor is selected, there are no toolbars on any text modification area.
    In your admin/includes/configure.php, what are the values of: DIR_FS_CATALOG and DIR_WS_EDITORS? How do they compare to the same in includes/configure.php?
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  9. #89
    Join Date
    Jan 2016
    Location
    Jacksonville, FL USA
    Posts
    3
    Plugin Contributions
    0

    Default Re: Support Thread for CKEditor Plugin for Zen Cart

    PHP Code:
    define('DIR_FS_CATALOG''/home1/xxxxx/public_html/xxxxx/store2/'); 
    There is no DIR_WS_EDITORS setting in the config file.

  10. #90
    Join Date
    Jan 2016
    Location
    Jacksonville, FL USA
    Posts
    3
    Plugin Contributions
    0

    Default Re: Support Thread for CKEditor Plugin for Zen Cart

    I added the following code to my admin configure file:
    PHP Code:
    define('DIR_WS_EDITORS'DIR_WS_INCLUDES.'admin/editors/'); 
    and reset the code on line 48 but still no option to select CKEditor in the dropdown

 

 
Page 9 of 22 FirstFirst ... 789101119 ... LastLast

Similar Threads

  1. v150 Support Thread for Google reCAPTCHA plugin
    By David Allen in forum All Other Contributions/Addons
    Replies: 672
    Last Post: 25 Feb 2025, 12:17 PM
  2. Back to Top Plugin [Support Thread]
    By picaflor-azul in forum All Other Contributions/Addons
    Replies: 31
    Last Post: 6 Feb 2016, 10:52 PM
  3. v151 Plug 'n' Pay plugin [Support Thread]
    By KetchRescue in forum Addon Payment Modules
    Replies: 5
    Last Post: 28 Nov 2015, 04:56 AM
  4. Justuno Plugin [Support Thread]
    By JustunoApp in forum All Other Contributions/Addons
    Replies: 8
    Last Post: 24 May 2015, 11:00 PM
  5. VendingBox Plugin Support Thread
    By vb_support in forum All Other Contributions/Addons
    Replies: 31
    Last Post: 10 Feb 2013, 07:24 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR