これは、 EllisLabからの直接のチュートリアルです。手順に従うと、フォームが機能するようになります。
よくある間違い、
form
ヘルパーをロードしていません
htaccess.
設定が間違っているか、パスが間違っています (大文字など)。
config.php
正しく設定されていません
- ビューにデータを渡さない (
$this->load->view('some_view', $data);
したがって、エラーメッセージが存在する場合、コミュニティからの助けが得られない場合は、エラーメッセージを提供しませんでした.
デバッグ情報の詳細については、codeigniters プロファイラー ( $this->output->enable_profiler(TRUE);
) をオンにして、PHP のネイティブ関数を使用してくださいvar_dump($variable);
。
エラー報告がに設定されていることを確認E_ALL
してくださいindex.php
編集
あなたのことを確認してください/config/config.php
/*
|--------------------------------------------------------------------------
| Index File
|--------------------------------------------------------------------------
|
| Typically this will be your index.php file, unless you've renamed it to
| something else. If you are using mod_rewrite to remove the page set this
| variable so that it is blank.
|
*/
$config['index_page'] = "";
.htaccess
このファイルをプロジェクトのルートに配置する必要があります。/ci/.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /ci/
# Reenable after getting ssl cert
# RewriteCond %{HTTPS} off
# RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
# Removes access to the system folder by users
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
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.
ErrorDocument 404 /index.php
</IfModule>