Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

I have a broken link! HELP


GOTP

Recommended Posts

Posted

Well I a nnob, and I cant find my broken link.

 

When I click on log-in it links me to an error, Where should i link this button to?

 

If you wanna see it, My Webpage

 

you may need to build an account.

Posted

It worked fine for me.

 

Empty your cache on your local machine and try again.

Just between us, remember there are only 10 kinds of people in the world; those who understand binary and those who don't!!

 

Remember, learning is a "do-it-yourself" experience; although, not necessarily a "do-it-BY-yourself" experience.

 

The quickest way to learn is to forget to BACKUP!

Posted
It worked fine for me.

 

Empty your cache on your local machine and try again.

Well I cleared me browser cache, did you mean some other cache?

 

It didn't work again.

 

The problem happens when i try to login with a e-mail ns pass. i press log-in and it takes me to "Datarelm"

"ERRROR 404 not fould"

 

I think it should take me to "welcome back"

 

I need to know with file to edit and what link to add?

 

Thanks

Posted
It worked fine for me.

 

Empty your cache on your local machine and try again.

 

 

Your whole directory structure is complicated. The login should be directed to

 

https://secure.serve.com/vpback/go/catalog/index.php

 

Instead of:

 

http://www.serve.com/adnet/index.shtml

 

How this came about is a little beyond me!?* I've never seen this problem before.

 

Maybe someone else has seen this problem before?

Just between us, remember there are only 10 kinds of people in the world; those who understand binary and those who don't!!

 

Remember, learning is a "do-it-yourself" experience; although, not necessarily a "do-it-BY-yourself" experience.

 

The quickest way to learn is to forget to BACKUP!

Posted

The problem has to do with how your hosting service is handling your secure conenction. Your hosting service is rerouting users to a secure section that has nothing to do with your domain name. Somewhere in there it is creating an error because it reroutes to a file that was not expected to be where it forwarded it to. I would suggest talking to your host or going with a hosting provider that has experience with OSC and secure connections. I supply my ecommerce customers with a hosting solution that allows secure connections with out leaving your domain name. If you have any questions let me know or you can email me at [email protected]

 

Thanks

Jerad

Posted
Your whole directory structure is complicated. The login should be directed to

 

https://secure.serve.com/vpback/go/catalog/index.php

 

Instead of:

 

http://www.serve.com/adnet/index.shtml

 

How this came about is a little beyond me!?* I've never seen this problem before.

 

Maybe someone else has seen this problem before?

 

Ok well thanks for looking.

 

If anyone else has a thought, I realy don't want to reinstall! :'(

Posted
Ok well thanks for looking.

 

If anyone else has a thought, I realy don't want to reinstall! :'(

 

 

contact your host. Possibly they have you installedin the wrong directory. See if they can help before you completly reinstall.

Just between us, remember there are only 10 kinds of people in the world; those who understand binary and those who don't!!

 

Remember, learning is a "do-it-yourself" experience; although, not necessarily a "do-it-BY-yourself" experience.

 

The quickest way to learn is to forget to BACKUP!

Posted

It's also possible that redefining this line in both your configuration files could do it..,...

 

define('DIR_WS_HTTPS_CATALOG', '/catalog/');

 

 

change it to something like this

 

define('DIR_WS_HTTPS_CATALOG', '/vpback/go/catalog/

 

solid caps of course

Just between us, remember there are only 10 kinds of people in the world; those who understand binary and those who don't!!

 

Remember, learning is a "do-it-yourself" experience; although, not necessarily a "do-it-BY-yourself" experience.

 

The quickest way to learn is to forget to BACKUP!

Posted
It's also possible that redefining this line in both your configuration files could do it..,...

 

define('DIR_WS_HTTPS_CATALOG', '/catalog/');

change it to something like this

 

define('DIR_WS_HTTPS_CATALOG', '/vpback/go/catalog/

 

solid caps of course

 

 

Where would I find these files or that line? where are my config files?

 

I will try it.

 

If anyone else has any ideas, I dont think its my hosting co, but i have sent them an e-mail and am looking for a responce.

Posted

Ok here is my config.php

Where it says "define('DIR_WS_HTTP_CATALOG', '/catalog/')" should it say "define('DIR_WS_HTTP_CATALOG', '/vpback/go/catalog/')"???????

 

The only difference is the HTTP or HTTPS, and there are more as you can see below, should i change all?

 

HELP!?

 

THanks

 

*/

// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
 define('HTTP_SERVER', 'http://www.goelectronics.com'); // eg, http://localhost - should not be empty for productive servers
 define('HTTPS_SERVER', 'https://secure.serve.com'); // eg, https://localhost - should not be empty for productive servers
 define('ENABLE_SSL', true); // secure webserver for checkout procedure?
 define('HTTP_COOKIE_DOMAIN', 'www.goelectronics.com');
 define('HTTPS_COOKIE_DOMAIN', 'secure.serve.com');
 define('HTTP_COOKIE_PATH', '/catalog/');
 define('HTTPS_COOKIE_PATH', '/vpback/go/catalog/');
 define('DIR_WS_HTTP_CATALOG', '/catalog/');
 define('DIR_WS_HTTPS_CATALOG', '/vpback/go/catalog/');
 define('DIR_WS_IMAGES', 'images/');
 define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
 define('DIR_WS_INCLUDES', 'includes/');
 define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
 define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
 define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
 define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
 define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

 define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
 define('DIR_FS_CATALOG', '/home/serve/vpback/go/catalog/');
 define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
 define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

// define our database connection
 define('DB_SERVER', 'mysql.serve.com'); // eg, localhost - should not be empty for productive servers
 define('DB_SERVER_USERNAME', 'vpback');
 define('DB_SERVER_PASSWORD', 'bzrock');
 define('DB_DATABASE', 'go');
 define('USE_PCONNECT', 'false'); // use persistent connections?
 define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'
?>

Posted
Ok here is my config.php

Where it says "define('DIR_WS_HTTP_CATALOG', '/catalog/')" should it say "define('DIR_WS_HTTP_CATALOG', '/vpback/go/catalog/')"???????

 

The only difference is the HTTP or HTTPS, and there are more as you can see below, should i change all?

 

HELP!?

 

ok i tried changing this and lost my main page, then i tried to log-in and it took me to the right link!

 

But i lost everything else.

 

What am i doing wrong?

 

I switched them back to "define('DIR_WS_HTTP_CATALOG', '/catalog/')" and the main part works but now im back to when i log in it directs me to "error 404 page not found"

 

Any ideas

 

it's starting to look like the server is doing somthing funny with my ssl.

 

HELP

Posted

so I don't understand why my link is broke, when I try to login it sends me to and erroe page!!! help.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...