Welcome Guest, Not a member yet? Register   Sign In
submit button not redirecting
#11

I have tested your code and it works.

Quote:helloyour mail was sent

is displayed after I hit the submit button.

Does your browser do anything when you hit submit? Does it start to load?
Do you have this in a htaccess file?
Code:
#Rule for routing all page requests through index.php
RewriteCond $1 !^(index\.php|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

And your config set to this?
PHP Code:
// Set the protocol
$protocol 'http://';
if ( isset( 
$_SERVER["HTTPS"] ) && strtolower$_SERVER["HTTPS"] ) == "on" ) {
    
$protocol 'https://';
} else {
    
$_SERVER['HTTPS'] = 'off';
}
// Set the base_url
$config['base_url'] = $protocol.$_SERVER['HTTP_HOST'];

// Index File
$config['index_page'] = ''// Blank so index.php is not added to generated URLs 

What does your post url look like in your page source?

When all fails retry with a fresh install of CodeIgniter.

Good luck!
Reply


Messages In This Thread
submit button not redirecting - by pallu.hegde93 - 11-09-2015, 04:01 AM
RE: submit button not redirecting - by mwhitney - 11-09-2015, 11:33 AM
RE: submit button not redirecting - by InsiteFX - 11-10-2015, 05:07 AM
RE: submit button not redirecting - by mwhitney - 11-10-2015, 01:35 PM
RE: submit button not redirecting - by Martin7483 - 11-11-2015, 01:46 AM
RE: submit button not redirecting - by pdthinh - 11-12-2015, 01:07 AM
RE: submit button not redirecting - by Martin7483 - 11-12-2015, 05:23 AM



Theme © iAndrew 2016 - Forum software by © MyBB