-
Content count
123 -
Joined
-
Last visited
Profile Information
-
Real Name
Mark P.
- Website
-
BoulderDash started following Kirod
-
Kirod started following BoulderDash
-
Seperate Pricing Per Customer v3.5
BoulderDash replied to scendent's topic in General Add-Ons Support
Hello, Ever since adding this most excellent osC Contribution... whenever anyone logs in, they are sent to an unsecure (http) "/account.php" page. My question is this: - How can I force osC to send people to a secure (https) "/account.php" page? Thank you so much in advance, BD -
[Contribution] More_pics_6 v1.1 For osC 2.2 MS2
BoulderDash replied to surfalot's topic in General Add-Ons Support
So, It should be added above this: // BOF: More Pics 6 if (isset($HTTP_POST_VARS['products_subimage1']) && tep_not_null($HTTP_POST_VARS['products_subimage1']) && ($HTTP_POST_VARS['products_subimage1'] != 'none')) { $sql_data_array['products_subimage1'] = tep_db_prepare_input($HTTP_POST_VARS['products_subimage1']); } etc. etc. etc. Thank you, BD -
[Contribution] More_pics_6 v1.1 For osC 2.2 MS2
BoulderDash replied to surfalot's topic in General Add-Ons Support
Is this needed after downloading "more_pics_6_v1.1b" or is it already in that release (which I'll be putting in later tonight)? Thanks, BD -
[Contribution] PDF data-sheet maker v.1.1
BoulderDash replied to alverman's topic in General Add-Ons Support
Well, Here goes: I just installed this Contribution and am getting these errors: All I can add is that the file it's pointing to is definitely there... can anyone give me a hand and let me know why PDF data-sheet maker is not finding it? Thank you so much in advance, BD -
Seperate Pricing Per Customer v3.5
BoulderDash replied to scendent's topic in General Add-Ons Support
Hmm, When I change the above code and hardcode the values instead, i.e.: tep_mail('Me', 'me@website.com', 'Company account created', $alert_email_text, 'Me', 'me@website.com'); It works. I wonder what's causing it to not work when it's not hardcoded. I won't lose too much sleep though, since this workaround "works." Thanks JZ! BD -
Seperate Pricing Per Customer v3.5
BoulderDash replied to scendent's topic in General Add-Ons Support
Hi there, Everything is working great... except for the fact that I am not getting Store Owner notifications when someone populates the "tax id" field when creating their account. Nothing is sent to the Store Owner (me) letting me know someone has signed up with a "tax id". I've read back to page 60 and haven't found an answer... can anyone tell me where to look to correct this (and get the notification sent)? Thank you, BD -
Hello, One last thing, if anyone finds the time, note this code: // Company PO Account start // Added c.customers_allow_purchase_order_entry to query. $customers_query = tep_db_query("select c.customers_id, c.customers_gender, c.customers_firstname, c.customers_lastname, c.customers_dob, c.customers_credit_account_status, c.customers_credit_amount, c.customers_credit_status, c.customers_credit_left, c.customers_email_address, a.entry_company, a.entry_street_address, a.entry_suburb, a.entry_postcode, a.entry_city, a.entry_state, a.entry_zone_id, a.entry_country_id, c.customers_telephone, c.customers_fax, c.customers_newsletter, c.customers_default_address_id from " . TABLE_CUSTOMERS . " c left join " . TABLE_ADDRESS_BOOK . " a on c.customers_default_address_id = a.address_book_id where a.customers_id = c.customers_id and c.customers_id = '" . (int)$HTTP_GET_VARS['cID'] . "'"); // Company PO Account end The comments say "Added c.customers_allow_purchase_order_entry to query." However, I do not see that "c.customers_allow_purchase_order_entry" is actually in the query below it... shouldn't it be? Is that a bug? I really think that this osC Contribution is the solution to my Purchase Order need, it's just a bit confusing to me (unlike the 20 other osC Contributions I've placed this past week). Thanks again, BD
-
New UPS XML Shipping Module available
BoulderDash replied to torinwalker's topic in General Add-Ons Support
Hello, Are you saying that this statement is a bug: $this->host = ((MODULE_SHIPPING_UPSXML_RATES_TEST_MODE == 'Test') ? 'wwwcie.ups.com' : 'wwwcie.ups.com'); And that it should be this: $this->host = ((MODULE_SHIPPING_UPSXML_RATES_TEST_MODE == 'Test') ? 'wwwcie.ups.com' : 'www.ups.com'); Or is that only to be changed for UK use? Thank you, BD -
Hey there, I have downloaded Purchase Order, but believe that the installation instructions are not as clear as they could be (to me, anyway). For example, in the latest download instructions, what am I supposed to do with this line 239 // Company PO Account start // Added c.customers_allow_purchase_order_entry to query. $customers_query = tep_db_query("select c.customers_id, c.customers_gender, c.customers_firstname, c.customers_lastname, c.customers_dob, c.customers_credit_account_status, c.customers_credit_amount, c.customers_credit_status, c.customers_credit_left, c.customers_email_address, a.entry_company, a.entry_street_address, a.entry_suburb, a.entry_postcode, a.entry_city, a.entry_state, a.entry_zone_id, a.entry_country_id, c.customers_telephone, c.customers_fax, c.customers_newsletter, c.customers_default_address_id from " . TABLE_CUSTOMERS . " c left join " . TABLE_ADDRESS_BOOK . " a on c.customers_default_address_id = a.address_book_id where a.customers_id = c.customers_id and c.customers_id = '" . (int)$HTTP_GET_VARS['cID'] . "'"); // Company PO Account end The instructions DO NOT say to find any code to put this after or before. It is confusing as to what I am supposed to do with this information. Can someone please specify? Most of the other instructions tell me where to place code. In the example above it says nothing... the code is simply sitting in the instructions without telling me where to place it. So is this code: around line 519 // Purchase Order Section ?> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '1', '10'); ?></td> </tr> <tr> <td class="formAreaTitle">Credit Account</td> </tr> <tr> <td class="formArea"> <table border="0" cellspacing="2" cellpadding="2"> <tr> <td class="main" align="left" width="35%">Allow Purchase Orders Payments: </td> <td class="main" width="25%"> <?php echo tep_draw_pull_down_menu('customers_credit_account_status', $credit_array, (($cInfo->customers_credit_account_status == '1') ? '1' : '0')); ?> <td class="main" align="left" width="20%">Credit Limit:</td> <td class="main" align="left" width="35%"> <?php echo tep_draw_input_field('customers_credit_amount', $cInfo->customers_credit_amount, 'maxlength="9" READONLY'); ?> </tr> <tr> <td class="main" align="left" width="35%">Credit Account Status: </td> <td class="main" width="15%"> <?php echo tep_draw_pull_down_menu('customers_credit_status', $credit_array, (($cInfo->customers_credit_status == '1') ? '1' : '0')); ?> <td class="main" align="left" width="20%">Available Credit:</td> <td> <?php echo tep_draw_input_field('customers_credit_left', $cInfo->customers_credit_left, 'maxlength="9" READONLY'); ?> </td> </tr> <tr> <td class="main" align="left" width="35%"></td> <td class="main" width="15%"> <td class="main" align="left" width="20%">Increase Credit Limit:</td> <td> <?php echo tep_draw_input_field('increase_credit',' ', 'maxlength="9"'); ?> </td> </tr> <tr> <td class="main" align="left" width="35%"></td> <td class="main" width="15%"> <td class="main" align="left" width="20%">Payment Credit:</td> <td> <?php echo tep_draw_input_field('payment_credit',' ', 'maxlength="9"'); ?> </td> </tr> <?php ?> </table> <?php // End purchase order No instructions are given as to what to do with this code. Are we just supposed to throw it in at the line specified... because that would be hard to predict exactly since line numbers change when other contributions are added. Can anyone tell me what to look for to place these two statements after? I really appreciate the time penfold_99 must have taken to make this osC Contribution... but without proper instructions, it's a risk to me to install. Thank to anyone in advance if you have time to clarify for me! BD
-
[CONTRIBUTION] Ultimate SEO URLs v2.1 - by Chemo
BoulderDash replied to spidometrs's topic in General Add-Ons Support
Hmm... well, that's now gone and has never come back (my guess is that it was installing itself [by deflating?]). Any way, this is working great. I only have two other questions: 1) Can the "-p-30" of the URL be removed (it's not always a "30," obviously)? For example, can: http://www.mysite.com/extension-cable-chicago-ivdm7002-p-30.html be made to return as: http://www.mysite.com/extension-cable-chicago-ivdm7002.html I just don't see a need for it. 2) Since "Filter Short Word" is no longer a true/false setting... is it valid to have a "0" there to make it "false?" Or, would that misconfigure it and it should be a value of "1" to make it "false?" Thanks a ton! I know Chemo isn't allowed to respond, but if your'e reading buddy - thanks! BD -
[CONTRIBUTION] Ultimate SEO URLs v2.1 - by Chemo
BoulderDash replied to spidometrs's topic in General Add-Ons Support
Anyone come across this error before: Fatal error: Call to undefined function: gzdeflate() in /usr1/digirati/www.mysite.com/includes/classes/seo.class.php on line 1602 I installed a fresh copy of Ultimate SEO URLs 2.1d just now. Thank you, BD -
New UPS XML Shipping Module available
BoulderDash replied to torinwalker's topic in General Add-Ons Support
Hey JanZ, Thank you... I suppose I'll stop with only the installation of "UPSXML_v1.1.5" and not worry about the "UPS XML Rates v1.1.5a" fix. Thank you! -
New UPS XML Shipping Module available
BoulderDash replied to torinwalker's topic in General Add-Ons Support
Hi there, I'm trying to add the "UPS XML Rates v1.1.5a" fix... but *do not* see the text Michiel Heeringa says to edit: Neither of his two statements are found in /admin/categories.php. This is a fresh install and I have only placed Separate Pricing Per Customer onto my osCommerce installation. Can someone please teel me what Michiel Heeringa is talking about? Thank you, Mark -
Seperate Pricing Per Customer v3.5
BoulderDash replied to scendent's topic in General Add-Ons Support
Thank you so much, JanZ! Here we go... BD -
Seperate Pricing Per Customer v3.5
BoulderDash replied to scendent's topic in General Add-Ons Support
Hey there, 91 pages are a ton to sort through... and I haven't been able to find the 'Pictorial Overview of Separate Pricing' as stated here: Since it is no longer available here: Seperate Pricing Per Customer Also, if I want the newest version, should I download this one: Version 4.1.1.: Completo + Idioma Espa?ol Because I don't see another download that says it has the 4.1.1 complete package. Thanks so much if you guys have time for these two questions, BD