0

解決方法がわからない問題があります。完璧に動作しているように見える joomla サイトがあります ( http://secretinvizimals.com/ )。失敗するページは 1 つだけです。私の新しい記事の追加ページです。

ここに私の問題へのリンクがあります: http://secretinvizimals.com/index.php/contribute 最初に次の資格情報でログインする必要がある場合があります: ユーザー名: StackOverflow パスワード: StackOverflow 上部のメインページにログインできます: http: //secretinvizimals.com/

非常に短い: 問題は、ページにスタイルがないことです: ここに画像の説明を入力

どこから始めればよいか、または解決策を知っている人はいますか?

私の joomla サイトに関するよくある質問を次に示します。

  • Joomla バージョン 2.5.7
  • Artisteer 4.0 で開発されたカスタムテーマ

あなたが私を助けてくれることを願っています。

ブラジル

4

1 に答える 1

0

Firebug/Chrome 開発者ツールは、editor.css ファイルが見つからないと述べています。編集用のスタイルシートです。それを探しているリンクはここにあります: http://secretinvizimals.com/index.php/skins/kama/editor.css?t=C3HA5RM ファイルはありませんが、他のリンクから判断すると、これは古いテンプレートか何か?? ファイルが別の場所に存在する場合はファイルの場所を変更するか、ファイルを作成して標準のものを入れる必要があります。

Chrome 開発者ツールも 6 個のエラーを検出しています

<error> index.php:1
Failed to load resource: the server responded with a status of 404 (Not Found) http://secretinvizimals.com/config.js?t=C3HA5RM
Failed to load resource: the server responded with a status of 404 (Not Found) http://secretinvizimals.com/index.php/skins/kama/editor.css?t=C3HA5RM
Failed to load resource: the server responded with a status of 404 (Not Found) http://secretinvizimals.com/index.php/lang/en-gb.js?t=C3HA5RM
Failed to load resource: the server responded with a status of 404 (Not Found) http://secretinvizimals.com/plugins/linkBrowser/plugin.js?t=C3HA5RM
Failed to load resource: the server responded with a status of 404 (Not Found) http://secretinvizimals.com/plugins/mediaembed/plugin.js?t=C3HA5RM
Failed to load resource: the server responded with a status of 404 (Not Found) http://secretinvizimals.com/plugins/readmore/plugin.js?t=C3HA5RM
Failed to load resource: the server responded with a status of 404 (Not Found) http://secretinvizimals.com/index.php/plugins/tableresize/plugin.js?t=C3HA5RM
Failed to load resource: the server responded with a status of 404 (Not Found) http://secretinvizimals.com/index.php/plugins/autogrow/plugin.js?t=C3HA5RM
Uncaught [CKEDITOR.resourceManager.load] Resource name "linkBrowser" was not found at "http://secretinvizimals.com/index.php/../plugins/linkBrowser/plugin.js?t=C3HA5RM". index.php:1519
Uncaught RangeError: Maximum call stack size exceeded (x10)
Uncaught RangeError: Maximum call stack size exceeded index.php:1654 (x2)
Uncaught RangeError: Maximum call stack size exceeded (x6)
Uncaught RangeError: Maximum call stack size exceeded index.php:1654 (x2)
Uncaught RangeError: Maximum call stack size exceeded (x6)

最初の 1 つは、ページの上部に doctype、html 宣言、または何もないという事実に関係しています。これはもう少し混乱します。これはある種のテンプレートの問題であると想定する必要があります。しかし、明らかに、外部アクセスからそのようなものをテストするのははるかに困難です. Joomla デバッグ機能をオンにして、何が起こっているかを確認しましたか?

于 2012-10-05T08:29:26.190 に答える