Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

MJP

Members
  • Posts

    311
  • Joined

  • Last visited

Profile Information

  • Real Name
    MJP
  • Gender
    Male
  • Location
    Los Angeles
  • Website

Recent Profile Visitors

6,268 profile views

MJP's Achievements

  1. Figured it out. In the fp_categories_images.php file add to select statement what categories you wish to ignore: $categories_query_raw = " select c.categories_id, c.categories_image, cd.categories_name from " . TABLE_CATEGORIES_DESCRIPTION . " cd join " . TABLE_CATEGORIES . " c on (c.categories_id = cd.categories_id) where c.parent_id = '0' and cd.language_id = '" . (int) $languages_id . " ' and cd.categories_id!='57' and cd.categories_id!='60' and cd.categories_id!='60' and cd.categories_id!='42' and cd.categories_id!='50' and cd.categories_id!='59' and cd.categories_id!='67' order by c.sort_order ";
  2. With using Category Images, is it possible to limit the number of categories shown?
  3. I'm using Oscommerce-2.2rc2a with Administrator log in feature. When I click on the Issue Refund or Add Charge button I'm taken to the Administration Log In page to log in! and when I log in I get a page not found error. Does anyone know why this is happening or is experiencing the same issue? Thanks!
  4. Hi, I'm getting this error when clicking the Paypal button at checkout. Cannot redeclare class payment in /services4/webpages/j/o/mydomain.org/public/mystore/catalog/includes/classes/payment.php on line 15 I understand that its calling the class payment 3 times it looks like. One I find in checkout_payment.php, one in checkout_process.php and one I find in paypal_wpp_include.php (brought in from application_top.php) Which do I get rid of or is my problem elsewhere?
  5. is there anything that has to be done with this module with the new Paypal Fraud Management Filters?
  6. someone's not reading all the instructions. :) it says in the instructions if you get a parse error when you hit the edit button in the admin you need to update your database.
  7. do you use phpMyAdmin? if so, it's a breeze to add this SQL instruction.
  8. MJP

    Paypal Error Dumps!

    Thanks Brian. Was concerned there for a moment after testing a reason for an error using a customers credit card with debug mode to true. Upgrading did mask out the CC info.
  9. MJP

    Paypal Error Dumps!

    Paypal Error Dumps sends credit card info in email? It's a little surprising and scary to see this with all the talk about submitting CC#'s through email. (and I've seen people post their error dumps on this message board with full credit card details!). Does paypal do this intentionally? Are they aware of it? Has anyone talked to paypal about this?
  10. and yes, my store is located at http://www.example.com/mystore/catalog/
  11. Sorry, Brian! here is the DIR_FS_CATALOG from /includes/configure.php define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']). '/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
  12. This is my admin configure.php file: <?php // define our webserver variables // FS = Filesystem (physical) // WS = Webserver (virtual) define('HTTP_SERVER', 'https://secureserver/domainname/mystore'); // eg, http://localhost or - https://localhost should not be NULL for productive servers define('HTTP_CATALOG_SERVER', 'https://secureserver/domainname/mystore'); define('HTTPS_CATALOG_SERVER', 'https://secureserver/domainname/mystore'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/home/www/domainname/mystore/'); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs) define('DIR_WS_ADMIN', '/catalog/admin/'); define('DIR_FS_ADMIN', DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN); define('DIR_WS_CATALOG', '/catalog/'); define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/'); define('DIR_WS_INCLUDES', 'includes/'); and this my catalog includes configure.php file: <?php // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.domainname.org/mystore'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://secureserver/domainname/mystore'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.domainname.org'); define('HTTPS_COOKIE_DOMAIN', 'secureserver/domainname.org/'); define('HTTP_COOKIE_PATH', '/catalog/'); define('HTTPS_COOKIE_PATH', '/catalog/'); define('DIR_WS_HTTP_CATALOG', '/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/catalog/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/');
  13. Thanks Brian. I did an upgrade on the store along with upgrading this PayPal WPP contrib. What I don't understand is the error is saying that the path to the admin configure.php file is: /home/www/domainname/mystore/includes/configure.php That isn't the path to my admin configure.php file. The path should be: /home/www/domainname/mystore/catalog/admin/includes/configure.php Just playing around in admin/orders.php I type: include(DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN . DIR_WS_INCLUDES . 'configure.php'); and the error goes away. I'll work on both configure files and see where I went wrong.
  14. Hi, I'm having problems with my admin configure file. I'm getting this error when clicking on Orders in the Admin: Warning: main(/home/www/xxxxx/xxxxx/includes/configure.php) [function.main]: failed to open stream: No such file or directory in /home/www/xxxxx/xxxxx/catalog/admin/orders.php on line 8 Warning: main(/home/www/xxxxx/xxxxx/includes/configure.php) [function.main]: failed to open stream: No such file or directory in /home/www/xxxxx/xxxxx/catalog/admin/orders.php on line 8 Warning: main() [function.include]: Failed opening '/home/www/xxxxx/xxxxx/includes/configure.php' for inclusion (include_path='.:/usr/local//lib/php') in /home/www/xxxxx/xxxxx/catalog/admin/orders.php on line 8 Seems my forward slashes are ok but this doesn't look right with two forward slashes and not sure if this is the problem or not: (include_path='.:/usr/local//lib/php') Anyone know what the problem could be?
  15. Thank you! That's what I thought (a store can't run without storing info and I assumed it was for Express Checkout customers but wasn't sure). I was just concerned that whomever at Paypal reviews my site to see if it's compliant will be a stickler for the rules to be followed absolutely and literally.
×
×
  • Create New...