1

Joomla (2.5) と Simple Image Gallery 拡張機能を使用して、Web サイト (この時点では localHost) に取り組んでいます。

私はJoomlaを初めて使用するので、テンプレートを変更する方法をいじっています。拡張機能を正しく実装する方法については、このチュートリアルhttp://www.youtube.com/watch?v=EqVgCfxW4msに従いました。彼らと同じ結果は得られません。残念ながら、次のエラー メッセージが表示されます。

Strict Standards: Only variables should be assigned by reference in C:\xampp\htdocs\joomla2\plugins\content\jw_simpleImageGallery\jw_simpleImageGallery.php on line 31

Strict Standards: Only variables should be assigned by reference in C:\xampp\htdocs\joomla2\plugins\content\jw_simpleImageGallery\jw_simpleImageGallery.php on line 32

Strict Standards: Non-static method SimpleImageGalleryHelper::getTemplatePath() should not be called statically, assuming $this from incompatible context in C:\xampp\htdocs\joomla2\plugins\content\jw_simpleImageGallery\jw_simpleImageGallery.php on line 109

Strict Standards: Only variables should be assigned by reference in C:\xampp\htdocs\joomla2\plugins\content\jw_simpleImageGallery\jw_simpleImageGallery\includes\helper.php on line 255

Strict Standards: Non-static method SimpleImageGalleryHelper::getTemplatePath() should not be called statically, assuming $this from incompatible context in C:\xampp\htdocs\joomla2\plugins\content\jw_simpleImageGallery\jw_simpleImageGallery.php on line 112

Strict Standards: Only variables should be assigned by reference in C:\xampp\htdocs\joomla2\plugins\content\jw_simpleImageGallery\jw_simpleImageGallery\includes\helper.php on line 255

Strict Standards: Non-static method SimpleImageGalleryHelper::getTemplatePath() should not be called statically, assuming $this from incompatible context in C:\xampp\htdocs\joomla2\plugins\content\jw_simpleImageGallery\jw_simpleImageGallery.php on line 115

Strict Standards: Only variables should be assigned by reference in C:\xampp\htdocs\joomla2\plugins\content\jw_simpleImageGallery\jw_simpleImageGallery\includes\helper.php on line 255

Strict Standards: Non-static method SimpleImageGalleryHelper::renderGallery() should not be called statically, assuming $this from incompatible context in C:\xampp\htdocs\joomla2\plugins\content\jw_simpleImageGallery\jw_simpleImageGallery.php on line 149

Fatal error: Allowed memory size of 10485760 bytes exhausted (tried to allocate 11264 bytes) in C:\xampp\htdocs\joomla2\plugins\content\jw_simpleImageGallery\jw_simpleImageGallery\includes\helper.php on line 105

これはページ上の唯一のテキストであり、テンプレートの他の部分も表示されません。問題について誰かに与えられたアドバイスに従って、エラー報告をオフにしましたが、驚くことではありませんが、何が問題なのかを伝える代わりに、単純な白いページが表示されました.

次の質問をした人は私と同じ問題を抱えているようでしたhttp://forum.joomlaworks.net/simple-image-gallery-(plugin)/(gallery)gallery-name(gallery)-question/しかし、私はキャッシュ フォルダーのアクセス許可があり、書き込み可能のようです。

この問題を解決する方法についてのアイデアがありません。誰かが同じ問題を抱えていましたか、または問題がどこにあるのかについてのアイデアを持っていますか? どんな助けでも大歓迎です。

4

1 に答える 1

0

私はStrict Standards:自分のサイトに一度ありました。幸運なことに、当時は WAMP 上にあったため、php.ini にアクセスでき、小さなコード スニペットを追加して、エラーが再び表示されないようにすることができました。

したがって、php.ini にアクセスできる場合は、それを開いて検索します。

error_reporting(E_ALL);

次のように置き換えます。

error_reporting(E_ALL | E_STRICT);
于 2012-09-30T12:08:35.873 に答える