Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Project2016

Pioneers
  • Posts

    24
  • Joined

  • Last visited

Everything posted by Project2016

  1. Sorry Jack, I double checked and it was not creating the file again, I had not checked the date of the old one. But I found out what was wrong, the images directory was set to 777, and feeds was 755, so for some reason it did not create the file. 755 was read only on Group Permissions, and 777 is open to all! Presumably since its php & an SQL query that is creating and populating the file, the Group permissions are important. thanks for your time. Graham
  2. Hi I've got Googlefeeder v2.5 installed and this wonderful contribution worked like a dream. Until I changed hosts, transferred the database, the site is working fine, lots of orders, then ran it again to create the .txt datafile, but it is now not picking up any new products that I add to the database. i.e. it generates the file but does not include all the products. Any ideas much appreciated. Are there any settings that must be changed in the db or config files when you change hosts? cheers project2016
  3. Hi Jack I've got Google XML Sitemap SEO installed fine and everything work fine, except one thing. My URLs are generated by Ultimate SEO URLs 5, and so reflect the actual product or category name. Unfortunately the sitemap just reflects the original naming convention... i.e. http://www.mygreatsite.co.uk/product_info.php?products_id=63 should be http://www.mygreatsite.co.uk/my-lovely-product-p-63.html Any ideas, I would be very grateful for any advice you could give. cheers Graham
  4. Ah...that would explain it then - thanks, apologies for silly question! by the way, yr contrib is awesome! graham
  5. Jack Thanks for your replies. Stupid question I know but I have installed Sitemap_SEO_V_1.7, but don't have any xml files. How do I generate them? Do I need to have the original contribution installed? The sitemap.php works fine, but can't find the xmls.....any advice very much appreciated... thanks, Graham
  6. Hi Robert Just to close this out, I opened a new hosting account and "standard" works perfectly on a fresh 2.2rc2a. I have yet to upload my normal site (heavily customised) + db to the new host. However to get "rewrite" working on the fresh one I had to delete "Options +FollowSymLinks" from .htaccess, as previously it gave internal server error. I have no idea how or why it works now as a result of this, but it does. So I thought let's try deleting Options +FollowSymLinks from the GoDaddy hosted site, and sure enough.....it still didn't work. But a different error message this time - Error 310 (net::ERR_TOO_MANY_REDIRECTS): There were too many redirects. Sorry about the above which is probably completely pointless information but someone might find it useful! Now, on to KissMT! cheers!
  7. I've tried both standard and traditional and get 404s on the fresh install. But I have not verified if mod_rewrite is enabled and AllowOveride set to All. How do I do this?
  8. I didn't trust my own installation of your wonderful contribution on my heavily customised store, so I installed a fresh OSC 2.2rc2a in a subdomain with a new db as I couldn't believe that godaddy as large an organisation as they are would not accept path based urls. And it confirmed that you were right Robert, or at least it still doesn't work, due presumably to the host as you say. So two quick questions, - Is there a php setting or other setting I can ask them to set so that my server does accept path based urls? - If not, are there any UK based hosting companies that DO accept path based urls so I can make your contribs work?
  9. Thanks for the advice, its not the first time I've been on the point of moving away from GoDaddy due to some other issues. But if I'm not using rewrites in .htaccess, standard path based urls should work no?
  10. Ok thanks for your reply Robert, by the way the old version of SEO URLs (chemo) didn't work either which is why I ungraded to php5.2.5 and installed yours! Has anyone else got this contribution working on a GoDaddy hosted server? Thanks, Project2016
  11. I just tried www.mysite.com/index.php/test and I get the 404. I would be surprised if GoDaddy didn't allow path based urls. The only other thing I can think of is that I have lots of contribs installed. Particular ones that come to mind that might interfere are Mopics and More Categories, hence the infobox=0 and infobox=1 in the URL, etc. Any thoughts? Would switching on debug reporting help? Graham
  12. Hi Rob Thanks for your reply. From my front page (www.mysite.co.uk) when I click on the category I get the 404. This is what's displayed in the URL: www-dot-mysite-dot-co-dot-uk/index.php/categoryname-c-56?infoBox=0&osCsid=fbjivgm1ncurd5lctgm3f7ub42 I'm happy using Standard Seo Urls for now (does not require mod_rewrite), so I understand from reading the instructions very slowly and very carefully that I don't need to modify .htaccess. I therefore assume that my host does not need to support RewriteRules if I am happy using the Standard Seo URLs. But after it didn't work, I did update .htaccess anyway - I renamed mine (full of security fixes) and uploaded yours, with RewriteBase / as my site is in the root (see below). Before installing yours I deinstalled SEO URLs 2 manually, by reversing the instructions to install, replacing the code, then using your tool to remove the db tables. I have a heavily customised site so using the original files is not really an option. So, I still get the 404. Can you offer any further suggestions - anything gratefully received. Project2016 this is my .htaccess (same as yours funnily enough!) # If you are getting errors you may need to comment this out like .. # Options +FollowSymLinks Options +FollowSymLinks <IfModule mod_rewrite.c> RewriteEngine On # RewriteBase instructions # Change RewriteBase dependent on how your shop is accessed as below. # http://www.mysite.com = RewriteBase / # http://www.mysite.com/catalog/ = RewriteBase /catalog/ # http://www.mysite.com/catalog/shop/ = RewriteBase /catalog/shop/ # Change RewriteBase using the instructions above RewriteBase / RewriteRule ^(.*)-p-([0-9]+).html$ product_info.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-c-([0-9_]+).html$ index.php?cPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-m-([0-9]+).html$ index.php?manufacturers_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pi-([0-9]+).html$ popup_image.php?pID=$2&%{QUERY_STRING} RewriteRule ^(.*)-pr-([0-9]+).html$ product_reviews.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pri-([0-9]+).html$ product_reviews_info.php?products_id=$2&%{QUERY_STRING} # Articles contribution RewriteRule ^(.*)-t-([0-9_]+).html$ articles.php?tPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-a-([0-9]+).html$ article_info.php?articles_id=$2&%{QUERY_STRING} # Information pages RewriteRule ^(.*)-i-([0-9]+).html$ information.php?info_id=$2&%{QUERY_STRING} # Links contribution RewriteRule ^(.*)-links-([0-9_]+).html$ links.php?lPath=$2&%{QUERY_STRING} # Newsdesk contribution RewriteRule ^(.*)-n-([0-9]+).html$ newsdesk_info.php?newsdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-nc-([0-9]+).html$ newsdesk_index.php?newsPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-nri-([0-9]+).html$ newsdesk_reviews_info.php?newsdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-nra-([0-9]+).html$ newsdesk_reviews_article.php?newsdesk_id=$2&%{QUERY_STRING} </IfModule>
  13. Hi there I've just installed this excellent contrib and have a 404 error when I click on any category - this is the URL: http://www.mysite.co.uk/index.php/categoryname-c-56?infoBox=0&osCsid=8fj4976ms5hsi4k5v2r5dueum6 Any insight would be gratefully received. thanks, project2016
  14. Thanks for your replies. What is the header tags code? I didn't realise there was header tags code in the contrib Urls5. I can't see any reference to it in the add ons text for 6768? Thanks
  15. Am I right in thinking...that (having read quite alot on this forum + OSC site etc,) there are really only 3 broad things to do to get a site indexed properly in the search engines.. 1. sort out the URLs so that they reflect the page content, i.e. ultimate seo urls or something similar 2. sort out all the meta tags, i.e. title, desc, keywords, h1, etc etc i.e. KissMT or other 3. make sure you write good original content Am I missing something? cheers project2016
  16. Ultimate_SEO_URLSv22d_5 I installed it a while ago and have noticed that the url reads like this: http://www dot mydomain dot com/-c-56.html?infobox=0&osCsid=27ad9c2a3170d2a0475affefbee0ce3d so the category name is not in the URL and the products URL look like this: http://www dot domain dot com/---categoryname--p-63.html?osCsid=27ad9c2a3170d2a0475affefbee0ce3d so the category name IS there but the product name not. I've played with the options in admin (that of course is not called admin), and nothing changes. Anyone know what's going on here? much obliged project2016
×
×
  • Create New...