Results 1 to 10 of 18

Hybrid View

  1. #1
    Join Date
    May 2004
    Posts
    11
    Plugin Contributions
    0

    Default fckeditor install 1.3.7

    I jus installed fckeditor on a new install of 1.3.7 and am getting this error on my product page.

    Warning: Missing argument 1 for fckeditor() in /home/american/public_html/store/admin/includes/fckeditor.php on line 44

    Fatal error: Call to undefined method: fckeditor->createfckeditor() in /home/american/public_html/store/admin/includes/modules/product/collect_info.php on line 415

    Any ideas?

  2. #2
    Join Date
    Apr 2007
    Posts
    14
    Plugin Contributions
    0

    Default Re: fckeditor install 1.3.7

    i have the same issure
    i have add the third moule ,i find when add the products !when display the error below
    Warning: Missing argument 1 for fckeditor() in /home/kindman/public_html/client/031101/admin/includes/fckeditor.php on line 44

  3. #3
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: fckeditor install 1.3.7

    Quote Originally Posted by alsmith View Post
    Fatal error: Call to undefined method: fckeditor->createfckeditor() in /home/american/public_html/store/admin/includes/modules/product/collect_info.php on line 415
    v1.3.7 doesn't have any reference to fckeditor on line 415 of that file.
    This suggests that your collect_info.php file is out of date, either because it was missed during an upgrade or because it has been altered by uploading an incompatible contribution/mod to your site.
    .

    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.

  4. #4
    Join Date
    Feb 2007
    Location
    Los Angeles
    Posts
    359
    Plugin Contributions
    0

    Default Re: fckeditor install 1.3.7

    [FONT=Arial]Hi[/FONT]
    [FONT=Arial]First sorry , i made new Thread , i did not know the was another one open ( can i closed it?)[/FONT]
    [FONT=Arial][/FONT]
    [FONT=Arial]here is my problem.


    When I click on Meta Tag in my admin, this what I get [/FONT]

    [FONT=Arial]Fatal error[/FONT][FONT=Arial]: Cannot instantiate non-existent class: fckeditor in /home/tiledepo/public_html/store/admin/categories.php on line 851[/FONT]

    [FONT=Arial]And this is what on my line 851 starting at Line 850 [/FONT]
    [FONT=Arial][/FONT]
    [FONT=Arial]if ($_SESSION['html_editor_preference_status']=='FCKEDITOR') {[/FONT]
    [FONT=Arial](851) [/FONT][FONT=Arial]$oFCKeditor = new FCKeditor('metatags_description[' . $languages[$i]['id'] . ']') ;[/FONT]
    [FONT=Arial]$oFCKeditor->Value = zen_get_category_metatags_description($cInfo->categories_id, $languages[$i]['id']);[/FONT]
    [FONT=Arial]$oFCKeditor->Width = '97%' ;[/FONT]
    [FONT=Arial]$oFCKeditor->Height = '200' ;[/FONT]
    [FONT=Arial][/FONT]
    [FONT=Arial][/FONT]
    [FONT=Arial]Ty[/FONT]

  5. #5
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: fckeditor install 1.3.7

    Quote Originally Posted by motti View Post
    Fatal error: Cannot instantiate non-existent class: fckeditor
    This suggests that you've not successfully uploaded *all* the files for the FCKEditor mod that you installed.
    Perhaps your upload experienced a timeout or you skipped overwriting the files that needed to be updated.
    .

    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.

  6. #6
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: fckeditor install 1.3.7

    You must enable FCKEDITOR in admin/includes/init_includes/init_html_editor.php. Copy this file to admin/includes/init_includes/overrides/init_html_editor.php and replace this code:
    Code:
    /**
     * List of installed editors should be here:
     * CONSTANTS are used for language-specific display names, and are defined in languages/extra_definitions/editors_list.php
     */
      $editors_list['NONE']      = array('desc' => EDITOR_NONE,      'handler' => '',              'special_needs' => '');
      $editors_list['HTMLAREA']  = array('desc' => EDITOR_HTMLAREA,  'handler' => 'htmlarea.php',  'special_needs' => '');
    //  $editors_list['FCKEDITOR'] = array('desc' => EDITOR_FCKEDITOR, 'handler' => 'fckeditor.php', 'special_needs' => '');
    //  $editors_list['TINYMCE']   = array('desc' => EDITOR_TINYMCE,   'handler' => 'tinymce.php',   'special_needs' => '');
    by
    Code:
    /**
     * List of installed editors should be here:
     * CONSTANTS are used for language-specific display names, and are defined in languages/extra_definitions/editors_list.php
     */
      $editors_list['NONE']      = array('desc' => EDITOR_NONE,      'handler' => '',              'special_needs' => '');
      $editors_list['HTMLAREA']  = array('desc' => EDITOR_HTMLAREA,  'handler' => 'htmlarea.php',  'special_needs' => '');
      $editors_list['FCKEDITOR'] = array('desc' => EDITOR_FCKEDITOR, 'handler' => 'fckeditor.php', 'special_needs' => '');
    //  $editors_list['TINYMCE']   = array('desc' => EDITOR_TINYMCE,   'handler' => 'tinymce.php',   'special_needs' => '');

  7. #7
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: fckeditor install 1.3.7

    (or use the one supplied in the contribution zip)
    .

    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.

 

 

Similar Threads

  1. fckeditor rename folders install
    By joejoe in forum General Questions
    Replies: 5
    Last Post: 11 Nov 2013, 07:39 PM
  2. How do I install FCKEDITOR?
    By williamsalex in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 21 Apr 2010, 09:50 AM
  3. FCKEDITOR install
    By gprit in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 30 Aug 2009, 03:03 PM
  4. FCKeditor - install problem
    By paulspiller in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 14 Jun 2008, 07:16 AM
  5. FCKEditor - how do i install?
    By marcive in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 28 Aug 2007, 08:35 PM

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