Jump to content

rowdyplace

Member
  • Posts

    91
  • Joined

  • Last visited

Everything posted by rowdyplace

  1. I have no immediate solution. What I would do is go to the site admin, and select a "stock" skin. If that works fine, then the problem is most likely in the customizing of the current skin. If the stock skin has the same/similar problems, then it has to be the baseline code - or a mod - that contains the error.
  2. What s/w are you using to build the flash? I think you are using some kind of a "smart" editor. It seems to be thinking for you. I use notepad, and ultra-32 - both are good for dumb text.
  3. Check out www.cubecart.org. You seem to be looking for a modification. You will find several ways (mods) to do this over there. Pay attention to the "pinned posts". They are the true "gems" of the forum. www.cubecart.com is for baseline code support.
  4. Look around www.cubecart.org. That is the correct forum for this sort of help. There are a few really sharp CC3 type members and moderators that offer the whole package. Yes, a few are UK based.
  5. Look at www.bakery1.com, They are set up this way.
  6. Look in cubecart.org forums for modifications to the baseline code. There are several posted mods to do exactly what you want to do, and I think they are free. <<edited out double post...>>
  7. May i suggest another approach? If you already are setup in /store, and you just don't want to change things...you can build a simple "index.html" for the site root, and use a url forwarding routine: <html> <head> <title>your store name</title> <meta http-equiv="REFRESH" content="0;url=http://www.your_site.com/store"> </head> <body> </body> </html> I use this on a site. Notice the content="0";url.... line. If you want to make this html file a welcome page to greet the new user, just add some content, and change the "0" to another number. This is the amount of time before the auto redirect executes - in seconds. Leaving this set to "0" means it will immediately go to the store.
  8. You are correct. I'm trying to solve a problem that you do not have. Sorry about that... You are looking for a "mod" for Cubecart. You can find the mod forum at www.cubecart.org. This forum is primarily for solving problems with the baseline code. Present your question over there, and I feel that someone will come forward with a solution for you.
  9. 1. Check the "pinned posts". They are full of help and helpful links. 2. Look on the .org forum. That is where the "mods" are found. This is a support forum for issues with the baseline product.
  10. May we have the url to your site? Which browser are you using? I solved this problem by adjusting my uploaded picture size. I think yours must be too large. Try 300 x 300 px and work up from there.
  11. Check your CC3 admin page to see that "GD = 2". If you uploaded images before you had the GD settings set correctly, then the thumbnails were probably not created. Try adding a test category and test product and upload new test images to each. Also, go to your images/thumbs folder to see if they exist. Also to see if they are now being created.
  12. Guessing that powweb is your server hosting company, is this a "Fantastico" installation? My first thought is that you have an installation folder issue (//.CubeCart.1158429066/). If this is Fantastico, it is easy to remove this installation and try again. This time use "cart" or "store" as your installation folder. Fantastico or manual installation, I suggest you uninstall and re install CC3.
  13. PS... 3. Tell me how to arrive at your error message.
  14. That would be my guess. Upgrading a "modded" store is all too often a teadious task. First, one must know each and every file that has been modified, and make sure that if the upgrade is going to replace that file, then to add the correct "mod" code to the new file(s) - in the appropriate place. Make all code changes in all files before you look for success. All this is probably fundamental to you, but bears repeating... I would suggest that you are going to need to examine each CC3 file and look carefully at the original code and then the moded code. (What a way to spend the weekend...)
  15. 1. What mods did you have in 3.0.10? 2. url to your store?
  16. Yea, what he said... I experienced a similiar problem last week. My resolution was to change hosting companys. The first one did not have GD running on their server. Setting GD to N/A (CC3 admin settings) stopped any CC3 error messages I was getting while adding an image to a product, but I never could get the thumbnails created. Do a search on phpinfo.php. This is a simple (3 line) program you can build and upload to the CC3 "root" and execute to get your server details. If you cannot see a "GD" entry in the resulting report , your gonna need to contact your server host. I'm still waiting for mine to figure it out, so, I just used another server hosting company.
  17. Is the second item exactly the same as the first... or different? How many TOTAL different products will the store offer to sell at any one time?
  18. Did you backup your gd.inc.php file prior to the upgrade? That is the first place I would check. Below are the details my gd.inc.php file. You will need to identify the specific ingredients for yours (Check CPanel on your hosting account - If that is what is used...) When I setup my database, My database file name is "ccrt1" My username is also "ccrt1" my server hosting account name is "bamabar" Note that the database name has the site name appended to it when I set up the database in CPanel's MySQL manager. "bamabar_ccrt1" My global.inc.php file: $glob['dbdatabase' ] = 'bamabar_ccrt1' ; $glob['dbhost' ] = 'localhost' ; $glob['dbusername' ] = 'bamabar_ccrt1' ; $glob['dbpassword' ] = 'aabbccddd' ; $glob['dbprefix' ] = '' ; $glob['installed' ] = '1' ; $glob['rootDir' ] = '/home/bamabar/public_html/cart' ; $glob['rootRel' ] = '/cart/' ; $glob['storeURL' ] = 'http://bamabar.com/cart' ; I'm thinking that you need the correct database and user names (with the appended site name...) in your global.inc.php file. I hope I'm not sending you down the wrong path...
  19. When I setup my database, My database file is "ccrt1" my server hosting account name is "bamabar" Note that the database name has the site name appended to it when I set up the database in CPanel's MySQL manager. "bamabar_ccrt1" My global.inc.php file: $glob['dbdatabase' ] = 'bamabar_ccrt1' ; $glob['dbhost' ] = 'localhost' ; $glob['dbusername' ] = 'bamabar_ccrt1' ; $glob['dbpassword' ] = 'aabbccddd' ; $glob['dbprefix' ] = '' ; $glob['installed' ] = '1' ; $glob['rootDir' ] = '/home/bamabar/public_html/cart' ; $glob['rootRel' ] = '/cart/' ; $glob['storeURL' ] = 'http://bamabar.com/cart' ; I'm thinking that you need the correct database and user names (with the appended site name...) in your global.inc.php file. I hope I'm not sending you down the wrong path...
  20. Fought same problem. Changing server hosting companies was my solution...But look at this link: http://www.cubecart.com/site/forums/index....amp;#entry95905
  21. yoursite/includes/global.inc.php is THE file that has the database linkage in it.
  22. Your error is generating different error messages than mine did. I don't think they are related. I resolved my issues with the file gd.inc.php by using a different server host. I am working with the first server hosting company to resolve their server setup problem(s). Mods...help...
  23. Addressing my own thread. After much reading and testing... I find that I must set GD Version to N/A in the admin panel/general settings to eleminate the above error. <edit add> However, with GD set to N/A. I do not seem to create thumbnails...
  24. I take my own photos of my categories and products. I them crop and touch them up. I can make them almost any size I want. What is optimum? I just tried 800 x 600 (pixels) and that was too large. The category and product pages went crazy. Trying 240 x 180 and the pages show them off center to the left - with a lot of white space. What is the best size to use?
×
×
  • Create New...