Jump to content

bsmither

Member
  • Posts

    17,974
  • Joined

  • Last visited

  • Days Won

    603

Everything posted by bsmither

  1. Take a look here: http://www.i18nguy.com/markup/right-to-left.html Then open the two main templates: \skins\your_skin\styleTemplates\global\index.tpl and cart.tpl is where the <html> tag is, so modify that. Then you may have to look at the various other templates to make corrections where you do NOT want RTL sequences.
  2. For an un-modded store, it's in your_language/lang.inc.php, in the $lang['front']['orderSuccess'] section.
  3. Google for "dynamic fonts". Then when ready, you will modify the <head> section of your_skin/styleTemplates/global/index.tpl and cart.tpl.
  4. See this thread: http://www.cubecart.com/site/forums/index....showtopic=29535 Supposin' you already have extensive docs and you do NOT want to go in and add a class declaration to any and all links. You'se takes your .txtDefault and then say for any "a" and "a:hover" within this div, go apply this style.
  5. But it certainly is affordable. I bought it!
  6. I'm looking for the code in FCKEditor that replaces \n with <br/>. I've globally scanned the rte folder for "br/" (without the quotes) and all I find is a commented out section. I'm experiencing an anomaly where my e-mail reader is (probably) not properly interpreting <br/>, thus running all text together into one line. (Well, except where <p> and </p> is used.) To try to fix this, I want to change the editor code to use <br-space-/> where -space- is a space character. Any ideas what file I can find this in? CC 3.0.15 with FCKEditor 2.4.3 (although this happens with the stock RTE as well).
  7. GoDaddy has an issue with one or more of the payment gateways. Search across all these forums for "GoDaddy" and read those threads that mention additional code needed to work through GoDaddy's proxy.
  8. My bad on the comma. And my experiments show that the DIV is good with just the txtDefault. YMMV.
  9. Ok, try this: .txtDefault a { font-family: Verdana, Arial, Helvetica, sans-serif; color: #00FF00; text-decoration:none; } .txtDefault a:hover, { font-family: Verdana, Arial, Helvetica, sans-serif; color: #FF3300; text-decoration:none; } Put these after the two sections I mentioned earlier. Make sure you're working in the right skin. Remove what you added to the top of your text document. Keep this: <div class="txtDefault">{DOC_CONTENT}</div>
  10. You copied the whole thing to another server? Including the database? In the database, there are a few settings that make reference to the URL and path to your site. That probably got copied over. Get the Config editor file from this site (look for CubeCart Config Tool in the Downloads section) and make changes to the settings that pertain to your development server. Also make changes to /includes/global.inc.php to point the URLS and paths to your development server. DO NOT TRANSFER the database or the global.inc.php file back to the live server.
  11. I'm looking at /skins/Killer/styleSheets/style.css at around line 141 where the declaration is made for "a.txtLink". The next one is for "hover". Maybe you can edit your documents and add this class to the anchor tags. If you have a personal css file, then see: skins/Killer/styleTemplates/content/viewDoc.tpl and wrap {DOC_CONTENT} within a "div class" corresponding to your declarations.
  12. I'm doing something similar (selling memberships). I got Email Template System and am working on modifying that product so that a successful purchase on specific items will send to the customer default log in information. Now, I would have had CC open the membership database and add a new record, but this database is not on the same server and isn't even the same type of database. The best I figure I can do is have CC also send the admin an email that is automaticallt picked up by a trouble ticket parser. The parser then loads the membership database withe the basic data. But it's a lot of work yet to be accomplished.
  13. Just as an experiment, I tried https: and got a SSL certificate valid for LiquidNet. After accepting everything, all I got was the text "forkleft.net". Does that ring a bell anywhere?
  14. This all has to do with MySQL 5 not accepting a null value for an integer field. Check this thread: http://www.cubecart.com/site/forums/index....showtopic=28650
  15. Do a Google search for both these phrases (that means, include the quotes) together: "email template system" and "powered by cubecart". You'll find it.
  16. Note how in the first part of the line there is: "fone-xs" while CC is actually trying to find it at "fonexs". So check the global.inc.php and make sure the absolute root to your store is correct.
  17. If you are interested in a third party mod, Google for: "Show-Hide-Order Site Documents".
  18. There's a third party mod that lets you define shipping options on each product individually.
  19. Right. In lang.inc.php, in the $lang['front']['gateway'] array, in the 'admin_email_body_1' element, add after: Name: %s this line: Phone: %s Repeat for each language desired. Then in file includes/content/gateway.inc.php, add after: $ccUserData[0]['title']." ".$ccUserData[0]['firstName']." ".$ccUserData[0]['lastName'], this line: $ccUserData[0]['phone'], Do not forget the comma at the end of that line. This is a really minor hack and so this response to your query should be acceptable to the powers that be, against discussing modifying the code.
  20. That's exactly the approach I took: used Killer's tabs and horizontal bars as a guide but built a new set from one solid gradient square. See the (slightly) new color scheme at: http://www.aaom.info/ncaaom/store/
  21. In the file download.php, near line 44, we see that here begins the function to actually start pumping the file out of the repository and down to the browser. If you are putting your files in a non-public space (which you are), we see that line 62 is where we start building headers. Then the file is read into a buffer in 1MB chunks and then "printed" (presumably to the output stream). In your server's PHP .INI file, there is a setting called "max_execution_time" for scripts. *Maybe* in the afternoon, the server is so busy with other tasks that it takes too long to process large files within the time limit. Just a SWAG. Click the Server Info in your Admin page to see what your setting is. Now, to further experiment, place a large file in a publicly accessible place and create an ftp: or http: link to it in the digital download field of the product. CubeCart doesn't 'manage' the delivery of the file in this case. See what happens.
  22. I've been experimenting with the digital download function and have noticed that when I click the link generated by CC, I am given the absolute complete path to the file. For example (just an example, not for real), this shows in my browser's "Do you want to download this file" dialog box: "D--Inetpub-wwwroot-store_digital-testdownloadfile.txt" If the purpose of putting downloadable files in places outside the public accessible web space, why have the full path as part of the filename?
  23. Again, have you contacted your host (if it's not you)? There may be something new that they are not telling you. If it works in the morning but not later in the day, maybe you are up against your (sliding) monthly payload (served bytes) limit. Just a wild guess.
  24. OK, MySQL 5.something, but PHP 4.what? If this is your own server, have you not yet upgraded to the latest version of PHP 4? You *might* try changing your PHP.INI file to use the extention MySQLi (I saw this referenced somewhere else, but do not know if it applies.)
  25. Sorry, don't run Unix-style servers myself, so if the issue isn't related to absolute correctness of filenames, including case-sensitivity, then I'm guessing there must be a web server setting that throttles or denies downloadable files based on sizes. (If I recall, there is such a setting in IIS6 servers, but I might not be recalling correctly.) If you are the sysadmin for the server where your store is located, make an inquiry in the server support forums. If not, then contact your host and ask them if there's any throttling going on.
×
×
  • Create New...