Jump to content

Laico

Member
  • Posts

    52
  • Joined

  • Last visited

Everything posted by Laico

  1. Thanks I´ve checked that but it still doesn´t work
  2. Hello My shop is running fine, but I am unable to switch it off using the "turn store off" button. Every time I try I see the "Configuration Updated" text as I should, but the store stays online. I believe all chmod settings are correct, and the database is defined correctly. Any clues ?
  3. Yes I did modify the admin mail file, but I forgot which one it is, can you tell me?
  4. Hello, When someone places a order and chooses Print order form, the admin (me) will get a e-mail. Only problem is in the mail I see this: Payment Method: Amsterdam Shipping methode: 3600AA Is there any way to fix this?
  5. I have CubeCart version 3.0.16 running in the root directory of a site, let's say http://www.x.com/ I added SSL, and have the following settings: global.inc.php contains... $glob['rootDir'] = '/home/x/public_html'; $glob['rootRel'] = '/'; $glob['storeURL'] = 'http://www.x.com/'; General Settings > Directories & Folders contains... Root SECURE Public HTML Folder = "/" Absolute SECURE URL = "http://www.x.com" So everything is set up just like the instructions. But when the user goes from an SSL-protected page to a non-SSL page, an extra "/" gets added every time to the current URL. For example, the "View Basket" page is SSL secured. The "Homepage" link on that page points to https://www.x.com/index.php But clicking on it goes to http://www.x.com//index.php?&ccUser=[string] Notice the extra /. If the user goes back and forth, there can be multiple /s. Anyone know why the extra / is getting added every time?
  6. In the CubeCart documentation, there is an article that describes how to add an SSL certificate to your CubeCart installation. It states that, for those who have their CubeCart installed within a subdirectory (e.g., http://www.example.com/store/ instead of http://www.example.com/), the value for "Absolute SECURE URL" should be https://www.example.com/store. But I tried that, after having set the Root SECURE Public HTML Folder value correctly to "/store/", and it causes lots of problems, because when a customer clicks on any of the links that should now take them to an SSL URL, the URL starts off with https://www.example.com/store/store [notice the duplicated "store/"]. But when I set the "Absolute SECURE URL" to https://www.example.com, it works fine. Anyone else notice this problem when they've done SSL? Anyone know what is going on?
  7. Afternoon All, I am setting up a site which has ten categories that can be clicked from the 'Shop by Category' section. Each category has around ten to fifteen products and thus a sub-category page appears listing all the categories. The help I am seeking is how do I make each sub-category page slightly different? I want to add an image, text description and a custom banner advertisement. The closest CC thing I have found that may resemble something I am after is at: http://oldcolorprint.com/cube4/index.php http://oldcolorprint.com/cube4/index.php?_...Cat&catId=2 http://oldcolorprint.com/cube4/index.php?_...at&catId=18 http://oldcolorprint.com/cube4/index.php?_...at&catId=40 http://oldcolorprint.com/cube4/index.php?_...at&catId=63 I only want to make the sub-category page different for all the categories I have. In the future I might want to tweak the actual category page that appears from the sub-category but I assume it may be the same procedure as what I am asking above? Thanks in advance for any help given!
  8. Afternoon All, I am setting up a site which has ten categories that can be clicked from the 'Shop by Category' section. Each category has around ten to fifteen products and thus a sub-category page appears listing all the categories. The help I am seeking is how do I make each sub-category page slightly different? I want to add an image, text description and a custom banner advertisement. The closest CC thing I have found that may resemble something I am after is at: http://oldcolorprint.com/cube4/index.php http://oldcolorprint.com/cube4/index.php?_...Cat&catId=2 http://oldcolorprint.com/cube4/index.php?_...at&catId=18 http://oldcolorprint.com/cube4/index.php?_...at&catId=40 http://oldcolorprint.com/cube4/index.php?_...at&catId=63 I only want to make the sub-category page different for all the categories I have. In the future I might want to tweak the actual category page that appears from the sub-category but I assume it may be the same procedure as what I am asking above? Thanks in advance for any help give!
  9. I'm currently researching how to do updates of all the currency values, and already discovered one module over in the .org site. But on this site I noticed that webwonderuk had posted a message concerning an automatic currency updater that they were making freely available awhile ago: http://www.cubecart.com/site/forums/index....currency+update But the "View File" link in that article doesn't work anymore. Anyone know where webwonderuk's currency update module can be found? Thanks!
  10. Am I the *only* CubeCart user experiencing this problem?! Folks, could you please check your PHP error logs (the file "error_log" in your CubeCart's root directory), and see if you are getting similar warnings as those listed in my first posting. Any CubeCart gurus out there have an idea as to what is causing these warnings? I've looked at the code in sessionStart.php, and don't have any ideas. I haven't modified any of the core code, so I can't imagine what is causing this.
  11. I've been unable to duplicate this problem on the CubeCart running on my local Web server, even though it is the exact same version. And I do not think it is specific to the hosting service, because all of my other clients and their sites are running on the same servers, and using sessions and cookies without any problems. But I'm still getting these warnings from CubeCart. Anyone have any idea what could be going wrong?
  12. Using CubeCart v3.0.16, getting errors: PHP Warning: session_start() [function.session-start]: The session id contains illegal characters, valid characters are a-z, A-Z, 0-9 and '-,' in .../CubeCart/includes/sessionStart.inc.php on line 39 PHP Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/advimmun/public_html/CubeCart/includes/sessionStart.inc.php:39) in .../CubeCart/includes/sessionStart.inc.php on line 39 PHP Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/advimmun/public_html/CubeCart/includes/sessionStart.inc.php:39) in .../CubeCart/includes/sessionStart.inc.php on line 39 PHP Warning: Cannot modify header information - headers already sent by (output started at .../CubeCart/includes/sessionStart.inc.php:39) in .../CubeCart/includes/session.inc.php on line 95 PHP Warning: Unknown: The session id contains illegal characters, valid characters are a-z, A-Z, 0-9 and '-,' in Unknown on line 0 PHP Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/tmp) in Unknown on line 0 In sessionStart.php, the code is: $sessionDomain = substr($GLOBALS['rootRel'],0, strlen($GLOBALS['rootRel'])-1); if($glob['rootRel']=="/"){ $sessionName = "ccSID"; } else { $sessionName = "ccSID".md5($glob['rootRel']); } session_name($sessionName); @ini_set("session.cookie_path",$sessionDomain); session_start(); I've never seen this problem before, and searching the forums turned up nothing. It's not preventing the store from working, but I don't like these warnings piling up. Has anyone seen this before and figured out what was going wrong?
  13. Mark, thanks for the post. Like the original poster, I too need to customize the order of the product categories in the left-hand column on the homepage. So I changed the values of category.cat_id, but it had no effect upon the order of the categories. To see why this might be happening, I looked at /includes/contents/viewCat.inc.php, and saw no instances of any ordering being done using the values of category.cat_id. So it would appear that the original alphabetical ordering -- which is done in that first query, "SELECT * FROM ".$glob['dbprefix']."CubeCart_category WHERE cat_father_id = ".$db->mySQLSafe($_GET['catId'])." ORDER BY cat_name ASC" -- is not overridden later by the values of category.cat_id. Or am I looking in the wrong place? Any help on this would be appreciated, as I really would like to customize the category ordering.
  14. Thanks for the reply! It pointed me in the right direction. Yes, when I upgraded versions of MySQL, I didn't just do an install over the existing one (because it complained about the old password no longer being valid, even though they were the same -- go figure...). That forced me to do a clean reinstall. When I did that, I followed the advice of the installer, and left strict mode on. I must not have done that way back when I installed the previous version, because I was able to solve the problem by editing my.ini, finding "sql-mode", and removing "STRICT_TRANS_TABLES". This solve the problem, and I was able to change the shipping module settings. Thanks again!
  15. I'm using the latest version of CubeCart (3.0.16), and upgraded from MySQL 5.0.27-standard-log to 5.0.41-community-nt. Now I am unable to enable or disable any of the shipping modules. For example, trying to disable the free shipping module results in the following CubeCart error message: MySQL Error Occured 1366: Incorrect integer value: '' for column 'default' at row 1 QUERY = UPDATE CubeCart_Modules SET `status`='0', `default`= '' WHERE module = 'shipping' AND folder = 'Free_Shipping' In the CubeCart_Modules table, the "default" column is an int(1) that cannot be set to null and has a default value of 0. Apparently, CubeCart is trying to set that column to the default value, and doing so by trying to set it to an empty string. This doesn't seem right. Anyone know anything about this problem?
  16. ah excellent, thats exactly what i mean. Thanks Stevie
  17. does no one know the answer to this?
  18. Hi, I've searched the forum and the admin area of cubecart but I can't seem to find out if it is possible to add a gift message with each order? It would be a real shame if this isn't possible as this seems like a very nice solution... and its layout is CSS Thanks
  19. Thanks. I tried that, and it worked great.
  20. I would like to add a new side box, containing links to documents that site visitors can download. I searched here, but didn't find any info. CubeCartForums.org has a section titled "Moving, Adding or Deleting Side Boxes", but actually does not seem to address adding side boxes. I'm assuming that I would add code to /skins/SKIN_NAME/styleTemplates/global/index.tpl. Lets say that I want to add the new side box to the right hand side. So within <div class="colRight">, would I hard code all of the HTML there, or could I create something similar to what CubeCart is doing, let's say, "{DOWNLOADS}". Is there a way to have that replaced by the HTML in a separate file, where I would put all of the download links?
  21. No, as mentioned earlier, I left the Description field blank, because I wasn't entirely sure what should go there. So just now I added "Pay with a credit card" as the description, and that does show up on the purchase page. However, I'm still wondering, isn't it going to ask me what brand of credit card I want to use? After clicking the Continue button, it does allow me to type in my customer ID info and the credit card number, but I'm still expecting to see a place to choose the brand of credit card. Or, does it just figure that out from the credit card number? (I'm so accustomed to seeing a drop-down list or radio buttons for choosing the particular credit card.)
  22. Hello. In the configuration settings for Authorize.Net AIM, I enabled it, entered the correct merchant ID and transaction key, and left the "Description" field blank because I wasn't sure what to put there (anyone know?), When I do a test purchase and get to the "Payment" page (cart.php?act=step5), it is prompting me "Please choose your preferred payment method:". But there is a single radio button, selectedand there's no label corresponding to it. I would expect to see a list of credit card names, but it is blank. I attached an image of it this posting. Anyone have any ideas as to what I'm doing wrong? Is there an additional step needed to configure credit cards for Authorize.Net?
  23. Sounds promising. Thanks for the link to that site -- didn't even know it existed. Looks like a helpful resource!
  24. Hi, everyone. I have CubeCart running, and am now working on customizing the skin that I'm using. I'm wondering, what is the best way to figure out what code in what file is used to generate any particular part of the Web page? For example, in the default skin that I'm using (Killer), in the left-hand column, there is the "Featured Product" box. Let's say I wanted to remove that completely. How would I or anyone else go from that particular box and figure out where in the skin files I would make the change (such as commenting out some code)? Is there documentation that explains in detail how to customize a skin? I was hoping that there would be an HTML comment within the generated page, which would have some sort of keyword that I could search for throughout the skin code, to find the location. But the generated pages don't seem to have those sorts of identifiers.
  25. Thanks! That would explain why a plain text search did not find them. :)
×
×
  • Create New...