bsmither
-
Posts
18,177 -
Joined
-
Last visited
-
Days Won
609
Posts posted by bsmither
-
-
Error 1366
This quite probably has to do with the fact that the MySQL database is configured to be "Strict."
See http://www.cubecart.com/site/forums/index....showtopic=28650
-
$glob['storeURL'] = 'https://wear-2.ssl-01.com';
Can you NOT use https: and just rely on CC's built-in functionality to figure out what the URL is for the SSL access?
-
I can guess that the form is a third-party mod thats installed based on a declared path at the time of the mod's purchase. Maybe you said the form is for "domain", and the publisher gave you a key (or hard-coded it) for "domain", but you installed it at "domain/path".
Dunno.
-
Any ideas whats gone wrong??
Two possibilities:
1) You FTP'd the contents of the upload folder to your site, but the FTP program converted upper/lower case to all lower case.
2) See http://www.cubecart.com/site/forums/index....showtopic=28589
Also http://www.cubecart.com/site/forums/index....showtopic=26177
I would like to know what version of PHP you are running under.
-
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.
-
For an un-modded store, it's in your_language/lang.inc.php, in the $lang['front']['orderSuccess'] section.
-
Hi, I have been searching forums for how to add a new font to my cc store.
Google for "dynamic fonts".
Then when ready, you will modify the <head> section of your_skin/styleTemplates/global/index.tpl and cart.tpl.
-
Worked it out.
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.
-
but [Estelle's] mod is no longer free.....
But it certainly is affordable. I bought it!
-
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).
-
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.
-
My bad on the comma. And my experiments show that the DIV is good with just the txtDefault. YMMV.
-
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>
-
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.
-
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.
-
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.
-
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?
-
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
-
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.
-
include_once(/home/fone-xs/public_html/shop/classes/db.inc.php
/home/fonexs/public_html/shop/admin/includes/auth.inc.php on line 59
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.
-
If you are interested in a third party mod, Google for:
"Show-Hide-Order Site Documents".
-
There's a third party mod that lets you define shipping options on each product individually.
-
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.
-
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:
Authorize.Net problem......
in Technical Help
Posted
Are you, by chance, usiong GoDaddy to host your site. If so, search for all threads that have the word GoDaddy in it and read about a slight mod that's necessary.
If not using GoDaddy, then, sorry, don't know.