0

CI 1.7.2 に同梱されている a3m をダウンロードしましたが、実行に必要なすべてのファイルを削除して、既存のインストールに配置しました。私のサイトの a3m コントローラーに移動した後、次のメッセージを受け取りました: メッセージ: 未定義のプロパティ: CI::$session

したがって、htaccessがa3mフォルダーでa3mファイルを探しているためだと思います。a3m htaccessは次のとおりです。

RewriteEngine on 
RewriteRule ^$ /a3m/index.php [L] 
RewriteCond $1 !^(index\.php|css|img|js|scripts|system|uploads|robots\.txt|favicon\.ico) 
RewriteRule ^(.*)$ /a3m/index.php/$1 [L] 

そして、mod 書き換え用の既存の htaccess は次のとおりです。

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /beta/

    #Removes access to the system folder by users.
    #Additionally this will allow you to create a System.php controller,
    #previously this would not have been possible.
    #'system' can be replaced if you have renamed your system folder.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #When your application folder isn't in the system folder
    #This snippet prevents user access to the application folder
    #Submitted by: Fabdrol
    #Rename 'application' to your applications folder name.
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /index.php
</IfModule> 

コメントが示すように、私はしばらく前にサイトから使用したので、a3m の使用に非常に熱中しているので、2 つをどのように組み合わせることができるかを尋ねようとしています。

みんなありがとう。

4

1 に答える 1

1

セッション ライブラリが読み込まれていないようです。

ライブラリがロードされている場合は、system\application\config\autoload.php をチェックインします。 [42] $autoload['libraries'] = array('database', 'session');

コントローラーからこれを行うことができます: $this->load->library('session');

http://codeigniter.com/user_guide/libraries/sessions.html

于 2010-12-21T00:24:48.317 に答える