Jump to content

roban

Member
  • Posts

    3,238
  • Joined

  • Last visited

Everything posted by roban

  1. EDIT includes/boxes/shoppingCart.inc.php with a text editor. FIND these lines of code: $basket = $cart->add($_POST['add'],$quantity,""); } INSERT this block of code AFTER the above lines (being careful to add the code after the curly bracket shown above): // start mod: redirect to basket if($ccUserData[0]['customer_id']>0) { header("Location: cart.php?act=step2"); } else { header("Location: cart.php?act=cart"); } exit; // end mod: redirect to basket SAVE file and upload to your server. Instructions if Text Input Fields for Products has been installed: EDIT includes/boxes/shoppingCart.inc.php with a text editor. FIND these lines of code: } else { $basket = $cart->add($_POST['add'],$quantity,"",""); } // end: Text Input Mod } INSERT this block of code AFTER the above lines (being careful to add the code after the curly bracket shown above): // start mod: redirect to basket if($ccUserData[0]['customer_id']>0) { header("Location: cart.php?act=step2"); } else { header("Location: cart.php?act=cart"); } exit; // end mod: redirect to basket SAVE file and upload to your server.
  2. Your backgrounds are jpeg images so to change them you can use a graphics editor like Photoshop. They are located in your styleImages/backgrounds directory and are : contentBg and pageBg. Your links can be changed using style.css: .txtSiteDocs, a.txtSiteDocs { font-family: Arial, Helvetica, sans-serif; font-size: 70%; color: #0B4492; text-decoration:none; } a.txtSiteDocs:hover { font-family: Arial, Helvetica, sans-serif; font-size: 70%; color: #000000; text-decoration:none; To add a bold attribute, add font-weight: bold;
  3. enter the user name and password you set up when you installed. You will then enter the admin back end.
  4. If you have managed to forget your admin password and for some reason you cannot get the "Reset Password" function to work please follow this process: 1. Access your database using a tool such as phpMyAdmin and browser the table CubeCart_admin_users. It should contain the list of administrator accounts to access the admin interface of your store. 2. We need to now create a file to show us what the md5 hash of the password you require should be. Using notepad make a file with content: <?php echo md5("password"); ?> 3. Replace password with your desired password. 4. Save this file as md5.php and upload it to your webserver. 5. Execute this in your browser and copy the output. 6. Edit the admin user with phpMyAdmin and paste this output into their password field. If done successfully then you should now be able to access the admin interface of your store.
  5. You'll find the control in layout.css: #topHeader { text-align: right; height: 116px; margin-bottom: 10px; padding-right: 9px; padding-top: 0px; background-image: url(../styleImages/backgrounds/topHeader.jpg); border-bottom: 1px solid #000000; You might add: background-repeat: no-repeat;
  6. If you have managed to forget your admin password and for some reason you cannot get the "Reset Password" function to work please follow this process: 1. Access your database using a tool such as phpMyAdmin and browser the table CubeCart_admin_users. It should contain the list of administrator accounts to access the admin interface of your store. 2. We need to now create a file to show us what the md5 hash of the password you require should be. Using notepad make a file with content: <?php echo md5("password"); ?> 3. Replace password with your desired password. 4. Save this file as md5.php and upload it to your webserver. 5. Execute this in your browser and copy the output. 6. Edit the admin user with phpMyAdmin and paste this output into their password field. If done successfully then you should now be able to access the admin interface of your store.
  7. version 2 support has gone but the spirit remains with me since I started with 2.7. You may PM me if you need to.
  8. I make my living doing SEO and I can say that meta tags don't hold the weight they once used to. Content using your key words and phrases are much more SEO-worthy these days. Plurals are not mandatory but well-researched key words should be your goal. Make sure that your images have 'alt' tags and that those tags reflect your site and key words/descriptions whether they contain the artist or not. This is all 'organic SEO' and will work for your site as it has worked for others. Use the Overture Keyword Selector Tool to find out which words and phrases are the most searched for.
  9. Export your database and open in Notepad. Do a search for http://xincensecart2.onlineknowledgebank.com. f any references are found, change them to the new domain. You might try disabling the seo mod.
  10. Look at your .htaccess file. Also you might want to export your database and edit all references to the old URL
  11. $glob['storeURL'] = 'https://www.fafufa.com'; should be $glob['storeURL'] = 'http://www.fafufa.com';
  12. Can you post your includes/global.inc file. Leave out the password stuff.
  13. You can export your database to a sql file using PHPMyAdmin, open it with notepad and do a search for references to your old url and replace them with the new url. Then drop all tables in your database and import the modified one.
  14. the image in the grey box is px.gif in your general folder and the product image is ZX14UNDERTAIL_copy.gif in your uploads folder. The image px.gif is a blank image by default.
  15. Set permissions of language/en/home.inc to 777 then edit. When finished set back to 644. I don't know why this happens but it does.
  16. Unfortunately you can not see them like you would an html file in Frontpage or Dreramweaver.
  17. The database holds all the information for your store and when someone makes a purchase or looks at a product, all the information on their computer is 'pulled' or 'called' from the database. Most hosting companies support databases and they can be easily set up from your hosting control panel. The database is a set of tables that get populated during the set up process and every time you add a product or an image or a customer registers, the information is stored in the database for use at a later time. The database consists of a database name, a password and a user name. This information you will need for the set up of Cube Cart so call your host and ask them how you set it up. After the database is set up, you will go to your browser and type your url followed by /install. It looks like this if your files are in a directory called cubecart. This directory can be called almost anything by the way or the files can just be in your root directory: http://www.yoursite/cubecart/install If the files are in your root directory, usually a directory on your server called public_html or httpdocs, you would type: http://www.yoursite/install The installation should begin and you will fill in the blanks with information asked for. As stated above you will need the server name: usually localhost (but ask your host what this is) database name, user name and password. If you need more help please PM me and I'll help you further.
  18. You have done an amazing job. I love the colors and your images are clean. The best of luck.
  19. Stands for Template. Open with any text editor such as notepad to edit.
  20. That is an image called sessionBg and can be found in layout.css #sessionBox { text-align: left; background-image: url(../styleImages/backgrounds/sessionBg.gif); width: 236px; height: 96px; float: right; Delete the entire line in red.
  21. you can try to play with the width of your site in layout.css: #pageSurround { width: 748px; margin: 0px auto; padding: 5px; border: 1px solid #000000; background-color: #FFFFFF;
  22. Logical as in alphabetical? Open /includes/contents/viewCat.inc.php Find somewhere @ line 158 $productListQuery = "SELECT ".$glob['dbprefix']."CubeCart_cats_idx.cat_id, ".$glob['dbprefix']."CubeCart_cats_idx.productId, productCode, quantity, description, image, price, name, popularity, sale_price, stock_level, useStockLevel FROM ".$glob['dbprefix']."CubeCart_cats_idx INNER JOIN ".$glob['dbprefix']."CubeCart_inventory ON ".$glob['dbprefix']."CubeCart_cats_idx.productId = ".$glob['dbprefix']."CubeCart_inventory.productId WHERE ".$glob['dbprefix']."CubeCart_cats_idx.cat_id = ".$db->mySQLSafe($_GET['catId']); Replace it with $productListQuery = "SELECT ".$glob['dbprefix']."CubeCart_cats_idx.cat_id, ".$glob['dbprefix']."CubeCart_cats_idx.productId, productCode, quantity, description, image, price, name, popularity, sale_price, stock_level, useStockLevel FROM ".$glob['dbprefix']."CubeCart_cats_idx INNER JOIN ".$glob['dbprefix']."CubeCart_inventory ON ".$glob['dbprefix']."CubeCart_cats_idx.productId = ".$glob['dbprefix']."CubeCart_inventory.productId WHERE ".$glob['dbprefix']."CubeCart_cats_idx.cat_id = ".$db->mySQLSafe($_GET['catId'])." ORDER BY name ASC";
  23. what is this? $glob['dbprefix'] = 'cc_'; Do you have a special prefix? $glob['rootRel'] = '/cubecart/'; should be $glob['rootRel'] = '/';
  24. roban

    New CC Lingerie Store

    Love the site (especially the models) Hate the intro page. Much better to go right to the store.
×
×
  • Create New...