Jump to content

Dirty Butter

Moderator
  • Posts

    6,634
  • Joined

  • Last visited

  • Days Won

    139

Everything posted by Dirty Butter

  1. Can someone suggest the code needed to add the customer's chosen Shipping Method to the Invoice/Packing Slip? I'm using the USPS Shipping Module.
  2. LOL! I'm sure that will help somebody, but that won't be me. I'm much to much a Novice to try anything like that. Thanks for trying, though. :unsure:
  3. When you cleared the Cache did you do that through the admin panel or through ftp? This is where my first install hung up and thankfully I caught the failed notices from my ftp software. I had to go into cache and delete what I could manually. Somethings took more than one try and some refused to be deleted at all. The next problem was within the Cache folder is a Skins folder. I couldn't get it to delete to save my life. I had to rename it and then upload the files again to make it work. If there is a problem with an upgrade it always happens to me. 5.0.5 was really buggy so I went back to5.0.4 but other than the trouble I had listed above, there were no other problems with 5.0.6. I've found the easiest and fastest way to delete Cache before an install is to do it from the File Manager in cpanel. I am getting the same error in my logfile. I get keeping blank page when I try to open my store. I can access admin panel, but store front is not running. Anyone, who can help me out with this problem? Greetings, Marcel It must have something to do with the language files. Try changing the default language of your store to English and see if it works that way. I tried it, but no change :-( I was hoping. I noticed your website has an .nl domain, and I know CC5 is having some language file problems.
  4. This is the big problem. I, too, needed a long time to understand CC5, so I went through several offline test sites concurrent with my online v4 site. When I had it all set to suit me there was no way that I could figure out to get the v5 site data synched with the online v4 site. So I had to just use what I had learned to upgrade the v4 site and then try to get the upgraded site set up like the test site. There's GOT to be a better way!
  5. When you cleared the Cache did you do that through the admin panel or through ftp? This is where my first install hung up and thankfully I caught the failed notices from my ftp software. I had to go into cache and delete what I could manually. Somethings took more than one try and some refused to be deleted at all. The next problem was within the Cache folder is a Skins folder. I couldn't get it to delete to save my life. I had to rename it and then upload the files again to make it work. If there is a problem with an upgrade it always happens to me. 5.0.5 was really buggy so I went back to5.0.4 but other than the trouble I had listed above, there were no other problems with 5.0.6. I've found the easiest and fastest way to delete Cache before an install is to do it from the File Manager in cpanel. I am getting the same error in my logfile. I get keeping blank page when I try to open my store. I can access admin panel, but store front is not running. Anyone, who can help me out with this problem? Greetings, Marcel It must have something to do with the language files. Try changing the default language of your store to English and see if it works that way.
  6. How do you extract just one table out of an SQL backup file?
  7. I don't see anything that looks like it could be Amazon in the list.
  8. When you cleared the Cache did you do that through the admin panel or through ftp? This is where my first install hung up and thankfully I caught the failed notices from my ftp software. I had to go into cache and delete what I could manually. Somethings took more than one try and some refused to be deleted at all. The next problem was within the Cache folder is a Skins folder. I couldn't get it to delete to save my life. I had to rename it and then upload the files again to make it work. If there is a problem with an upgrade it always happens to me. 5.0.5 was really buggy so I went back to5.0.4 but other than the trouble I had listed above, there were no other problems with 5.0.6. I've found the easiest and fastest way to delete Cache before an install is to do it from the File Manager in cpanel.
  9. OK. I rebooted the browser, deleted the old zip file and downloaded 5.0.6zip again. Then I cleared cache from cpanel and extracted the new zip. This time it DID show 5.0.6 on the setup page.
  10. That's the only way I know how to do an upgrade/update. I cleared cache, uploaded the 5.0.6zip, extracted it, and ran setup. How else can it be done???
  11. I just downloaded, extracted, and started to install again. Setup page STILL is wrong. See attached screenshot.
  12. Sorry, Al, but I just downloaded the "new" 5.0.6 zip and it STILL shows Upgrade to 5.0.5 on the Setup screen! I'm gun shy and will wait for this to be fixed before I install it.
  13. This should be interesting. I reverted to my backed up files until this is straightened out.
  14. OH NO! I tried 5.0.6 on our clean install site and it just installed v5.0.5 again! I thought maybe they just failed to change the name on the Setup installation page, but after it installed the Dashboard Overview still shows it as 5.0.5.
  15. It's here! And the difference file is huge! Do we need to clear cache to upgrade to 5.0.6 like we did for 5.0.5?
  16. I ended up buying Goober's Product Description Tab Plugin, and it works perfectly. Not only can I create a tab for all the extra images I want, but I also used a tab for Notes that I didn't enable. That way I have a place for any hidden product information that only I can access from the Product tabs in Admin.
  17. We're having a problem with the Product timestamps updating constantly, which is certainly slowing our site down. So check to see if yours are updating.
  18. Viola is the one who will know, but until she shows up to explain it, you might want to look at the end of this thread: random sales item directions
  19. Well, that was the easiest thing it could have been. I took a look at these lines in modules/shipping/USPS/shipping.class.php trying to understand how CC figures the weight, and I noticed the kg/lb "conversion factor". private function weightLbsOz(){ $weight = $this->_basket['weight']; $weight += ($this->_settings['packagingWeight'] > 0) ? $this->_settings['packagingWeight'] : 0; if(strtolower($GLOBALS['config']->get('config','product_weight_unit'))=="kg"){ $weight *= 2.2046; } $this->_decimalWeight = $weight; $this->_lbs = floor($weight); $this->_oz = ceil(($weight - $this->_lbs)*16); } I know the By_Weight module doesn't have that in it, but try (10,4) just to see what happens, since the USPS module uses 4 decimal places and then rounds.
  20. You might try hard coding the url in this line of your skin/template/main.php <p class="logo"><a href="{$STORE_URL}/index.php"><img src="{$STORE_URL}/images/logos/{$SKIN_FOLDER}-{$SKIN_SUBSET}.php" alt="{$META_TITLE}" /></a></p> Be sure to back up your copy of main.php before trying thjs, as I'm a novice. Thank you, I will give it a try. Novice or not, you have your head on right because it worked.... just for anyone else's info.. used this code. <p class="logo"><a href="http://www.mysitesname.com"><img src="{$STORE_URL}/images/logos/{$SKIN_FOLDER}-{$SKIN_SUBSET}.php" alt="{$META_TITLE}" /></a></p> Fantastic! I'm glad it worked.
  21. Sorry, but I use pounds. I had set .625 back in v3 as the equivalent to 10 ounces, our default weight. So when I changed to v5 I changed the number of decimal places to keep from having to redo everything else. Good luck with the decimal places. I think that will fix it, unless there's another setting in the Shipping Module structure you need to change. I don't remember that I had to do that, though.
  22. Try changing the value in product_weight column of the Structure of the inventory table in your database. Right now it must be set to (some number,2) - that gives 2 decimal places. Change it to 3. Mine is set to (10,3).
  23. This has been going on for some time on a clean install v5.0.5 and a v4x upgrade to v5.0.5 site. Something is triggering the timestamp to update on each product over and over again. It cycles through all the products repeatedly. I'm afraid if I don't find a way to stop this soon my host will holler, not to mention the fact that it slows everything down! I've included a screenshot, so you can see what I mean. Can someone suggest what could be causing this and how to fix it?
  24. http://bugs.cubecart.com/view_all_bug_page.php
×
×
  • Create New...