This is a discussion on Help for a rookie within the osCMax v2 Installation issues forums, part of the osCMax v2.0 Forums category; Hello all, I am having some trouble getting OSCMax to work just right. Here are my problems 1) I can't ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| Hello all, I am having some trouble getting OSCMax to work just right. Here are my problems 1) I can't get the buttons to all show up correctly. I have read the forums and tried reinstalling the folders in binary instead of ASCII but it still doesn't work. From what I can tell all the rest of the images that are in are working fine, any help would be appreciated. 2) I can't get the header image to show up when I change it. I have even went as far as using my image renamed to the OSCMax_top image, still only showing up as a image place holder. 3) I have read everything I can find on the easy populate mod and I can not get it to work at all. 4) I am trying to set up paypal with the freessl, I have almost everything except I can't find (on paypal, these forums or OSC forums) where I am supposed to install the certificates to... Does it go in the admin folder, the catalog main folder, or do I create a seperate folder for it. Like I said in the title I am a rookie, so if you respond to this could you write it out in plain english, I know about as much as HTML and PHP as I do about nuclear physics (not much at all). Any help would be greatly appreciated and I will try to follow it as much as possible. Thanks, Anthony |
|
#2
| ||||
| ||||
| Post your includes/configure.php file Besure to remove your password before you submit. This may be related to the setting in configure.php |
|
#3
| |||
| |||
| ok, here is the code Code:
<?php
/*
osCMax v2.0, Open Source E-Commerce Solutions
http://www.osCDox.com
Copyright (c) 2005 osCMax
Released under the GNU General Public License
*/
// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
define('HTTP_SERVER', 'http://www.yaafitness.com'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', 'www.yaafitness.com');
define('HTTPS_COOKIE_DOMAIN', '');
define('HTTP_COOKIE_PATH', '/cookies');
define('HTTPS_COOKIE_PATH', '');
define('DIR_WS_HTTP_CATALOG', '/');
define('DIR_WS_HTTPS_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/yaafitne/public_html/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
// define our database connection
define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers
define('DB_SERVER_USERNAME', 'yaafitne_oscmax1');
define('DB_SERVER_PASSWORD', '******');
define('DB_DATABASE', '***************');
define('USE_PCONNECT', 'false'); // use persistent connections?
define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'
?>
Thanks, Anthony |
|
#4
| ||||
| ||||
| I think this is where your problem is: '/home/yaafitne/public_html/' I think it should be something like '/home/content/?/?/?/??????/html/ The ? marks are refrenced to your msql database. You are also missing your database connection. Are you hosting local or are you on a shared webhost? It is reading: define('DB_SERVER', 'localhost'); and should be: mysql?????.?hostingservername?.net Look in your hosting MSQL for your hosting server name. This is why your pages are not referencing the database. Have your tried to run the install function again and let the install program install this part. you should not have changed this if you did. The image setting in admin configuration in images is set to low that the images are reduced to small in height. Check these settings. Be sure and make a backup of your website files or try a fresh install in a subfolder. and compare the files. I use WinMerge to compare files. |