Alrite, as this may help others, I will try to go through each problem I encountered while helping jill8026 to resolve his problem:
1. You need module-manager for this mod:
http://code.google.com/p/zencart-mod...downloads/list
Troubleshooting: http://code.google.com/p/zencart-mod...i/Installation
2. No input file specified.
This seems to be a specific problem because of the way GoDaddy configured their server, it may happen on other hosts that use php on cgi as well.
Seems like a number of fixes needed to be applied when you encounter this problem:
i. Use the .htaccess below:
Code:
#### BOF SSU
Options +FollowSymLinks -MultiViews
RewriteEngine On
# Make sure to change "test_site" to the subfolder you install ZC. If you use root folder, change to: RewriteBase /
RewriteBase /test_site/
# Deny access from .htaccess
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{SCRIPT_FILENAME} -f [OR]
RewriteCond %{SCRIPT_FILENAME} -d
RewriteRule .* - [L]
RewriteRule ^(.+) index.php?/$1 [E=VAR1:$1,QSA,L]
#### EOF SSU
ii. Create a file call php.ini in your ZC root folder with the content:
Code:
cgi.fix_pathinfo = 1
If you are using php5, change that to php5.ini
iii. Open includes/init_includes/init_ssu.php and find this line:
PHP Code:
function parse_url(){
global $request_type;
Add below:
PHP Code:
foreach($_GET as $key=>$value)
if(strstr($key,'/') || strstr($value,'/')) unset($_GET[$key]);
That's it for now, I will try to find a better way to get around this problem.
Bookmarks