Welcome Guest, Not a member yet? Register   Sign In
Problem with Form Validation and Htaccess file
#2

[eluser]InsiteFX[/eluser]
You do not need these anymore, they were for the old versions of CodeIgniter!
Code:
#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]

CodeIgniter now has .htaccess files in all the directories to protect them.

I would also autoload the url_help in ./application/config/autoload.php
Being as it is almost always used through out the application.

Also you are not giving a name to your submit input!


Messages In This Thread
Problem with Form Validation and Htaccess file - by El Forum - 05-27-2012, 05:00 AM
Problem with Form Validation and Htaccess file - by El Forum - 05-27-2012, 11:00 AM
Problem with Form Validation and Htaccess file - by El Forum - 05-27-2012, 03:12 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 02:02 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 02:15 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 02:20 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 02:37 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 02:40 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 03:26 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 03:33 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 03:40 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 03:46 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 03:48 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 03:50 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 03:53 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 03:55 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 03:57 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 03:58 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 03:59 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 04:02 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 04:03 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 04:25 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 07:21 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 08:01 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-28-2012, 08:25 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-29-2012, 01:27 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-29-2012, 04:15 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-29-2012, 06:16 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-29-2012, 06:43 PM
Problem with Form Validation and Htaccess file - by El Forum - 05-30-2012, 12:52 AM
Problem with Form Validation and Htaccess file - by El Forum - 05-30-2012, 02:07 AM
Problem with Form Validation and Htaccess file - by El Forum - 05-30-2012, 08:27 AM



Theme © iAndrew 2016 - Forum software by © MyBB