Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

dcrider1

Pioneers
  • Posts

    124
  • Joined

  • Last visited

Profile Information

  • Real Name
    danny

dcrider1's Achievements

  1. I get the award of "dumbest question of the day". I think I assumed this contribution did something else. When clicking on one of my products, I get http://www.burgersmarketpc.com/catalog/product_info.php?products_id=30 How and where do I change to the name, or title, or description of my product. Sorry I got fried brain today! Thanks!
  2. On the download page there are many different packages and versions. Can anyone tell me which is the latest and correct one to use? It doesnt look like folks are getting much response to help with installs? Thanks!
  3. The problem was within the column_left file. I have it fixed now. On to testing and such now. Thanks to those that helped!
  4. So i think this might be the issue. In the module, column_left.php has to be modified. Because of my "theme/template", I think this is where the issue is. Can anyone see the problem? Original column_left code <?php /* $Id: column_right.php,v 1.17 2003/06/09 22:06:41 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License <div style="padding-top:5px"><?php if ($banner = tep_banner_exists('dynamic', 'baner_01')) echo tep_display_banner('static', $banner); ?></div> */ ?> <table border="0" cellspacing="0" cellpadding="0"> <?php require DIR_WS_BOXES.'categories.php';?> <tr><td height="5"></td></tr> <?php require DIR_WS_BOXES.'specials.php';?> <tr><td height="5"></td></tr> <tr><td><?php require DIR_WS_BOXES.'best_sellers.php';?></td></tr> <tr><td height="10"></td></tr> </table> Module column_left code <?php /* $Id: column_left.php 1739 2007-12-20 00:52:16Z hpdl $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ if ((USE_CACHE == 'true') && empty($SID)) { echo tep_cache_categories_box(); } else { include(DIR_WS_BOXES . 'categories.php'); } if ((USE_CACHE == 'true') && empty($SID)) { echo tep_cache_manufacturers_box(); } else { include(DIR_WS_BOXES . 'manufacturers.php'); } require(DIR_WS_BOXES . 'whats_new.php'); require(DIR_WS_BOXES . 'search.php'); require(DIR_WS_BOXES . 'information.php'); /** * START * PayPal Logo * * This will put the paypal logo in the left column */ require(DIR_WS_BOXES . 'paypalLogo.php'); /** * END * PayPal Logo */ ?>
  5. With the help of a few great people, the cart looks to be working. I have not tested the functionality. Now, how do I fix or find the problems relating to the jacked up tables and or columns? www.burgersmarketpc.com/catalog
  6. Robert, Please forgive me on that, I confused you with another. Can you advise to my problem though?
  7. Robert, Hey! Thanks for all your past help, hope the compensation served well. I had sent you a couple of emails and not got any replies. If you forgot, my site is www.burgersmarketpc.com/catalog I installed the paypal express/pro module, you can see my post over there. One problem is the columns or tables are jacked up, but I dont think you worked on that part. One part that you did work on was the USU5. Im getting this error when trying to order an item. Please advise! Thanks!
  8. Here is lines 45 to 71 /** * USU5 function to return the base filename */ function usu5_base_filename() { // Probably won't get past SCRIPT_NAME unless this is reporting cgi location $base = new ArrayIterator( array( 'SCRIPT_NAME', 'PHP_SELF', 'REQUEST_URI', 'ORIG_PATH_INFO', 'HTTP_X_ORIGINAL_URL', 'HTTP_X_REWRITE_URL' ) ); while ( $base->valid() ) { if ( array_key_exists( $base->current(), $_SERVER ) && !empty( $_SERVER[$base->current()] ) ) { if ( false !== strpos( $_SERVER[$base->current()], '.php' ) ) { preg_match( '@[a-z0-9_]+\.php@i', $_SERVER[$base->current()], $matches ); if ( is_array( $matches ) && ( array_key_exists( 0, $matches ) ) && ( substr( $matches[0], -4, 4 ) == '.php' ) && ( is_readable( $matches[0] ) || ( false !== strpos( $_SERVER[$base->current()], 'ext/modules/' ) ) ) ) { return $matches[0]; } } } $base->next(); } // Some odd server set ups return / for SCRIPT_NAME and PHP_SELF when accessed as mysite.com (no index.php) where they usually return /index.php if ( ( $_SERVER['SCRIPT_NAME'] == '/' ) || ( $_SERVER['PHP_SELF'] == '/' ) ) { return 'index.php'; } trigger_error( 'USU5 could not find a valid base filename, please inform the developer.', E_USER_WARNING ); } // End function // set php_self in the local scope $PHP_SELF = usu5_base_filename();
  9. Well Im back to more problems. #1)Now my tables or columns are all jacked up www.burgersmarketpc.com/catalog #2) I tried to order a product just for fun, I get this error
  10. I got the api username, pw, and other functions setup. I went into admin, then to catalog, to change prices on my products, and im getting this error. I dont think I can figure that one out by myself. UPDATE:: Guess I can figure it out, at least for the moment. Sorry for jumping to help first!
  11. I forgot to upload all of the other files, that did not have changed code. So far everything looks to be in working order.
  12. I emailed the template company and they said So I went into the theme folder for all four files that I previously asked about, and changed the code. I uploaded all files. I logged into admin, clicked modules. I got this Any help?
×
×
  • Create New...