convict
Member-
Posts
1,302 -
Joined
-
Last visited
-
Days Won
1
Everything posted by convict
-
[Minor] Language support for categories
convict replied to convict's topic in Visit the CubeCart Extension Marketplace
Since Aug 3 2005 administrator demo doesnt exist, sorry. -
Site Docs: open styleSheets/style.css under your skin in skins directory, search for .txtSiteDocs, a.txtSiteDocs { color: #XXXXXX; - XXXXXX your color code Search box: open styleTemplates/global/index.tpl under your skin in skins directory, search for {SEARCH_FORM} add <div> tag with appropriate style setting like <div style="background-color: #XXXXXX;">{SEARCH_FORM}</div> XXXXXX is your color code
-
Huh, it depends to OS, user privileges, security settings.........but most of the sites (hosting) client has NO ability to 'manage' php.ini directly
-
yes, CC2 admin code is quite different..... 1. set time into session.gc_maxlifetime in php.ini or 2. add @ini_set('session.gc_maxlifetime', '3600'); to every file, where session_start(); occurs....(almost every )....as the first PHP command.... maybe ... much more effective method exists, but im not familiar with CC2 by now
-
I see...has been figured ... Free Multi Vitamins :)
-
Great! It looks fine :)
-
MySQL server is down//Wrong socket file or TCP/IP port....
-
Perhaps socket file is somewhere else.....or parameters of connecting are wrong....
-
;) Little modification.....paste code after <!-- END: more_images --> this moves the price and Add to Basket to the top above Product Description, What i was writting first, moves the price and Add to Basket to the top above products image.... nobody is perfect :)
-
When using PHP as an Apache module, you can also change the configuration settings using directives in Apache configuration files like .htaccess arg_separator.output is separator used in PHP generated URLs to separate arguments. PHP default setting is &. Ampersands in URLs should be encoded (&).... W3C recommendation: Entity references start with an ampersand (&) and end with a semicolon. If you want to use a literal ampersand in your document you must encode it as "&" (even inside URLs) Most of sites run PHP in cgi mode that doesnt support php_value commands in .htacces files. I believe that has been a sufficient explanation :)
-
Open styleTemplates/content/viewProd.tpl under your skin directory (KILLER) Quantity + Add button <!-- BEGIN: buy_btn --> <div style="position: relative; text-align: left;">{LANG_QUAN} <input name="quan" type="text" value="1" size="2" class="textbox" style="text-align:center;" /> <a href="javascript:submitDoc('addtobasket');" class="txtButton">{BTN_ADDBASKET}</a> </div> <!-- END: buy_btn --> Price & Sale price <p> <strong>{LANG_PRICE}</strong> {TXT_PRICE} <span class="txtSale">{TXT_SALE_PRICE}</span> </p> In/Out of stock {TXT_INSTOCK}<span class="txtOutOfStock">{TXT_OUTOFSTOCK}</span> Group codes above together like <p> <strong>{LANG_PRICE}</strong> {TXT_PRICE} <span class="txtSale">{TXT_SALE_PRICE}</span> <div> {TXT_INSTOCK}<span class="txtOutOfStock">{TXT_OUTOFSTOCK}</span> <!-- BEGIN: buy_btn --> <div style="position: relative; text-align: left;">{LANG_QUAN} <input name="quan" type="text" value="1" size="2" class="textbox" style="text-align:center;" /> <a href="javascript:submitDoc('addtobasket');" class="txtButton">{BTN_ADDBASKET}</a> </div> <!-- END: buy_btn --> </div> </p> (modify div tags, or remove) and paste after <p class="txtContentTitle"><strong>{TXT_PRODTITLE}</strong></p> Thats all
-
like test store?
-
You did NOT. Try to change language - then appears: Warning: open_basedir restriction in effect. File is in wrong directory in /usr/local/psa/home/vhosts/husabergstore.com/httpdocs/language/pt/lang.inc.php on line xxxx line xxxx is line where include("config.inc.php") resides. Your config.inc.php is like this? $glob['rootDir'] = '/usr/local/psa/home/vhosts/husabergstore.com/httpdocs'; $glob['rootRel'] = '/'; $glob['storeURL'] = 'http://www.husabergstore.com';
-
yes, starting but in FireFox are blank lines between site docs names because of truly applicable CR for <li> tag. IE ignores <li>s CR, FF neither.
-
Or...set appropriate GD Version [store config/General Settings]
-
Do NOT forget make 'tmp' public accessible :^^:
-
Guy here is playing with Upgrading a 2.x site to 3.0.1
-
whole $config variable is 'encoded' and stored into database :)
-
wrong paths? :)
-
According this thread with one what i saw yesterday i have to say: WELCOME TO THE REAL WORLD Kudos goes to your jabber dancer Never mind, just kidding :errm:
-
Congratulations! I'm enjoying technical solution of your demo (stores?) :errm:
-
Im not lawyer, just technician There are copuple of methods of pulling the title without the copyright notice. Just open main index.php an there is wanting code if(isset($meta)){ $body->assign("META_TITLE",$config['siteTitle'].c().$meta['siteTitle']); $body->assign("META_DESC",$meta['metaDescription']); $body->assign("META_KEYWORDS",$config['metaKeyWords']); } else { $body->assign("META_TITLE",$config['siteTitle'].c()); $body->assign("META_DESC",$config['metaDescription']); $body->assign("META_KEYWORDS",$config['metaKeyWords']); } c() is responsible for your trable. :errm:
-
I am NOT a cook therefore I dont write any cookbook Personaly, all about backup is drill, drill, drill, drill...even though NO safety :errm: