Welcome to Laser Pointer Forums - discuss green laser pointers, blue laser pointers, and all types of lasers

LPF Donation via Stripe | LPF Donation - Other Methods

Links below open in new window

ArcticMyst Security by Avery

Help needed with Zen Cart !!

Joined
Mar 2, 2008
Messages
1,500
Points
0
Website help

Well my problem has been resolved, And just when stuff works right, i was short $5.00 of a payment and i lost all my work now : (. They said if i can pay it asap they will restore it. So all well. Thanks everyone for helping.
 
Last edited:





seoguy

0
Joined
Feb 9, 2009
Messages
263
Points
0
OK, I've been up all night and I'm about to crash, but I'll give ya some quick help -

GoDaddy for domain names - OK, so-so (used to be better, b4 they started raising their prices for names!)

for web hosting - from what I've heard, not so good.:( Go on a web hosting forum and do a search on them - I was coming across all sorts of horror stories! Yes, they are dirt-cheap on hosting, but you get what you pay for!

Tried to pull-up your homepage - 403 Forbidden Error - ouch!

Your Zen Cart page pulls-up fine, but like you said, it is located in a subdirectory, not the main directory of your site.

403 error likely result of no default homepage page present, and security settings set to prevent viewing directory contents. Easy fix - just upload a homepage for ppl to see when they go to your website, and error should go away!

Try naming it -

index.html

and upload it to your main web directory. Try putting something like the following in it -

HTML:
<HTML> 
<HEAD> 
<META HTTP-EQUIV="refresh" content="0;URL=http://www.protalkbox.com/zencart/"> 
</HEAD> 
<BODY> 
<P>
Click <A HREF="http://www.protalkbox.com/zencart/">here</A> to visit my shopping cart, if your browser does not re-direct you in a few seconds.
</BODY> 
</HTML>

The above will automatically cause their browser to immediately re-direct to your shopping cart page, as well as give them a link to click if for some reason that doesn't work.

You can add more and/or change it up later, but at least that will get rid of that nasty error msg and get ppl to your Zen Cart page! ;)
 
Joined
Nov 22, 2008
Messages
1,506
Points
48
the pretty way...

The prettier way:

New file called ".htaccess" w/o quotes:
Code:
RewriteEngine On
RewriteCond %(REQUEST_FILENAME) !-f
RewriteCond %(REQUEST_FILENAME) !-d
RewriteCond %(REQUEST_URI) !^/index.php
RewriteRule (.*) index.php

and file named "index.php" w/o quotes:
Code:
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://protalkbox.com/zencart/");
exit();
?>

I use a variant of this code to simplify my site URLs - removing/adding "www" to the URL at will, and redirecting directories. The .htaccess file is based upon Joomla's SEO, creds to them.
 
Joined
Mar 2, 2008
Messages
1,500
Points
0
Thanks guys, I got it figured. All i really had to do was create a new " Index.Html " file and the 404 page is no longer there, and i learned how to auto re-direct the page thanks to Seoguy. Thanks for the help !
 
Joined
Mar 2, 2008
Messages
1,500
Points
0
Now how do i get my page to appear in google search results ! this is confusing ! how am i to get buyers if they cant find my page ???
 
Joined
Mar 2, 2008
Messages
1,500
Points
0
Well darn, I came up short 5$ and they shut my site down :( all my hard work for nothing. This sucks.
 
Joined
Mar 2, 2008
Messages
1,500
Points
0
Holy crap that sucks so. :( How did that happen, don't they give you some warning before that? Think my site auto renews a month or something, not 100% sure though. Gonna go check now actually. :eek:

They gave me a warning, but did not give me an actual amount of time, And i was making the site so i can sell my products to make money. So yeah.
 




Top