vant 2007-05-23 12:51
Witam instaluję zgodnie z instrukcją ze strony: http://opensolution.org/Quick.Cart/docs/index.php?id=tips#jak_wgrac_edytor_fckeditor ale wyskakuje mi tali komunikat : Warning: main(FCKeditor/fckeditor.php) [function.main]: failed to open stream: No such file or directory in /home/medialibre/ftp/admin.php on line 22 Fatal error: main() [function.require]: Failed opening required 'FCKeditor/fckeditor.php' (include_path='.:/usr/local/lib/php') in /home/medialibre/ftp/admin.php on line 22 Mój plik admin.php wygląda tak: <?php /* * Quick.Cart by OpenSolution.org * www.opensolution.org */ extract( $_GET ); session_start( ); if( !isset( $p ) || $p == '' ) $p = ''; if( strstr( $p, 'Gallery' ) ){ $bGallery = true; $sBlockPage = '_GALLERY'; } require 'config/general.php'; require DB_CONFIG_LANG; require DIR_LANG.LANGUAGE.'.php'; header( 'Content-Type: text/html; charset='.$config['charset'] ); require_once ( 'FCKeditor/fckeditor.php' ); require_once DIR_LIBRARIES.'TplParser.php'; require_once DIR_LIBRARIES.'FileJobs.php'; require_once DIR_LIBRARIES.'FotoJobs.php'; require_once DIR_LIBRARIES.'FlatFiles.php'; require_once DIR_LIBRARIES.'Trash.php'; ob_start( 'changeCharset' ); if( isset( $sWord ) && !empty( $sWord ) ) $sWord = trim( htmlspecialchars( changeSpecialChars( stripslashes( $sWord ) ) ) ); /* * Add-ons functions */ if( filesize( DIR_PLUGINS.'plugins.php' ) > 30 ) require_once DIR_PLUGINS.'plugins.php'; require_once DIR_CORE.'other.php'; require_once DIR_CORE.'preferences.php'; require_once DIR_PLUGINS.'edit/htmleditor.php'; $tpl = new TplParser; $oFoto = new FotoJobs; $oFF = new FlatFiles; $tpl->setDir( TPL.'admin/' ); $oFoto->setRatio( $config['foto_jobs_ratio'] ); /* * Login */ loginActions( $p, 'bUserQC' ); $content = null; /* * Add-ons actions */ if( filesize( DIR_PLUGINS.'actions_admin.php' ) > 30 ) require_once DIR_PLUGINS.'actions_admin.php'; getAction( $p, 'actions_admin/' ); if( is_file( $sActionFile ) ) require $sActionFile; if( !isset( $sBlockPage ) ) $sBlockPage = null; echo $tpl->tbHtml( 'page.tpl', 'HEAD'.$sBlockPage ).$content.$tpl->tbHtml( 'page.tpl', 'FOOT'.$sBlockPage ); ob_end_flush( ); ?> proszę o pomoc
» Quick.Cart v2.x tomek 2007-05-23 13:47
vant - Spróbuj zmienic nazwę katalogu z edytorem z aktualnie domyślnej fckeditor na FCKeditor. ---------------------------------------- openzibi - http://www.rhh.pl
vant 2007-05-23 15:02
Dzięki teraz zadziałało
tomek