Jump to content

markscarts

Member
  • Posts

    2,486
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by markscarts

  1. Also, Warning: open_basedir restriction in effect. File is in wrong directory in /var/www/sites/612motorsports.com/language/en/lang.inc.php on line 2977 Your host has set the open_basedir restriction in php settings at the server, for security reasons. You need to contact your host and explain the problem you are having with CubeCart, to see if the host can provide a workaround to this problem caused by his server settings.
  2. markscarts

    mods

    "Add words below to English.inc.php in my store" Mod writers that write stuff like that, if you are reading that in a published mod, are themselves a bit confused Oh well, everyone gets confused sometimes. The file in your store that contains English translations of store terms is at language/en/lang.inc.php
  3. LOL, top header background weighed in at little over 60kb and was nice and sharp, now it is about half that but yes, the quality sucks :D
  4. You really don't understand? It is constantly moving, and so it is annoying. I use FireFox, so I see it moving both in address bar and tab. It is so annoying, I would click off your site without caring what you might sell. There may be some people who would actually enjoy the constant motion, evidently you are one? At any rate, I'm sure there are many like me who would actually avoid your site because of it. Not a good thing for an ecommerce store :D
  5. Just What I Want is a gift store, and my aim is a sort of comic-book appearance, but with enough professionalism to inspire confidence in the buyer. I am aware that the site carries a large overhead in image file sizes, in fact, I'm working on optimizing images now for faster loading. Thanks for taking a look and offering your comments. http://www.justwhat-iwant.co.uk
  6. OK well you need to paste the exact and complete error message. It would help to have a URL to your site.
  7. Well, as an opposing vview, I like the diammond plate background. The site is well-made, hope you are successful.
  8. markscarts

    Redesign

    Very nice work, beers :D
  9. Yes, well that is what I thought you meant, hence my first post - google for the tutorial on offerring cube4cart downloads. Did you find it? Your next post indicates that you are making changes to CubeCart General Settings regarding SSL paths, and this has NOTHING to do with offering digital downloads, but it can render your store inoperable if you are not careful. Please try this tutorial, copy and paste into Google search for the following terms: adding downloadable digital products - cubecart tutorials
  10. Well, I am quite the nubian amateur and don't really read the code all that well. I don't know about nesting placeholders, sounds a little strange, but of course you may concatenate the contents assigned to placeholders and for the most part you are looking at different ways of dealing with nested arrays here. In answer to the concrete question, "Where is the parse function?" look for the functions of the XTemplate system in classes/xtpl.php
  11. I like your design very much, a bit high on overhead with image loads, though.
  12. Well, sorry, but your post is confusing. Are you trying to offer downloads and looking for the way to make download files secure by offering a root server path for downloads? Or, are you trying to set the store to secure pages after you have purchased and properly installed an SSL certificate? These are two entirely different things. I am unclear as to exactly what you desire to accomplish. DO NOT under any circumstance change any secure store settings to "yes" until you have an SSL certificate installed and tested that it is working properly. Also, this has NOTHING to do with secure root server path to downloads.
  13. An XTemplate is a file with .tpl extension, as you can see by reading the includes files. Also, you can see in CubeCart, that the XTemplate files consist of XHTML which contain two unusual elements . . . 1. Parsing cues that look like html commnets <!-- BEGIN: some_name --> <!-- END: some_name --> 2. Placeholders for generated content, {SOME_NAME} The parsing cues correspond to code similar to this in includes files: $view_doc->parse("view_doc.someName"); And the placeholders are assigned like this: $view_doc->assign("SOME_NAME","This text is assigned to placeholder");
  14. Well, you are right, that is very tricky now that I look at it. I would have to really hack it up to get the js in there. First, you would assign id manually for each link. You can find each link defined individually in this file. Second, to add javascript to the links is a bit tricky. I really can't go innto all the explanation here, but to really hack it in, you would do like this: 'link' => "cart.php?act=".treatGet($_GET['act'])."&amp;mode=emptyCart\" onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('link')", In the page source code, the link then generated should look like this: <a href="cart.php?act=step1&mode=emptyCart" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('link')">
  15. Try a google search for: adding downloadable digital products - cubecart tutorials
  16. My sufggestion - don't worry to update that field when populating the store, unless you want to "weight" the popular products in the beginning. You could choose certain ones that you want to appear in the popular products list, and "weight" them by giving them some numbers in the popularity field. Otherwise, just leave that field blank.
  17. Good fellow, as that is what I meant for you to do I gave one example for homepage, but they all work the same there. Now look at your example above, the last one shown, see this line: 'text' => "<img src='link/to/image.gif' alt='Empty Cart' />" On the right side, between double quote marks, you have placed html (using html img tag). What you need to know is that you can use any html, javascript or text there between the opening and closing quote marks. There are some special characters that can cause trouble, like the double quote marks - you can't use double quote marks inside there without escaping them, so it is best to use single quotes instead - a few little rules like that, but basically, you should try to put the rollover code there with the image, like you did on category page. This is a little more difficult on cart pages, but it is manageable.
  18. The popularity field is a count of the page views that the product gets on the viewProd page. In otherwords, the number of "hits" a particular product receives. The more often that visitors view a product, the more popular it is considered to be by the cubecart logic, so it ranks in the populqar products box by page views.
  19. I'm assuming these are your categories: Homepage Mens Womens Pets Baby Group They do not look too high right now, maybe a little too low? Should be easy to adjust this and color as well. I would be interested to have a look at it just to see why it has been stumping you On another note: IMO, you would be wise to lose the animated gif in your favicon, because it never stops and is extremely annoying. An animated gif as favicon can be cute in my opinion, but only if it stops after one rotation . . . Also, there is the typical CuibeCart FF problem with buy & more buttons appearing out-of-the-box on product lists in viewCat pages. For a fix, google these terms: Fix the Buy and More Button Alignment in Mozilla
  20. In that case, change the new line: <span class="txtContentTitle" style="text-align:center;">{HOME_TITLE} to this: <div class="txtContentTitle" style="text-align:center;">{HOME_TITLE}</div>
  21. The following google search will help you find free step-by-step instructions: Extra Content Box on Homepage - CubeCart Tutorials
  22. Bill, I don't think category pics are resized to thumbnail size. I believe you have uploaded a bunch of thumb-sized photos and one large one for category photos.
  23. Asked and answered dozens of times in the couple years I've been here. Sorry Devellion can't employ people to sit around and answer the same questions again and again on the boards 24/7 <_<
  24. a parse error, "unexpected text string" means that the php syntax is wrong, and it indicates that you changed the file incorrectly. In the language file, you see lines like this for creating the language arrays: 'shop_by_cat' => "Shop by Category", No matter which language you are dealing with, it is imperative that you change nothing in any of the lines except for the text between double quote marks (i.e., the text in red above). DO NOT change the wording on the left side of these "equations" DO NOT remove the quote marks or the final commas Additionally, there are some characters that you cannot use in the text you replace with. For instance, you cannot use a double quote mark, use single quote marks in place of double quotes in you text, or you must comment each use of double quote mark like this: \" etcetera
×
×
  • Create New...