Jump to content

roban

Member
  • Posts

    3,238
  • Joined

  • Last visited

Everything posted by roban

  1. Good grief antz you don't save it at all. You paste it in your index.tpl file wherever you want the box to appear.
  2. roban

    Time in CC3?

    There's always a way but this is not a Cube Cart issue. Post this at cubecart.org
  3. Why not create a new box with the link code inside. You can title the box 'sign my guestbook' Clever huh? Here's a new box code because I'm anticipating your next question: <div class="boxTitleRight">Guest Book</div> <div class="boxContentLeft"> <a href="http://www.mia-g.com.au/gbook">Click to Sign My Guest Book</a> <border="0" > </div> <div class="boxFootRight"> </div>
  4. You can't log in probably because your ssl config is wrong
  5. Yes that is quite correct. If you are using a shared ssl you can look for answers in other places. Dedicated ssl is the only way to go for an e-commerce site. How did you set up your ssl in admin control panel?
  6. Have you contacted your host about the shared ssl. By the way, no ecommerce site should be using shared ssl IMHO. My advice is to spring for the $40.00 a year (or so) and get a dedicated ssl and a private IP. Let your host install it for you. You are in business so don't try to cut corners on the important things it just causes problems in every case I've seen. Then folks blame it on Cube Cart.
  7. What steps have you taken at the Pay Pal site? Especially Instant Payment Notification Preferences
  8. what do you mean it doesn't work? have you seen the list in your admin control panel? Go to Customers/Email Customers and you will have the option to send a bulk email to those who have signed up or to view the list of subscribers.
  9. This is done by your hosting company and is not a Cube Cart issue.
  10. Can you be more precise about your problem?
  11. Go to admin/includes/rte and open fckeditor.php. Around line 36 find this: $this->InstanceName = $instanceName ; $this->BasePath = '/FCKeditor/' ; $this->Width = '100%' ; $this->Height = '200' ; $this->ToolbarSet = 'Default' ; $this->Value = '' ; Change to this: $this->InstanceName = $instanceName ; $this->BasePath = '/FCKeditor/' ; $this->Width = '750' ; $this->Height = '800' ; $this->ToolbarSet = 'Default' ; $this->Value = '' ; Upload the file. This will expand your fckeditor window.
  12. A simple search would have turned up this: <?php /* +-------------------------------------------------------------------------- | CubeCart v3.0.3 | ======================================== | by Alistair Brookbanks | CubeCart is a Trade Mark of Devellion Limited | &copy; 2005 Devellion Limited | Devellion Limited, | Westfield Lodge, | Westland Green, | Little Hadham, | Nr Ware, HERTS. | SG11 2AL | UNITED KINGDOM | http://www.devellion.com | UK Private Limited Company No. 5323904 | ======================================== | Web: http://www.cubecart.com | Date: Thursday, 25 August 2005 | Email: info (at) cubecart (dot) com | License Type: CubeCart is NOT Open Source Software and Limitations Apply | Licence Info: http://www.cubecart.com/site/faq/license.php +-------------------------------------------------------------------------- | editconf.php | ======================================== | Config recovery tool +-------------------------------------------------------------------------- */ if(!isset($_GET['c'])){ header("Location: editconf.php?c=config"); exit; } include_once("includes/ini.inc.php"); include_once("includes/global.inc.php"); include_once("classes/db.inc.php"); $db = new db(); include_once("includes/functions.inc.php"); include_once("admin/includes/functions.inc.php"); if(isset($_POST['data'])){ //$config = fetchDbConfig($_GET['c']); $msg = writeDbConf($_POST['data'],$_GET['c'], $config, $_GET['c']); } $config = fetchDbConfig($_GET['c']); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>CubeCart - Config Recovery Tool</title> <script language="JavaScript" type="text/JavaScript"> <!-- function MM_jumpMenu(targ,selObj,restore){ //v3.0 eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'"); if (restore) selObj.selectedIndex=0; } //--> </script> <style type="text/css"> <!-- body,td,th { font-family: Verdana, Arial, Helvetica, sans-serif; } .code { font-family: "Courier New", Courier, mono; color: #000000; } .redText {color: #FF0000} --> </style></head> <body> <span class="redText"><?php if(isset($msg)) { echo $msg; } ?></span> <h1>Config Recovery Tool</h1> <p><strong>Devellion Ltd & CubeCart provide this script without any warranty of any kind and by proceeding you are doing so entirely at your own risk.</strong></p> <p>This tool is designed to edit your config file if for some reason your store becomes corrupt due to incorrectly changing your settings.</p> <p>Example: If you have switched on SSL mode and your store has become broken. Select "config" from the dropdown menu below and set $config['ssl'] to 0. No test to see if your store has been fixed and if so delete this file from the server. </p> <p class="redText"><strong>IMPORTANT:</strong> You must NOT leave this file on your server as it is a VERY high security risk!</p> <p><a href="index.php" target="_blank">View Store Front</a> - (Opens in New Window)<br /> <a href="admin/" target="_blank">View Store Admin</a> - (Opens in New Window)</p> <p>Select Config to edit: <?php $query = "SELECT * FROM ".$glob['dbprefix']."CubeCart_config"; $results = $db->select($query); ?> <select name="menu1" onchange="MM_jumpMenu('parent',this,0)"> <?php for ($i=0; $i<count($results); $i++){ ?> <option value="?c=<?php echo $results[$i]['name']; ?>" <?php if($_GET['c']==$results[$i]['name']) { echo "selected=\"selected\""; } ?>><?php echo $results[$i]['name']; ?></option> <?php } ?> </select> </p> <form name="form1" id="form1" method="post" action="editconf.php?c=<?php echo $_GET['c']; ?>"> <table border="1" cellspacing="0" cellpadding="2"> <tr> <td><strong>Variable name: </strong></td> <td><strong>Current Value: </strong></td> <td><strong>New Value: </strong></td> </tr> <?php foreach($config as $key => $value) { ?> <tr> <td class="code"><?php echo "\$".$_GET['c']."['".$key."']"; ?></td> <td class="code"><?php echo $value; ?></td> <td> <textarea name="data[<?php echo $key; ?>]" cols="30" rows="2"><?php echo $value; ?></textarea> </td> </tr> <?php } ?> <tr> <td> </td> <td> </td> <td><input type="submit" name="Submit" value="Update Config" /></td> </tr> </table> </form> </body> </html> Save this file as editconf.php, upload it to your site's root and run the script. This will allow you to turn off ssl
  13. I believe there is a categories in 2 rows mod at cubecart.org
  14. Tape + removable hard drive. Backup your backup.
  15. Please use the search function as this question has been asked and answered many many times
  16. There is a full screen Legend skin at cubecart.org. very reasonable price. Under $1.00 I think.
  17. Look in your inventory tables
  18. You're talking about the box with THE TEXT GOES HERE in it? Did you add that extra box to your index.tpl and cart.tpl? If so try removing it from cart.tpl
  19. home.inc doesn't have anything to do with your admin log in. What happens when you try to log in. What is the error you are getting. Hvae you tired using her password? More information please!
  20. Not knowing what you mean by 'their cpanel' I am at a loss.
  21. Set your shipping costs at the Pay Pal web site under Profile/Shipping Calculations
×
×
  • Create New...