Vintage Lover
Members-
Posts
73 -
Joined
-
Last visited
Everything posted by Vintage Lover
-
Zen Cart-how Do I Hide It?
Vintage Lover replied to Vintage Lover's topic in Running your online business
Thanks rob. That took care of it. -
I don't want Zen Cart to be live to the world yet. how do I hide it? Thanks!! Sandra
-
How To Move Zen Cart Into Shop Folder?
Vintage Lover replied to Vintage Lover's topic in Running your online business
got it. I didn't properly edit the configure files because I didn't have the right permissions set. -
How To Move Zen Cart Into Shop Folder?
Vintage Lover replied to Vintage Lover's topic in Running your online business
Ok,I made the move. I got this Warning: The downloadable products directory does not exist: /home/rcxxjrfs/public_html/shop/zen-cart-v1.2.6d-full-release-patched/download/. Downloadable products will not work until this directory is valid. What do I do? Thanks for all the help. Sandra -
How To Move Zen Cart Into Shop Folder?
Vintage Lover replied to Vintage Lover's topic in Running your online business
Where do I run the test? -
How To Move Zen Cart Into Shop Folder?
Vintage Lover replied to Vintage Lover's topic in Running your online business
And then change the name of the directory in configure.php and admin/congifure.php right? any other files I need to do that for? thanks a million Andy! Sandra -
How To Move Zen Cart Into Shop Folder?
Vintage Lover replied to Vintage Lover's topic in Running your online business
Hi andy! The zen cart folder is already a folder within the shop folder. Should I extract all the files and place them in the shop folder? -
I have a zen cart folder within my "shop" folder. How can I move it or delete it so "shop" contains the files? I don't want this to be my URL: http://www.debutanteclothing.com/shop/zen-...elease-patched/ I want this: http://www.debutanteclothing.com/shop Thanks! Sandra
-
New problem! I need to turn a few things off. Here they are: Register Globals PHP session.use_trans_sid Where can I do this and how? Sandra
-
never mind, I got it to work. But I am sure I'll be back!
-
I gave up on OS commerce and am trying Zen Cart. I got the following errors when I got my validation checklist: # includes/configure.php = NOT FOUND # admin/includes/configure.php = NOT FOUND But I see them and I turned the permissions like they said on the forum. What's going on? Sandra
-
Here's the PHP code if you need it: <?php /* $Id: header.php,v 1.42 2003/06/10 18:20:38 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ // check if the 'install' directory exists, and warn of its existence if (WARN_INSTALL_EXISTENCE == 'true') { if (file_exists(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/install')) { $messageStack->add('header', WARNING_INSTALL_DIRECTORY_EXISTS, 'warning'); } } // check if the configure.php file is writeable if (WARN_CONFIG_WRITEABLE == 'true') { if ( (file_exists(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/includes/configure.php')) && (is_writeable(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/includes/configure.php')) ) { $messageStack->add('header', WARNING_CONFIG_FILE_WRITEABLE, 'warning'); } } // check if the session folder is writeable if (WARN_SESSION_DIRECTORY_NOT_WRITEABLE == 'true') { if (STORE_SESSIONS == '') { if (!is_dir(tep_session_save_path())) { $messageStack->add('header', WARNING_SESSION_DIRECTORY_NON_EXISTENT, 'warning'); } elseif (!is_writeable(tep_session_save_path())) { $messageStack->add('header', WARNING_SESSION_DIRECTORY_NOT_WRITEABLE, 'warning'); } } } // check session.auto_start is disabled if ( (function_exists('ini_get')) && (WARN_SESSION_AUTO_START == 'true') ) { if (ini_get('session.auto_start') == '1') { $messageStack->add('header', WARNING_SESSION_AUTO_START, 'warning'); } } if ( (WARN_DOWNLOAD_DIRECTORY_NOT_READABLE == 'true') && (DOWNLOAD_ENABLED == 'true') ) { if (!is_dir(DIR_FS_DOWNLOAD)) { $messageStack->add('header', WARNING_DOWNLOAD_DIRECTORY_NON_EXISTENT, 'warning'); } } if ($messageStack->size('header') > 0) { echo $messageStack->output('header'); } ?> <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr class="header"> <td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'newdebutantelogo.jpg', 'Debutante Clothing') . '</a>'; ?></td> <td align="right" valign="bottom"><?php echo '<a href="' . tep_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_account.gif', HEADER_TITLE_MY_ACCOUNT) . '</a> <a href="' . tep_href_link(FILENAME_SHOPPING_CART) . '">' . tep_image(DIR_WS_IMAGES . 'header_cart.gif', HEADER_TITLE_CART_CONTENTS) . '</a> <a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_checkout.gif', HEADER_TITLE_CHECKOUT) . '</a>'; ?> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="1"> <tr class="headerNavigation"> <td class="headerNavigation"> <?php echo $breadcrumb->trail(' » '); ?></td> <td align="right" class="headerNavigation"><?php if (tep_session_is_registered('customer_id')) { ?><a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_LOGOFF; ?></a> | <?php } ?><a href="<?php echo tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> | <a href="<?php echo tep_href_link(FILENAME_SHOPPING_CART); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> | <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CHECKOUT; ?></a> </td> </tr> </table> <?php if (isset($HTTP_GET_VARS['error_message']) && tep_not_null($HTTP_GET_VARS['error_message'])) { ?> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr class="headerError"> <td class="headerError"><?php echo htmlspecialchars(urldecode($HTTP_GET_VARS['error_message'])); ?></td> </tr> </table> <?php } if (isset($HTTP_GET_VARS['info_message']) && tep_not_null($HTTP_GET_VARS['info_message'])) { ?> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr class="headerInfo"> <td class="headerInfo"><?php echo htmlspecialchars($HTTP_GET_VARS['info_message']); ?></td> </tr> </table> <?php } ?>
-
Hi. I am trying my hand at customizing my OS commerce page. I successfully added my logo to the top earlier today and now it's gone! I deleted the little icons at the top for the account, cart, etc. but with them, they took my logo. Here's my url: http://www.debutanteclothing.com/shop/ Can anyone take a look and see what I'm missing? The image is in the right directory. Sandra
-
Complete Os Commerece Dummie
Vintage Lover replied to Vintage Lover's topic in Running your online business
Well, it helped a ton! I got OS commerce up and running: www.debutanteclothing.com/shop but now I have a few questions: 1. What's the easiest way to change the "look" of the store. having difficulty with that. 2. How do I secure it? 3. How do I keep it hidden so there isn't public access? Sandra -
Complete Os Commerece Dummie
Vintage Lover replied to Vintage Lover's topic in Running your online business
Thanks Rob and Andy! last question for tonight: How do I set my oscommerce site so it is NOT live? I don't want anyone to see it yet. Sandra -
Complete Os Commerece Dummie
Vintage Lover replied to Vintage Lover's topic in Running your online business
Ok i think I got it to work. but who is Ponce De Leon, besides the obvious guy, and why does he have stuff on my commerce site? is this the template I am supposed to follow? Also: why is my os commerce site located at http://debutanteclothing.com/shop/admin/ca...ies.php?cPath=1 instead of http://www.debutanteclothing.com/shop/admi...ies.php?cPath=1 I just placed it in a file called: /shop -
I really am dense when it comes to setting this up. I have spent at leat 6 hours trying to do this and I do not know what I am doing. I tried to set up a user and database and all that, but I think I am doing something wrong. Can someone give me a link to where I can find VERY detailed instructions? I tried to follow instructions found on another thread but I still goofed. example : password-what password? any old password? password give to me by totalchoice? what should the database name be? what should the username be? can I pick my own names? do i have to follow the format that was give in other threads? Please help me. I am getting ready to pay a design company to just install it for me!!!!!!!!!!!!! now bald, Sandra
-
David, As usual, you guys ROCK!!! I am such a newbie to this that your suggestion never occured to me. This fixed the problem!!! Thanks again! Sandra
-
Happy Turkey Day! Of course I have a day off, so I'm working on my site. I am having an issue. I want my blog entries to show up here first www.debutanteclothing.com/news, and then subsequently in the categories, so esssentially this will be my default page. But I cannot figure out how to do this. Can anyone help? Sandra
-
Hello. If I have the Starter Plan ($4.00/mo), do I not have access to OS commerce? It is not in my Addon Scripts. Sandra
-
dkotchen! You ROCK man!!!!!!! I love you! It worked! You are my night in shining armor. enough gushing for ya???? Seriously, I was sweating bullets. Now, i will go and save my code in a sage txt file for future screw ups. Sandra
-
Hi Dick. Unfortunately, that didn't work. If you click on the "Deblog" link, you can see what the template should look like. I have no idea what I did. Ugh. Sandra
-
Hi Lise. If you take a look at my code, I think I deleted something or moved something becasue the bottom pink portion should actually be on the left side of the page. So it should have the nav menu on the left, then the content on the right. I have no clue what a messed with that made the left nav menu move to the bottom. Sandra
-
I totally messed up my nice little template my designer made me. I didn't touch the CSS code. I did something in the HTML code. Can someone help? My designer won't be around until tomorrow. Please help! Sandra I guess I should include my URL: www.debutanteclothing.com
-
Link: http://www.debutanteclothing.com Name: Debutante Clothing Description: Vintage and designer vintage clothing, shoes, handbags and accessories for your unique style! Type: Commerical and blog I have added a link to TCH on my main page Sandra
