Godaddy linux servers require special setup.
Follow all the instructions at Installing PHP Point Of Sale onto your existing server) then follow the 2 steps below.
1. in your .htaccess file on root directory of php pos copy the following
NOTE: Change the /pos to the path to php point of sale on your web server.
RewriteEngine On
RewriteBase /pos
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
2. open application/config/config.php file and make sure the following two options are set.
$config['index_page'] = "";
$config['uri_protocol'] = "AUTO";
Comments
0 comments
Article is closed for comments.