[eluser]DJMOHNL[/eluser]
on my log it tells me:
Code:
DEBUG - 29-07-2010 20:45:42 --> Config Class Initialized
DEBUG - 29-07-2010 20:45:42 --> Hooks Class Initialized
DEBUG - 29-07-2010 20:45:42 --> URI Class Initialized
DEBUG - 29-07-2010 20:45:42 --> Router Class Initialized
DEBUG - 29-07-2010 20:45:42 --> Output Class Initialized
DEBUG - 29-07-2010 20:45:42 --> Input Class Initialized
DEBUG - 29-07-2010 20:45:42 --> Global POST and COOKIE data sanitized
DEBUG - 29-07-2010 20:45:42 --> Language Class Initialized
DEBUG - 29-07-2010 20:45:42 --> Loader Class Initialized
DEBUG - 29-07-2010 20:45:42 --> Helper loaded: url_helper
DEBUG - 29-07-2010 20:45:42 --> Controller Class Initialized
DEBUG - 29-07-2010 20:45:42 --> File loaded: /var/www/vhosts/[domain*]/httpdocs/system/application/views/post/zoek_post.php
DEBUG - 29-07-2010 20:45:42 --> File loaded: /var/www/vhosts/[domain*]/httpdocs/system/application/views/site.php
DEBUG - 29-07-2010 20:45:42 --> Final output sent to browser
DEBUG - 29-07-2010 20:45:42 --> Total execution time: 0.0134
* edited for security reasons (it was my domain name in the log edited here)
it tells me this:
DEBUG - 29-07-2010 20:45:42 --> Global POST and COOKIE data sanitized
i cant seem to know what 'sanitized' means (google tells me in dutch its cleaned) and my
Code:
$config['global_xss_filtering'] = FALSE;
i cant get any post or get variables using:
Code:
$config['enable_query_strings'] = FALSE;
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-'; (maybe ? is needed?)
using this form:
Code:
<form method="get" action="zoek/">
<fieldset>
<legend>Uw plaats, postcode of regio</legend>
<input type="text" id="key" value="" class="side" />
<input type="submit" value="Doorgaan" class="side" />
</fieldset>
</form>
and this code to get the parameters:
Code:
$keyword = $this->input->post('key');
if(!$keyword){
$keyword = 'geen zoekopdracht gevonden.';
}
? i have read all above, none still working not even the CI 2 Get Parameters patch.
-> PHP Version 5.2.13
-> Apache 2.0 Handler
-> register_globals Off
-> safe_mode Off
-> always_populate_raw_post_data Off
apache and php (and everything arround) was updated a few days ago (before it know it was working with other domains (cant check it out unfortunately)