Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

tec

Pioneers
  • Posts

    568
  • Joined

  • Last visited

Everything posted by tec

  1. your welcome. I hope you were able to get it before i answered. It has been a few days since you made your post
  2. ok, i uncommented the application top but now i get this Fatal error: Cannot redeclare tep_show_category() (previously declared in /mounted-storage/home13/sub004/sc12844-MMOB/www/catalog/includes/boxes/categories.php:13) in /mounted-storage/home13/sub004/sc12844-MMOB/www/catalog/includes/boxes/categories.php on line 13 page link
  3. hi there, i am in the process of cleaning up after someone elses work. The FAQDesk.v1.01.1 is installed but when i go to an faq page, it is blank and i lose the right column, please see.... blank faq page still working on the look, just worried about function right now
  4. Hi there, I have installed the contribution and placed the includes/boxes/information.php up on the site I then went into the admin and created a couple of dummy categories in the info manager. Now when the links show up in the information box, they go to urls like... catalog/privacy-notice-i-2.html catalog/shipping-returns-i-1.html any thoughts on why they dont go to the pages that have been created? even on the pages above that it gos to, i have this error Fatal error: Cannot redeclare tep_show_category() (previously declared in /mounted-storage/home13/sub004/sc12844-MMOB/www/catalog/includes/boxes/categories.php:13) in /mounted-storage/home13/sub004/sc12844-MMOB/www/catalog/includes/boxes/categories.php on line 13
  5. hi there, to run an sql file, you go into your phpMyadmin, select the DB, click on the SQL tab, browse for the .sql file and hit 'run'
  6. here is the top code of my catalog/dynamic_sitemap.php i had to comment out the application_top, it was causing other errors <?php /* $Id: dynamic_sitemap.php,v1.5 2005/10/16 Jack_mcs osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ //require('includes/application_top.php'); require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_DYNAMIC_SITEMAP); include(DIR_WS_MODULES . '/dynamic_sitemap.php'); $breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_DYNAMIC_SITEMAP)); ?> oh wow, i just noticed you are the developer of the mod, thank you, i like the mod, i have seen it work, i just cant get it to work for me :(
  7. here is my filenames define('FILENAME_DYNAMIC_SITEMAP', 'dynamic_sitemap.php'); define('FILENAME_INFORMATION', 'information.php'); //BEGIN allprods modification define('FILENAME_ALLPRODS', 'all_products.php'); //END allprods modification and here is my config define('HTTP_SERVER', 'http://www.nwcoin.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://ssl.servage.net/~sc12844-MMOB'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', false); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.nwcoin.com'); define('HTTPS_COOKIE_DOMAIN', 'ssl.servage.net'); 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/'); 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/'); what am i missing? its always the small obvious things that take forever to trouble shoot, but i am stuck on this one
  8. ok, i am in another directory now, i have the link in the information bos coded as it should be and it is making it to the page '<a href="' . tep_href_link(FILENAME_DYNAMIC_SITEMAP) . '">' . BOX_INFORMATION_DYNAMIC_SITEMAP . '</a>'); but now when i get to the site map page, i get this,, Fatal error: main(): Failed opening required 'DIR_WS_LANGUAGES/FILENAME_DYNAMIC_SITEMAP' (include_path='.:/usr/local/lib/php') in /mounted-storage/home13/sub004/sc12844-MMOB/www/catalog/dynamic_sitemap.php on line 15 but there is a dynamic_sitemap.php in the languages/english directory
  9. i cant find a place in the admin for the All Prodcuts, also, when i click on the all products links in the category box, it takes me to the index page, and when i type the url to the all products page, it still directs me back to the admin page thoughts?
  10. ok, i got it to work i had to edit some of the files but i got it to work in my boxes/information i have '<a href="' . tep_href_link('dynamic_sitemap.php', '', 'NONSSL') . '">site map</a>'); i had to edit the languages/includes/dynamic_sitemap but heck, it works now thank you for your guidance :blush:
  11. ok, it makes it to the page now, but now i get this http://www.nwcoin.com/old_catalog/dynamic_sitemap.php
  12. here is my code for my includes/boxes/information.php <?php $info_box_contents = array(); $info_box_contents[] = array('align' => 'left', 'text' => BOX_HEADING_INFORMATION ); new infoBoxHeading($info_box_contents, false, false); $info_box_contents = array(); $info_box_contents[] = array('align' => 'left', 'text' => '<a href="' . tep_href_link(FILENAME_SHIPPING, '', 'NONSSL') . '">' . BOX_INFORMATION_SHIPPING . '</a><br>' . '<a href="' . tep_href_link(FILENAME_PRIVACY, '', 'NONSSL') . '">' . BOX_INFORMATION_PRIVACY . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONDITIONS, '', 'NONSSL') . '">' . BOX_INFORMATION_CONDITIONS . '</a><br>' . '<a href="' . tep_href_link(FILENAME_LINKS, '', 'NONSSL') . '">' . BOX_HEADING_LINKS . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONTACT_US, '', 'NONSSL') . '">' . BOX_INFORMATION_CONTACT . '</a><br>'. '<a href="' . tep_href_link(FILENAME_ALLPRODS, '', 'NONSSL') . '">' . BOX_INFORMATION_ALLPRODS . '</a><br>' . '<a href="' . tep_href_link(FILENAME_DYNAMIC_SITEMAP, '', 'NONSSL') . '">' . BOX_INFORMATION_DYNAMIC_SITEMAP . '</a>'); new infoBox($info_box_contents); ?>
  13. i swear i edited the correct file, i noticed though, that i am having the same problem with "all Products' http://nwcoin.com/old_cart take a looky here, the design hurts, but i am here to try to clean up after someone else. What could be the problem that would cause both mods to come up with the XXXXX_XXXXXX when you click or mouseover. again, here is my includes/filenames.php define('FILENAME_TELL_A_FRIEND', 'tell_a_friend.php'); define('FILENAME_UPCOMING_PRODUCTS', 'upcoming_products.php'); define('FILENAME_DYNAMIC_SITEMAP', 'dynamic_sitemap.php'); //BEGIN allprods modification define('FILENAME_ALLPRODS', 'allprods.php'); //END allprods modification ?>
  14. hi there, I have done this, i have done everything it said to do in the doc. here is the last few lines of my includes/filenames.php define('FILENAME_TELL_A_FRIEND', 'tell_a_friend.php'); define('FILENAME_UPCOMING_PRODUCTS', 'upcoming_products.php'); define('FILENAME_DYNAMIC_SITEMAP', 'dynamic_sitemap.php'); ?> bit it still gos to /FILENAME_DYNAMIC_SITEMAP and that is what is on the mouse over on the link
  15. guess it might help to post the code eh $info_box_contents = array(); $info_box_contents[] = array('align' => 'left', 'text' => '<a href="' . tep_href_link(FILENAME_SHIPPING, '', 'NONSSL') . '">' . BOX_INFORMATION_SHIPPING . '</a><br>' . '<a href="' . tep_href_link(FILENAME_PRIVACY, '', 'NONSSL') . '">' . BOX_INFORMATION_PRIVACY . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONDITIONS, '', 'NONSSL') . '">' . BOX_INFORMATION_CONDITIONS . '</a><br>' . '<a href="' . tep_href_link(FILENAME_LINKS, '', 'NONSSL') . '">' . BOX_HEADING_LINKS . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a><br>'. '<a href="' . tep_href_link(FILENAME_DYNAMIC_SITEMAP) . '">' . BOX_INFORMATION_DYNAMIC_SITEMAP . '</a>'); new infoBox($info_box_contents); ?>
  16. when i put my mouse over the link in the information box, it says this FILENAME_DYNAMIC_SITEMAP what file have i missed?
  17. hi there, i installed the faq desk onto a site, i have the faq categories box showing but i am getting this error when i clcik on a category Warning: Division by zero in /mounted-storage/home13/sub004/sc12844-MMOB/www/catalog/includes/classes/split_page_results.php on line 59 1064 - You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'MAX_DISPLAY_FAQDESK_SEARCH_RESULTS' at line 4 select pd.faqdesk_answer_long, pd.faqdesk_answer_short, p.faqdesk_id, p.faqdesk_date_added, pd.faqdesk_question, pd.faqdesk_answer_long, pd.faqdesk_answer_short from faqdesk_description pd, faqdesk p, faqdesk_to_categories p2c where p.faqdesk_status = '1' and p.faqdesk_id = p2c.faqdesk_id and pd.faqdesk_id = p2c.faqdesk_id and pd.language_id = '1' and p2c.categories_id = '2' order by p.faqdesk_date_added desc limit -0, MAX_DISPLAY_FAQDESK_SEARCH_RESULTS
  18. Hi there, i just installed the site map mod, i am also using Information Pages Unlimited v1.2 i get this error when i click on the 'site map' link Fatal error: Cannot redeclare tep_count_products_in_category_menu() (previously declared in /mounted-storage/home13/sub004/sc12844-MMOB/www/catalog/includes/boxes/categories.php:13) in /mounted-storage/home13/sub004/sc12844-MMOB/www/catalog/includes/boxes/categories.php on line 13
  19. hi everyone, I have looked around but cant find anything. Does anyone know if there is a thread somewhere dealing with the Gift Registry from Gunter? I would like to be able to have a Print friendly report showing full details of the registry in a print friendly manner showing both items requested and received including printing out by category
  20. Hi there, I was wondering if someone could tell me if there is a way to set up the contribution so its only a text field and not the drop down with 'other' textfield. Just How Did You Hear About Us ***textfield*** i would like this sent to the db like all of the mentions above and i am sure i can figure it out with all of the helpful info here, but i just wanted to know about the text field first
  21. thank you for your help, this thing was driving me nuts, all is well and seems to be ok now, thanks again :)
  22. i ran into this problem too, what i did was, i went into the DB using phpMyAdmin, I deleted all of the coupon tables and ran the sql again, it seemed to fix it just fine.
  23. ok, outside of the french problem in the admin, i only have one other problem and it is all working. What might I have missed to get this on the checkout_payment.php TEXT_ENTER_GV_CODE thanx :)
  24. hi there, well i think i finally got the ccgv working but in the admin section in modules>order total the information for the voucher is french. I ran the sql that turns the french to english but this part did not change. Any thoughts?
  25. I believe you had asked if there was a working version anywhere and if someone can post a link for you. Ergo, the site link from Chris. Oh by the way........HAPPY HOLIDAYS to everyone. Oh, guess I should ask while i am here, I am about to do a fresh install of the CCGV and start from scratch, which shoud i get? i see there is a 5.15, should i be using this one?
×
×
  • Create New...