my error message is when when I run the install.php
PHP Notice: Undefined index: action in C:\Program Files\PHP-Kiwi\inc.shared.php on line 32 PHP Notice: Undefined index: action in C:\Program Files\PHP-Kiwi\inc.shared.php on line 37
Line 37 says return trim(addslashes(strip_tags($_POST[$name])));
Any ideas what is causing this?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
To surpress notices, you will need to modify the php.ini, which is usually located in your PHP directory or C:\Windows\ if you are using MS Windows.
Scroll down until you see the "error handling and logging" section, and where it says:
Error_reporting = E_ALL
change that to:
Error_reporting = E_ALL & ~E_NOTICE
This will surpress notices after you restart IIS. Surpressing errors is highly reccomended for production websites. However, I will update the PHP-Kiwi readme with this information, and will also clean up my bad coding habits with the next release. Thanks for bringing it to my attention!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm using IE 7, IIS 6, PHP 5.2, mysql 5.0.
my error message is when when I run the install.php
PHP Notice: Undefined index: action in C:\Program Files\PHP-Kiwi\inc.shared.php on line 32 PHP Notice: Undefined index: action in C:\Program Files\PHP-Kiwi\inc.shared.php on line 37
Line 37 says return trim(addslashes(strip_tags($_POST[$name])));
Any ideas what is causing this?
To surpress notices, you will need to modify the php.ini, which is usually located in your PHP directory or C:\Windows\ if you are using MS Windows.
Scroll down until you see the "error handling and logging" section, and where it says:
Error_reporting = E_ALL
change that to:
Error_reporting = E_ALL & ~E_NOTICE
This will surpress notices after you restart IIS. Surpressing errors is highly reccomended for production websites. However, I will update the PHP-Kiwi readme with this information, and will also clean up my bad coding habits with the next release. Thanks for bringing it to my attention!