Gson24 Posted March 20, 2011 Share Posted March 20, 2011 I really dont no what the problem is and im new here so i dont no if this is the right place to put this but im trying to make a registration page for my server and when i bring it up it says Undefined index: action in C:\xampp\htdocs\index.php on line 56 and idk what to do >.< this is the line that has the problem if($_POST['action']!="signup") so hopefully u guys could help me :/ Im using xampp btw Link to comment https://forums.phpfreaks.com/topic/231165-undefined-index-action-in-cxampphtdocsindexphp-on-line-56/ Share on other sites More sharing options...
Gson24 Posted March 20, 2011 Author Share Posted March 20, 2011 Could anyone help me with this? >.< Link to comment https://forums.phpfreaks.com/topic/231165-undefined-index-action-in-cxampphtdocsindexphp-on-line-56/#findComment-1189829 Share on other sites More sharing options...
JGTP Posted March 20, 2011 Share Posted March 20, 2011 Your problem is $_POST['action'] is not defined. You can fix the warning by checking if the value is set first. Use this: if(isset($_POST['action'])!="signup") Link to comment https://forums.phpfreaks.com/topic/231165-undefined-index-action-in-cxampphtdocsindexphp-on-line-56/#findComment-1189843 Share on other sites More sharing options...
Gson24 Posted March 20, 2011 Author Share Posted March 20, 2011 Yay it worked thanx but now i have this problem New XAMPP security concept: Access to the requested object is only available from the local network. This setting can be configured in the file "httpd-xampp.conf". Idk what to do now can u help me? >.< Link to comment https://forums.phpfreaks.com/topic/231165-undefined-index-action-in-cxampphtdocsindexphp-on-line-56/#findComment-1189852 Share on other sites More sharing options...
Gson24 Posted March 20, 2011 Author Share Posted March 20, 2011 This is what my httpd.xampp looks like # # XAMPP settings # <IfModule env_module> SetEnv MIBDIRS "/xampp/php/extras/mibs" SetEnv MYSQL_HOME "\\xampp\\mysql\\bin" SetEnv OPENSSL_CONF "/xampp/apache/bin/openssl.cnf" SetEnv PHP_PEAR_SYSCONF_DIR "\\xampp\\php" SetEnv PHPRC "\\xampp\\php" SetEnv TMP "\\xampp\\tmp" </IfModule> # # PHP-Module setup # LoadFile "/xampp/php/php5ts.dll" LoadModule php5_module modules/php5apache2_2.dll <FilesMatch "\.php$"> SetHandler application/x-httpd-php </FilesMatch> <FilesMatch "\.phps$"> SetHandler application/x-httpd-php-source </FilesMatch> # # PHP-CGI setup # #<FilesMatch "\.php$"> # SetHandler application/x-httpd-php-cgi #</FilesMatch> #<IfModule actions_module> # Action application/x-httpd-php-cgi "/php-cgi/php-cgi.exe" #</IfModule> <IfModule php5_module> PHPINIDir "/xampp/php" </IfModule> <IfModule mime_module> AddType text/html .php .phps </IfModule> ScriptAlias /php-cgi/ "/xampp/php/" <Directory "/xampp/php"> AllowOverride None Options None Order deny,allow Deny from all <Files "php-cgi.exe"> Allow from all </Files> </Directory> <Directory "/xampp/cgi-bin"> <FilesMatch "\.php$"> SetHandler cgi-script </FilesMatch> <FilesMatch "\.phps$"> SetHandler None </FilesMatch> </Directory> <Directory "/xampp/htdocs/xampp"> <IfModule php5_module> <Files "status.php"> php_admin_flag safe_mode off </Files> </IfModule> AllowOverride AuthConfig </Directory> <IfModule alias_module> Alias /security "/xampp/security/htdocs/" <Directory "/xampp/security/htdocs"> <IfModule php5_module> <Files "xamppsecurity.php"> php_admin_flag safe_mode off </Files> </IfModule> AllowOverride AuthConfig </Directory> Alias /licenses "/xampp/licenses/" <Directory "/xampp/licenses"> Options +Indexes <IfModule autoindex_color_module> DirectoryIndexTextColor "#000000" DirectoryIndexBGColor "#f8e8a0" DirectoryIndexLinkColor "#bb3902" DirectoryIndexVLinkColor "#bb3902" DirectoryIndexALinkColor "#bb3902" </IfModule> </Directory> Alias /phpmyadmin "/xampp/phpMyAdmin/" <Directory "/xampp/phpMyAdmin"> AllowOverride AuthConfig </Directory> Alias /webalizer "/xampp/webalizer/" <Directory "/xampp/webalizer"> <IfModule php5_module> <Files "webalizer.php"> php_admin_flag safe_mode off </Files> </IfModule> AllowOverride AuthConfig </Directory> </IfModule> # # New XAMPP security concept # <LocationMatch "^/(?i:(?:xampp|licenses|phpmyadmin|webalizer|server-status|server-info))"> Order deny,allow #Deny from all Allow from 5.181.6.158\8 ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var </LocationMatch> Link to comment https://forums.phpfreaks.com/topic/231165-undefined-index-action-in-cxampphtdocsindexphp-on-line-56/#findComment-1189853 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.