Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

graeme john

Pioneers
  • Posts

    44
  • Joined

  • Last visited

Profile Information

  • Real Name
    graeme belle

graeme john's Achievements

  1. I had a few formatting problems partly due to my layout but mostly with IE-FF differences. One thing I did notice, with this installed and using modules other than paypal there are a couple of orphaned <divs> laying around. My solution was to include them in the php statement; <tr> <?php if (is_array($payment_modules->modules)) { echo $payment_modules->process_button(); } if ($GLOBALS['payment'] == 'paypal_standard') { echo '<td align="right" valign="top" class="main"><div id="warningdiv"> <div id="confirmbutton">'; echo tep_image_submit('button_to_paypal.gif', IMAGE_BUTTON_PAY_NOW) . '</div>' . "\n"; print '<div id="hideimage">' . TEXT_PAYPAL_WARNING . '<br><br><span style="padding-left:350px"><a href="#" onClick="showDiv(\'hideimage\');return false;">'. TEXT_PAYPAL_WARNING_CONFIRM . '</a></span></div></div>'; } else {echo '<td align="right" class="main">' . tep_image_submit('button_confirm_order.gif', IMAGE_BUTTON_CONFIRM_ORDER) . "\n";} ?> </td> </tr> I also replaced define('TEXT_PAYPAL_WARNING_CONFIRM', 'Yes I understand this, I will follow these instructions after payment.'); with define('TEXT_PAYPAL_WARNING_CONFIRM', '<b>' . tep_image_button('button_understand.gif', IMAGE_BUTTON_UNDERSTAND) . '</b>'); as an image button was more intuitive for me (you need to make your own button though). Hope this may help someone. Take a look here if interested (please, no dummy orders). Kudos to the author, very effective. G
  2. I have the same problem, username incorrect and not saving. I just keep updating hoping eventually it will work itself out. I have tried the sitemonitor_configure.php route and it makes no difference
  3. http://www.mydollyandme.com.au (col right) been using it for a couple of years, no problems.
  4. Try this contrib Folder Share, http://addons.oscommerce.com/info/4866 could supply a solution for your problem.
  5. use phpmyadmin to change the customer_newsletter field to 2 for every customer that has a customer_newsletter = 1. UPDATE customers SET customers_newsletter = '2' where customers_newsletter = '1' Make an account for yourself in your shop admin and set it to receive the newsletter - test away. After your testing is complete, you can change your customer newsletter subscriptions back by using the following query. UPDATE customers SET customers_newsletter = '1' where customers_newsletter = '2'
  6. try replacing <?php echo stripslashes($product_info['products_description']); ?> with <?php eval (' ?> ' . $product_info['products_description'] . ' <?php '); ?> in product_info.php you should read up on the negatives prior to use. really helps being able to add php tags in the product description - and excerpt from my prod desc (in edit prod in admin): <!-- Start Product Description //--> <?php echo TEXT_PROD_DESCRIPTION_MATERIALS; ?> <ul> <li> Book is heavy board, strap is plastic </li> </ul> <?php echo TEXT_PROD_DESCRIPTION_INCLUDES; ?> <ul> <li> One Buggy Buddie book with rattle on front cover and strap on side </li> </ul> <!-- End Product Description //-->
  7. Thought this may help someone else. After install (All_Customers_2_1d) I received the ubiquitious CSV string empty. Couldn't find any suggestions that worked so the old trial and error turned up that by moving require('includes/application_top.php'); to before // entry for bouncing csv string back as file // Turn on output buffering solved the problem for me. I would be interested if anyone could tell me how to get an english date D-M-Y for the date input in all_customers.php instead of M-D-Y.
  8. I installed "Google Base Froogle Data Feeder v1.00" straight out of the box using rewrite. I should add that I have installed over 130 other contributions and made dozens of other mods. Incompatibilities do crop up occasionaly, maybe this is the reverse, a compatibility?. graeme
  9. Yes, "Google Base Froogle Data Feeder v1.00 - http://addons.oscommerce.com/info/4513" graeme
  10. I use the GoogleFeeder_V_2.4 with ULTIMATE Seo Urls 5 - by FWR Media and the URL's in my feed.txt are correct "http://www.mydollyandme.com.au/21australian-traffic-signs-p-121.html 21Australian Traffic Signs This is" etc. exactly as shown in the URL bar.
  11. This I understand, I couldn't see anything either, but as I have never installed "Ultimate SEO URLs by Chemo" and have checked the database line by line for references to it, I'm stumped. The changes occur every time. Maybe in time I will find out why. Thanks for the reply and the contribution, it's great. graeme
  12. I have an interesting problem. "Google Base Froogle Data Feeder v1.00" installed without a hitch, set ftp to 0 and SEO URL to true. Got a clean feed.txt i.e. (http://www.mydollyandme.com.au/21australian-traffic-signs-p-121.html 21Australian Traffic Signs ...... etc) the only visible problem was the feed.txt appends rather that overwrites, this was not a problem. Then I noticed my URLs had changed in the browser URL bar. From http://www.mydollyandme.com.au/21australian-traffic-signs-p-121.html To: http://www.mydollyandme.com.au/product_info.php?21australian-traffic-signs-p-121.html A little research revealed that my database which has "ULTIMATE Seo URLs 5 - by FWR Media" installed was being overwritten/changed. "Seo URLs 5 - by FWR Media" is assigned "configuration_group_id 12955" with 12 options after running "Google Base Froogle Data Feeder v1.00","configuration_group_id 12955" still existed but was empty. A new "configuration_group_id 12957" "Ultimate SEO URLs by Chemo" had been added containing a different group to that of FWR Media. I have run this 11 times, each with the same result. I restore my database after each attempt, to reverse the changes. Any Ideas graeme
  13. just tried the v4 update, still no luck on my site. I don't think the fopen bypass works for me. Works nicely when the server has fopen enabled though, installed on a friends site, she's quite pleased. graeme
  14. Thanks for the thought Nic, still no luck though. I will wait till you get time to update, I'm getting pretty quick at cleaning, been hacked three times this year. One odd thing when testing, trying to access the personal folder, and all others that I tried http://www.mydollyandme.com.au/personal/ yielded this result http://www.mydollyandme.com.au/personal/www.mydollyandme.com.au/index.php - neat redirect to nowhere! graeme
×
×
  • Create New...