Jump to content

roban

Member
  • Posts

    3,238
  • Joined

  • Last visited

Everything posted by roban

  1. Geez how many people do you have to help before pay back?
  2. have you enabled API Access at your Pay Pal account/Profile/API Access?
  3. You'll find all css in 2 files in your styleTemplates/styleSheets directory. They are style.css and layout.css
  4. This is an interesting one. I just added a category as a top level cat. It appears on my site as a category and it's in the database and admin categories. When I try to add products to it using the manage categories function in view products the category appears when adding products from some top level categories but not others. For instance, the new category is PMS and I want to populate the category by adding products from the Women category but it does not appear. If, however I wanted to add products from the Men category the /PMS category is listed. Obviously I don't want to add products from the Men category. :)
  5. I have no idea what the problem is. I just uploaded a feed an hour ago and it was accepted without errors. I use 3.0.11
  6. roban

    BANNER LOGO

    You need to read the pinned posts in the skins and templates section or click on the link in my sig
  7. If you had read the pinned posts in this section you would have found this: http://www.cubecart.com/site/forums/index....amp;#entry86429
  8. That's a first. MSN Butterfly. Must be what? 10 people in the world using it? Worth checking out though. Is it downloadable?
  9. try adding before </head> in index.tpl and cart.tpl <!--[if IE]> <style> li {line-height:1.3em;} </style> <![endif]-->
  10. roban

    Login Form

    Ah! Have you checked at cubecart.org?
  11. roban

    Login Form

    Can you explain please?
  12. $glob['dbdatabase'] = 'TheDBName'; <-------correct info in real script $glob['dbhost'] = 'mysqldb'; <-------correct info in real script $glob['dbpassword'] = 'my password'; <-------correct info in real script $glob['dbprefix'] = ''; leave as is $glob['dbusername'] = 'my username'; <-------correct info in real script $glob['installed'] = '1';this is ok $glob['rootDir'] = ''; this is the server path ie. /home/mydomain name/public_html/store (no trailing /) $glob['rootRel'] = '/store/'; <-------???? $glob['storeURL'] = 'http://www.mydomainname.com/store/'; <-------correct info in real script ?> You will need to enter this info during install. Most of the time the installation script will give you the correct entries so you can leave blank except for your database info. To run the installation navigate to your url www.yourdomain.com/store/install
  13. THAT is wrong paths in your includes/global.inc file. BTW have done mucho installs by uploading and running the install routine. You have to have a database setup (empty) to do this AND the correct paths.
  14. What's an automatic install? Never heard of it unless it's through fantastico. I've done dozens of installs by uploading files and importing databases. This is the correct syntax: CREATE TABLE `{PREFIX}CubeCart_SpamBot` (`uniqueId` varchar(32) NOT NULL, `spamCode` varchar(5) NOT NULL, `userIp` varchar(15) NOT NULL,`time` int(10) NOT NULL default '0', PRIMARY KEY (`uniqueId`), UNIQUE KEY `uniqueId` (`uniqueId`) ) TYPE=MyISAM {PREFIX} is needed only if your tables have a prefix such as Store_CubeCart_SpamBot if not then simply delete {PREFIX} before running the query.
  15. A large percentage of the problems I encounter with users can be attributed to either user error or server error. I make no excuses for Cube Cart and will add that the user has a responsibility to ensure that the software is installed correctly. My own experience with new releases of ANY software product is to proceed with caution. I will not apply patches or fixes without understanding exactly what I'm doing and whether they work or not. I have seen mods applied to stores willy nilly without regard to the effect they have on each other. I am not saying this is the case with this poster's store, but before pointing fingers, I suggest users investigate ALL avenues. I have used this sytem for almost 3 years and it works perfectly.
  16. we need to put your correct path information back into your file. To do that we need cetain information: your store web address: http://www.whatever.com whether you have your store in a directory other than the root ie, store, shop, cart your web host server address your database name database user name database password absolute path to your store files If you do not have any of these, please PM me for additional help.
  17. When you upgraded did you change your includes/global.inc file
  18. If you're serious about your business, you should get a business license as a sole proprietor. You will need that license to open a business checking account. It's cheap and quick and you'll use your social security number as your tax id. You should also keep accurate records. I use Quickbooks but any accounting software will work. Quicken is also a good choice especially if you're not doing anything too complicated and when it comes time for taxes you can use Turbo Tax and download all your information right from Quicken. The people who are sub contracting to you will also have to give you their tax info so you can report it when you do your taxes. If you don't want to get 'legal' just yet you can always do a Pay Pal thing.
  19. Your colMid is too wide and is pushing your colRight out of alignment. Fix this in layout.css
  20. It takes about 3 months or longer. What have you done to promote your site? Link exchanges? Written any articles lately? BTW you've missed a wonderful opportunity by not putting a link to your store in your signature. It's a highly competitive world out there on the WWW and you have to work hard to get even close to the top. Go to www.roban.net, my SEO site and read a little on how to get yourself indexed. Then, get to work.
  21. language/your language ie. en/lang.inc Search for your term and change it.
  22. includes/content/index.inc.php (line 49) change to this: $latestProducts = $db->select("SELECT productId, image, price, name, sale_price FROM ".$glob['dbprefix']."CubeCart_inventory WHERE `showFeatured` = 1 ORDER BY RAND() DESC LIMIT ".$config['noLatestProds']);
×
×
  • Create New...