Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

beardeddone

Archived
  • Posts

    272
  • Joined

  • Last visited

Everything posted by beardeddone

  1. Thanks. Ok I have pretty much redone the installation of this interface, assumming that all your files are copied to there prespective subdirectories the rest of the install should work following my instructions. They are lengthly so I posted the install interface instructions Here thanks for your install interface instructions . Your welcome!! Even tho I managed to get this working ok, I still haven't found where to change where phpbb looks for the graphics/images, seems I have to have them in catalog\templates\subSilver\images instead of catalog\includes\modules\phpbb2\templates\subSilver\images Any Ideas? I also tried to install a calender into phpbb under OSC but get a database error, yes that does exist.
  2. Heck I'll answer your response, I wished I could tell you something useful, all I can say is check and double check your coding and follow the instructions, Mine seems to work ok.
  3. Thanks. Ok I have pretty much redone the installation of this interface, assumming that all your files are copied to there prespective subdirectories the rest of the install should work following my instructions. They are lengthly so I posted the install interface instructions Here
  4. Ok, if you will test it out on my site, register or what ever you have to do to post a message or whatever, if you do this and find no errors, I'll go thru and rewrite the instructions to install this and post it here, hows that. I'm not looking for users or customers, this is just for testing purposes. Do your damage if you can, I want to see how well this integraded forum works anyway. I want to here of any and all errors, if any.
  5. I wished I could be of some help, I did finally get this mod to work, but I don't even know what I ended up doing that made it work other then being sure you are user id 1 in the database for OSC and phpbb and define('STORE_SESSIONS', 'mysql'); needs to be set in the includes/configure.php and admin/includes/configure.php, I had the toughest time getting this one to work without errors.
  6. I left 2 of the five choices that you want to get rid of. All I did was a lot of commenting out of the code. You can get my catalog/subscription_center.php and look it over, and carry the commenting on for the other 2 choices. I put the file in a .zip and you can get it here: Commented File I like it. Thanks
  7. This looks nice in IE6, but has a black background in Netscape and I can't find out where the color is comming from, samething with other skins. Any ideas?
  8. I have a question for you: How in the world do I apply the *.diff files? I see no reference to these or how to apply them in any of the files you supplied, this is the second or third time I've seen this in a mod, which might not be your mods, but nothing to tell how to apply them. Would you please explain this?
  9. This contrib does work, drop the process and just use account_edit.php or whatever the filename is without the process like account_edit_process.php.chg is the changes in account_edit.php file..A typo I'm sure.
  10. I must admit that I was sceptical of this mod, but after looking at it and installing it, I sure do like it. Take a look at it below with the WWW Thanks for the mod
  11. It's in the catalog\admin\ls_answercall.php Just change the $start_msg = "How may I help You?";
  12. Yep it's in your catalog\includes\languages\english.php file do a search for Manufacturers and change it to whatever you like.
  13. I was able to get this installed and running, but I'm having the same problem with not getting the "email list" code to display. I'd appreciate it if someone could post a known working wishlist.php file. By the way, the email itself seems to work for me, if I go to wishlist_email.php, I can send a reasonable email with the wishlist contents. Over time, this can be improved, but out of the box, not bad at all. BeardedOne - I'm running a template system, so mine is a bit different. You should be able to find the add to cart button, and paste it in afterwards. It didn't work for me if I had the wishlist button before the add to cart button, due to the way the form tags are arranged. The first few lines are the add to cart code, use this as a reference to find it in your product_info.php file, and then add the wishlist lines. Don't forget the /form tag after the add to cart. (Note: I also have a quantity mod in my cart routine, you can skip this if you want ; ) ?<td class="main" align="center">Quantity: <input type="text" name="quantity" value="1" maxlength="4" size="4"><br><br> ? ?<?php echo tep_draw_hidden_field('products_id', $product_info['products_id']) . tep_image_submit('button_in_cart.gif', IMAGE_BUTTON_IN_CART); ?></td> ? ?</form> ? ?<td align="center" class="main"><?php echo tep_draw_form('wishlist_quantity', tep_href_link(FILENAME_WISHLIST, tep_get_all_get_params(array('action')) . 'action=add_wishlist')); ?> ? ? ? ? ? <?php if (tep_session_is_registered('customer_id')) echo tep_draw_hidden_field('products_id', $product_info_values['products_id']) . tep_image_submit('button_wishlist.gif', IMAGE_BUTTON_ADD_WISHLIST); ?></td> Dan I don't know if it was the extra line, but it works with your code, I used it all. Thanks
  14. Yeah, but where did you put the coding exactly? When anyone fixes something please tell how you did it instead of I fixed it and here it is. I haven't downloaded or looked at MS1 or the M1 product_info.php file. What's the changes if any.
  15. Same here, this mod according to the readme.txt file was written for MS1, I'm using MS2, I have tried the code in almost every position in the product_info.php but it will not add the products to the wishlist unless the code is past the </form> tag, besides this leaves space for more future buttons, if needed, at least it works now. Johnson: You have some nice mods, but your documentation on installing leave nothing to be desired, I guess you don't realize that some of us are heavily modded to start with and searching thru countless files for coding is useless thus making your mods useless for me. I need the changes documented in the readme.txt or install.txt file in order to use them.
  16. Check the </form> tags in product_info.php - there should be two of them - one for the add to cart button, and another for add to wishlist. It needs to be changed to Interesting, I only have one </form> in my product_info and when I put the </table></form></td> <td align="right" class="main"><?php echo tep_draw_form('wishlist_quantity', tep_href_link(FILENAME_WISHLIST, tep_get_all_get_params(array('action')) . 'action=add_wishlist')); ?> <?php if (tep_session_is_registered('customer_id')) echo tep_draw_hidden_field('products_id', $product_info_values['products_id']) . tep_image_submit('button_wishlist.gif', IMAGE_BUTTON_ADD_WISHLIST); ?></td> then it works great, BUT, then the page looks like this It needs to be changed to </form> <td align="right" class="main"><?php echo tep_draw_form('wishlist_quantity', tep_href_link(FILENAME_WISHLIST, tep_get_all_get_params(array('action')) . 'action=add_wishlist')); ?> <?php if (tep_session_is_registered('customer_id')) echo tep_draw_hidden_field('products_id', $product_info_values['products_id']) . tep_image_submit('button_wishlist.gif', IMAGE_BUTTON_ADD_WISHLIST); ?></td> </table></td>
  17. I got this installed with no errors so far, but when I add something to the wishlist then click on View My Wishlist nothings in it.
  18. Well I have a problem with the install, thanks for answering my e-mail It looks like it looking for catalog/includes/modules/payment/installment.php, but that one doesn't exist in this mod for the english part of it, I do have a file named interconsumo.php for that subdir, You tell me.
  19. In the wishlist_help.php and wishlist.php, I see a line <? require(DIR_WS_INCLUDES . 'meta.php'); ?> I don't seem to have this filename meta.php, hows it created?
  20. Well for some reason when I add this code to the application_top.php //beginning of wishlist ? ? ?case 'cust_order' : ? ? if (tep_session_is_registered('customer_id') && isset($HTTP_GET_VARS['pid'])) { ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?if (tep_has_product_attributes($HTTP_GET_VARS['pid'])) { ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?tep_redirect(tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $HTTP_GET_VARS['pid'])); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?} else { ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?tep_db_query("delete from " . TABLE_WISHLIST . " where products_id = '" . $HTTP_GET_VARS['pid'] . "' and customers_id = '" . $customer_id . "'"); ?$cart->add_cart($HTTP_GET_VARS['pid'], $cart->get_quantity($HTTP_GET_VARS['pid'])+1); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?} ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?} ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?tep_redirect(tep_href_link($goto, tep_get_all_get_params($parameters))); // Add product to the wishlist ? ? ?case 'add_wishlist' : ?if (ereg('^[0-9]+$', $HTTP_POST_VARS['products_id'])) { ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?if ?($HTTP_POST_VARS['products_id']) { ? ? ? ? ? ? ? ? ? ? ? ? ? ?tep_db_query("delete from " . TABLE_WISHLIST . " where products_id = '" . $HTTP_GET_VARS['products_id'] . "' and customers_id = '" . $customer_id . "'"); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?tep_db_query("insert into " . TABLE_WISHLIST . " (customers_id, products_id, products_model, products_name, products_price) values ('" . $customer_id . "', '" . $products_id . "', '" . $products_model . "', '" . $products_name . "', '" . $products_price . "' )"); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?} ? ? ? ? ? ? ? ? ? ? ? ? ? ?} tep_redirect(tep_href_link(FILENAME_WISHLIST)); ? ? ? ?break; ? ? ? ? // Add wishlist item to the cart case 'wishlist_add_cart': reset ($lvnr); ? ? ? ? ? ? ? ? ? ? ? ? ? reset ($lvanz); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? while (list($key,$elem) =each ($lvnr)) ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?(list($key1,$elem1) =each ($lvanz)); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?tep_db_query("update " . TABLE_WISHLIST . " SET products_quantity=$elem1 WHERE customers_id=$customer_id AND products_id=$elem"); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?tep_db_query("delete from " . TABLE_WISHLIST . " WHERE customers_id=$customer_id AND products_quantity='999'"); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?$produkte_mit_anzahl=tep_db_query("select * from " . TABLE_WISHLIST . " WHERE customers_id=$customer_id AND products_id=$elem AND products_quantity<>'0'"); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?while ($HTTP_POST_VARS=mysql_fetch_array($produkte_mit_anzahl)) ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?{ ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? $cart->add_cart($HTTP_POST_VARS['products_id'], $HTTP_POST_VARS['products_quantity']); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?} ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?reset ($lvanz); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?tep_redirect(tep_href_link(FILENAME_WISHLIST)); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?break; // remove item from the wishlist ///// CHANGES TO case 'remove_wishlist' BY DREAMSCAPE ///// ? ? ?case 'remove_wishlist' : ? ? ? ? ? ? ? ? ? ? ? ? ? ? tep_db_query("delete from " . TABLE_WISHLIST . " where products_id = '" . $HTTP_GET_VARS['pid'] . "' and customers_id = '" . $customer_id . "'"); ? ? ? ? ? ? ? ? ? ? ? ? ? ?tep_redirect(tep_href_link(FILENAME_WISHLIST)); ? ? ? ? ? ? ? ? ? ? ? ? ? ? break; ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?// performed by the 'buy now' button in product listings and review page ? ? ?case 'buy_now' : ? ? ? ?if (tep_session_is_registered('customer_id')) { tep_db_query("delete from " . TABLE_WISHLIST . " WHERE customers_id=$customer_id AND products_id=$products_id"); } ? ? ? ? if (tep_has_product_attributes($HTTP_GET_VARS['products_id'])) { ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?tep_redirect(tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $HTTP_GET_VARS['products_id'], 'NONSSL')); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?} else { ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?$cart->add_cart($HTTP_GET_VARS['products_id'], $cart->get_quantity($HTTP_GET_VARS['products_id'])+1); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?tep_redirect(tep_href_link(FILENAME_WISHLIST)); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?} ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?break; ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?} ?} //end of wishlist I get an error Fatal error: Call to undefined function: tep_not_null() in xxxxxxxxxx\catalog\index.php on line 17 I'M using MS2 :(
  21. It's to allow purchasers to buy items by making monthly payments, sorta like lay-a-way, same difference. I have two customers that need to use this mod if I can get this to work.
  22. I had a problem too, turns out I hadn't upgraded the admin section of the newer files, the only thing I can advise is to double check all your file coding in all the files and make sure you don't over write some of the importent files like configure.php, application_top.php, etc. Go thru each of the files provided and use the coding when it's there, do a search for "Live, Chat" etc. I have it working on both sides admin and user, seems to be working ok now.
  23. Yes I did, I also think it's a bad idea to supply another configure.php for the admin section, JMO, a text file with any updates yes, but I didn't see anything in yours to add or change.
  24. I had the same problem, but recheck your code, make sure it's all done right, might also create another poll, mine started working ok after I did that.
×
×
  • Create New...