PDA

View Full Version : Attempting to create dummy account, recieving error...


LMXI
12-16-04, 10:12 PM
I just installed my store today and I'm beginning to mine through the problems. Before I complain though I must say this software is pretty feature rich for a FREE product :)

When I click on the create an account link I recieve the following error message:

Not Found
The requested URL /store/catalog/create_account.php was not found on this server.

When I check my files in my FTP create_account.php is present, so what is the deal?


Thank you much.

stevel
12-17-04, 10:51 AM
It is likely that you have incorrectly specified HTTPS_SERVER, perhaps leaving it empty. You want it to be something like 'https://yourdomaincom.secure.powweb.com'

LMXI
12-17-04, 01:04 PM
Thanks Stevel for replying to all my questions.

After taking a gander at zc, I think I may actually have an easier time of it with OSC, plus it has so many modules and a vaster support community...

Could you tell me what file I need to change or look at to make sure I'm using the correct server path? Also is it possible that my php.ini file turning globals "off" my have anything to do with it?

LMXI
12-17-04, 04:18 PM
Hola,

The configure.php files (I finally found out) are what I need to change. BTW my php.ini file was also interfering so I deleted it...I'll deal with that security issue a little later.

I'm still having the same problem as stated before though.
Here is what is in the admin/includes/configure.php:

define('HTTP_SERVER', 'http://mysecond_site.com'); // eg, http://localhost - should not be empty for productive servers
define('HTTP_CATALOG_SERVER', 'http://mysecond_site.com');
define('HTTPS_CATALOG_SERVER' 'https://mysecond_sitecom.secure.powweb.com');
define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module
define('DIR_FS_DOCUMENT_ROOT', '/www/m/s/mysecond_site.com/htdocs/mysite.com/store/catalog/'); // where the pages are located on the server

************************************************** *********************

Then for the catalog/includes/configure.php:
define('HTTP_SERVER', 'http://mysecond_site.com'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://mysecond_sitecom.secure.powweb.com'); // eg, https://localhost - should not be empty for productive servers
define('ENABLE_SSL', true); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', 'mysecond_site.com');
define('HTTPS_COOKIE_DOMAIN', 'mysecond_sitecom.secure.powweb.com');
define('HTTP_COOKIE_PATH', '/mysecond_site.com/store/catalog/');

:confused:

I should also note that 'mysecond_site' is a second domain hosted on my main domain. In the OPS panel when looking for the proper ssl path, Powweb gave me the choice of using maindomaincom.secure.powweb.com or mysecond_sitecom.secure.powweb.com...

stevel
12-17-04, 04:46 PM
I don't see a problem here except that the xxx_COOKIE_PATH defines should all simply be '/store/catalog/' If you want, send me a Private Message with your real URL and I'll take a look.

LMXI
12-17-04, 04:47 PM
Stevel to the rescue...thanks, will do :)