Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

towih_fastdogs

Archived
  • Posts

    31
  • Joined

  • Last visited

Profile Information

  • Real Name
    Ruthanna Birchfield

towih_fastdogs's Achievements

  1. After reviewing the installation instructions for the Orders-at-a-glace and Comments-at-a-glance contributions I realized that I had to add something back to the admin/includes/header.php file that was overwritten with your contrib. Here is what I had to add: FIND this code at the top of admin/includes/header.php: --------------------------------------------- if ($messageStack->size > 0) { echo $messageStack->output(); } ?> --------------------------------------------- ADD this code immediately after it: ---------------------------------------------- <div id="dhtmltooltip"></div> <script type="text/javascript"> /*********************************************** * Cool DHTML tooltip script- © Dynamic Drive DHTML code library (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code ***********************************************/ var offsetxpoint=-60 //Customize x offset of tooltip var offsetypoint=20 //Customize y offset of tooltip var ie=document.all var ns6=document.getElementById && !document.all var enabletip=false if (ie||ns6) var tipobj=document.all? document.all["dhtmltooltip"] : document.getElementById? document.getElementById("dhtmltooltip") : "" function ietruebody(){ return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body } function ddrivetip(thetext, thecolor, thewidth){ if (ns6||ie){ if (typeof thewidth!="undefined") tipobj.style.width=thewidth+"px" if (typeof thecolor!="undefined" && thecolor!="") tipobj.style.backgroundColor=thecolor tipobj.innerHTML=thetext enabletip=true return false } } function positiontip(e){ if (enabletip){ var curX=(ns6)?e.pageX : event.clientX+ietruebody().scrollLeft; var curY=(ns6)?e.pageY : event.clientY+ietruebody().scrollTop; //Find out how close the mouse is to the corner of the window var rightedge=ie&&!window.opera? ietruebody().clientWidth-event.clientX-offsetxpoint : window.innerWidth-e.clientX-offsetxpoint-20 var bottomedge=ie&&!window.opera? ietruebody().clientHeight-event.clientY-offsetypoint : window.innerHeight-e.clientY-offsetypoint-20 var leftedge=(offsetxpoint<0)? offsetxpoint*(-1) : -1000 //if the horizontal distance isn't enough to accomodate the width of the context menu if (rightedge<tipobj.offsetWidth) //move the horizontal position of the menu to the left by it's width tipobj.style.left=ie? ietruebody().scrollLeft+event.clientX-tipobj.offsetWidth+"px" : window.pageXOffset+e.clientX-tipobj.offsetWidth+"px" else if (curX<leftedge) tipobj.style.left="5px" else //position the horizontal position of the menu where the mouse is positioned tipobj.style.left=curX+offsetxpoint+"px" //same concept with the vertical position if (bottomedge<tipobj.offsetHeight) tipobj.style.top=ie? ietruebody().scrollTop+event.clientY-tipobj.offsetHeight-offsetypoint+"px" : window.pageYOffset+e.clientY-tipobj.offsetHeight-offsetypoint+"px" else tipobj.style.top=curY+offsetypoint+"px" tipobj.style.visibility="visible" } } function hideddrivetip(){ if (ns6||ie){ enabletip=false tipobj.style.visibility="hidden" tipobj.style.left="-1000px" tipobj.style.backgroundColor='' tipobj.style.width='' } } document.onmousemove=positiontip </script> HOWEVER - still no success in getting the function to work!! Help!! :blink:
  2. Hello - wonderful contribution - thank you!! I have the following contrib's added: Comments-at-a-glance: http://addons.oscommerce.com/info/3370/v,22 Orders-at-a-glance: http://addons.oscommerce.com/info/3454 After installing your Mindsparx admin contribution, the talk bubbles are still there, there are no error messages on the orders page, but nothing happens when I roll over the talk bubbles. Any help would be greatly appreciated - I use this "at a glance" function ALL the time, it saves quite a few steps - Thanks!!
  3. Used install instruction dated 03 Jan 2008 which has the code addition to admin/headers.php going BEFORE the ?>. Installing this way causes a parse error, unexpected "<". Putting the code AFTER the ?> of course remedies the error, however the talk bubble doesn't show up in Admin. putting the code BEFORE the ?> as directed: [color="#A0522D"]if ($messageStack->size > 0) { echo $messageStack->output(); } <div id="dhtmltooltip"></div> <script type="text/javascript"> [/color] /*********************************************** * Cool DHTML tooltip script- © Dynamic Drive DHTML code library (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit Dynamic Drive at [url="http://www.dynamicdrive.com/"]http://www.dynamicdrive.com/[/url] for full source code ***********************************************/ var offsetxpoint=-60 //Customize x offset of tooltip var offsetypoint=20 //Customize y offset of tooltip var ie=document.all var ns6=document.getElementById && !document.all var enabletip=false if (ie||ns6) var tipobj=document.all? document.all["dhtmltooltip"] : document.getElementById? document.getElementById("dhtmltooltip") : "" function ietruebody(){ return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body } function ddrivetip(thetext, thecolor, thewidth){ if (ns6||ie){ if (typeof thewidth!="undefined") tipobj.style.width=thewidth+"px" if (typeof thecolor!="undefined" && thecolor!="") tipobj.style.backgroundColor=thecolor tipobj.innerHTML=thetext enabletip=true return false } } function positiontip(e){ if (enabletip){ var curX=(ns6)?e.pageX : event.clientX+ietruebody().scrollLeft; var curY=(ns6)?e.pageY : event.clientY+ietruebody().scrollTop; //Find out how close the mouse is to the corner of the window var rightedge=ie&&!window.opera? ietruebody().clientWidth-event.clientX-offsetxpoint : window.innerWidth-e.clientX-offsetxpoint-20 var bottomedge=ie&&!window.opera? ietruebody().clientHeight-event.clientY-offsetypoint : window.innerHeight-e.clientY-offsetypoint-20 var leftedge=(offsetxpoint<0)? offsetxpoint*(-1) : -1000 //if the horizontal distance isn't enough to accomodate the width of the context menu if (rightedge<tipobj.offsetWidth) //move the horizontal position of the menu to the left by it's width tipobj.style.left=ie? ietruebody().scrollLeft+event.clientX-tipobj.offsetWidth+"px" : window.pageXOffset+e.clientX-tipobj.offsetWidth+"px" else if (curX<leftedge) tipobj.style.left="5px" else //position the horizontal position of the menu where the mouse is positioned tipobj.style.left=curX+offsetxpoint+"px" //same concept with the vertical position if (bottomedge<tipobj.offsetHeight) tipobj.style.top=ie? ietruebody().scrollTop+event.clientY-tipobj.offsetHeight-offsetypoint+"px" : window.pageYOffset+e.clientY-tipobj.offsetHeight-offsetypoint+"px" else tipobj.style.top=curY+offsetypoint+"px" tipobj.style.visibility="visible" } } function hideddrivetip(){ if (ns6||ie){ enabletip=false tipobj.style.visibility="hidden" tipobj.style.left="-1000px" tipobj.style.backgroundColor='' tipobj.style.width='' } } document.onmousemove=positiontip </script> ?> this produces this error: Parse error: parse error, unexpected '<' in /home/content/mystore/html/admin/includes/header.php on line 18 (line 18 begins with: <div id="dhtmltooltip"></div>) putting the code AFTER the ?> (as the install instructions on previous versions dictated): [color="#A0522D"]if ($messageStack->size > 0) { echo $messageStack->output(); } ?> <div id="dhtmltooltip"></div> <script type="text/javascript"> [/color] /*********************************************** * Cool DHTML tooltip script- © Dynamic Drive DHTML code library (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit Dynamic Drive at [url="http://www.dynamicdrive.com/"]http://www.dynamicdrive.com/[/url] for full source code ***********************************************/ var offsetxpoint=-60 //Customize x offset of tooltip var offsetypoint=20 //Customize y offset of tooltip var ie=document.all var ns6=document.getElementById && !document.all var enabletip=false if (ie||ns6) var tipobj=document.all? document.all["dhtmltooltip"] : document.getElementById? document.getElementById("dhtmltooltip") : "" function ietruebody(){ return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body } function ddrivetip(thetext, thecolor, thewidth){ if (ns6||ie){ if (typeof thewidth!="undefined") tipobj.style.width=thewidth+"px" if (typeof thecolor!="undefined" && thecolor!="") tipobj.style.backgroundColor=thecolor tipobj.innerHTML=thetext enabletip=true return false } } function positiontip(e){ if (enabletip){ var curX=(ns6)?e.pageX : event.clientX+ietruebody().scrollLeft; var curY=(ns6)?e.pageY : event.clientY+ietruebody().scrollTop; //Find out how close the mouse is to the corner of the window var rightedge=ie&&!window.opera? ietruebody().clientWidth-event.clientX-offsetxpoint : window.innerWidth-e.clientX-offsetxpoint-20 var bottomedge=ie&&!window.opera? ietruebody().clientHeight-event.clientY-offsetypoint : window.innerHeight-e.clientY-offsetypoint-20 var leftedge=(offsetxpoint<0)? offsetxpoint*(-1) : -1000 //if the horizontal distance isn't enough to accomodate the width of the context menu if (rightedge<tipobj.offsetWidth) //move the horizontal position of the menu to the left by it's width tipobj.style.left=ie? ietruebody().scrollLeft+event.clientX-tipobj.offsetWidth+"px" : window.pageXOffset+e.clientX-tipobj.offsetWidth+"px" else if (curX<leftedge) tipobj.style.left="5px" else //position the horizontal position of the menu where the mouse is positioned tipobj.style.left=curX+offsetxpoint+"px" //same concept with the vertical position if (bottomedge<tipobj.offsetHeight) tipobj.style.top=ie? ietruebody().scrollTop+event.clientY-tipobj.offsetHeight-offsetypoint+"px" : window.pageYOffset+e.clientY-tipobj.offsetHeight-offsetypoint+"px" else tipobj.style.top=curY+offsetypoint+"px" tipobj.style.visibility="visible" } } function hideddrivetip(){ if (ns6||ie){ enabletip=false tipobj.style.visibility="hidden" tipobj.style.left="-1000px" tipobj.style.backgroundColor='' tipobj.style.width='' } } document.onmousemove=positiontip </script> This produces no error, but no talk bubble either! Thanks in advance for any suggestions!
  4. Figured out the fix, although I'm not sure why..... had to set Cache Control to "False" instead of True. Now all the products are showing up.
  5. My products aren't listed anymore in the store! Excellent contrib - had it installed and running perfectly for +/- 2 years on my store. My site had so many contribs that eventually I lost track of everything I had added & changed! A recent (unrelated) critical error prompted me to "start over" with a fresh install of osC. I've of course modified the look of the store from the stock version. *I uploaded the database from my previous store* and have added ONLY the following contribs: usps_labels_2.0.4 Remove Default Images product_listing_columns_2_2_5 order_editor_5_0_61 Multiple_Products_Manager_2.5 EmailOrderText_1_4_FCK AJAX-AttributeManager-V2.7.1 Everything was running smooth until I added this AJAX contrib. Admin side looks perfect, it's showing all of the attributes on my old products perfectly. I did originally get the "line 123" error but changed the code in the session.php file as mentioned above and corrected it. :'( BUT.....WHEN YOU VISIT THE STORE, THE ENTIRE CATEGORIES BOX IS GONE! No products are showing up at all! They are there in the admin side, but not showing up in the store. :'( When you first visit the store, they are there. Then once you select ANY page or link, the categories box disappears. Which is telling me that once the session is starting, the products are disappearing. Anyone out there that can help?! I've searched the forums for two days now and can't find the answer.
  6. First - thank YOU for listing the code above to add to authorizenet_cc_aim.php, I've been searching the forums for two days now and this did the trick! Second - to answer your question about the curl program location & goDaddy - I changed the default location from "/usr/bin/curl" to just "curl" and my transactions are now processing correctly. Hope this helps!! ~Ruthanna Birchfield goCoursing.com
  7. Thanks! I implemented the last one - Force Register Globals On. I also disabled the PWA contribution since it seems that there are issues with it (I had planned on removing it anyway). Still no luck! However...... after going back and double checking all of the files involved I realized that the permissions on configure.php were still set at read only (444) so even though I had made this change in that file earlier today, the change was never saved.... define('DIR_FS_CATALOG', dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/'); Usually that's the case right..... something very basic that's right in front of you... So reminder to anyone making this change - make sure your permissions are set to let you make it! Thanks for a great contrib and for the continued support of it! ~Ruthanna www.goCoursing.com
  8. receiving this error message in checkout_payment after selecting Paypal Express: PayPal Express Checkout IPN module installation incomplete! There should be XML files located in http://www.gocoursing.com/includes/ec_xml/ ! all files have been uploaded to includes/ec_xml diagnostics show no problems or errors Paypal Express is the first payment option listed I have read through this support thread and found mention of needing the Register Globals patch. If this is my problem, can you direct me to the exact Register Globals contrib to use? There are several listed in the contribs section. Thanks,
  9. Need to install this contrib - but cannot tell from all the bugfixes and corrections where the latest FULL VERSION is? Thanks -
  10. Nevermind! It was coupled with an email issue I was having..... Now that I fixed the email issue, the coupon codes are being generated perfectly!
  11. I've installed Easy Discount and Easy Coupons V2.2. I've doubled check the installation twice. No errors are occuring anywhere, but no coupon codes are being generated at all. Site is configured as Active/Automatic.... Anyone experience this? Thanks! ~Ruthanna
  12. hi~ I need to remove the extra price columns, as well as Tax and SKU# from html_invoice.php. I've read through the majority of the contrib support threads but can't find exactly how to do it! any help would be greatly appreciated - and thanks for such a fantastic contribution! ~Ruthanna
  13. search results not being narrowed by search criteria selected in drop down box of attributes! i.e. selecting a specific background color pulls ALL background colors, not just the one selected. HELP! :(
  14. Quick question - if a product's price is set to zero, and the attributes carry the actual price, is there any way to hide or disable the prefix from appearing? I've tried leaving the prefix off and just putting the price on the attribute, and it looks perfect in the drop down box on the site, but when you add one of them to the cart, it turns the price into a NEGATIVE. Sorry if this has been addressed before, I've been reading the forum for hours now and can't seem to locate an answer. ~Ruthanna~ :blink:
  15. Uploaded files as directed - nothing happened! I assume that since I disabled Quick Search and Advanced Search early on in my installation that this is the reason. I've added many modifications since these were disabled so I don't really want to reinstall those files from originals. Here's my question - Do I need to enable Quick Search and Advanced Search for this attribute to work? If so, which files should I be looking in? I though I had just commented out the search functions but even with going back into column_left.php, and others I can't seem to make the original "come back". Is there a copy of the code needed in these files JUST regarding the search functions? I guess the short version is: do I need to enable this, if so, what files do I need to be looking in and what code should I be looking for! Thanks, Ruthanna
×
×
  • Create New...