Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

tec

Pioneers
  • Posts

    568
  • Joined

  • Last visited

Everything posted by tec

  1. Hi there, hope you are all doing well. I have a client who is looking for a specific type of delivery. It is store delivery but with a twist. She would like the customer to be able to select their shipping day, however, it is restricted by day of the week and city or postal code, whichever is easiest. Lets pretend that 'THESE AREAS' are specific cities or zip codes. So we have 5 working days, lets say that on... Monday they ship free to 'THESE AREAS ONE' Tuesday they ship free to 'THESE AREAS TWO' so on and so forth however, say you live in 'THESE AREAS ONE' but would like to have your delivery on a Tuesday instead of the Monday, then there would be a charge. So basically If you get delivery to your area on Monday, and you want it delivered Monday, it's free delivery, but if you want it delivered on Wednesday, you'll pay the fee. I hope this all makes sense, and someone can shout out some advice. Thankies in advance T
  2. Hi there hope everyone is well, my client keeps getting an email with this in it UPSXML TimeInTransit Error: 270006: Invalid Destination Country Code in TimeInTransit experienced by customer with id I took a look at the settings in the admin and everything looks to be ok. She only offers shipping within the US and all countries outside of the US have been removed from the admin to prevent people from other countries trying to place an order. Any insight would be great, thank you T
  3. Was just wondering if anybody was still watching this thread? I just wanted to get a quick confirmation on something. Thankies
  4. thank you kindly for your help...... didnt even dawn on me about the rewrite base url....think its time for a nap :) i was able to get the sef urls to work....THANK YOU SO MUCH!! would you happen to know how one might remove this from categories -c-34 and this from products -p-104 again, i really appreciate your help, thank you kindly T
  5. Thank you kindly for your reply. I have learned that it is not easy to try to figure out what version of the Ultimate SEF urls is being used, as its not really noted anywhere. Another thing i learned was, there was code missing from the includes/application_top.php when i put the needed code into this file, i did get sef urls, however, along with the sef urls i got an error that read something like 404 index.php could not be found however, the urls were reading as they should, for instance, MYSITE.com/for-feet i tried dumping the cache via the admin to try to eliminate the 404 error but it did not seem to help the problem any further thoughts would be greatly appreciated thanks muchly t
  6. Hey everyone, hope we are all doing well. A client came to me with his site to do some work on it, i noticed in the admin and htacsess file that he has ultimate seo urls installed, however on the categories and products there are no sef urls. The information pages such as shipping, about us etc all have sef urls but i cant get the categories and products to have them. Anyone know what the problem might be? here is the htaccess file # $Id: .htaccess,v 1.3 2003/06/12 10:53:20 hpdl Exp $ # # This is used with Apache WebServers # # For this to work, you must include the parameter 'Options' to # the AllowOverride configuration # # Example: # # <Directory "/usr/local/apache/htdocs"> # AllowOverride Options # </Directory> # # 'All' with also work. (This configuration is in the # apache/conf/httpd.conf file) # The following makes adjustments to the SSL protocol for Internet # Explorer browsers <IfModule mod_setenvif.c> <IfDefine SSL> SetEnvIf User-Agent ".*MSIE.*" \ nokeepalive ssl-unclean-shutdown \ downgrade-1.0 force-response-1.0 </IfDefine> </IfModule> # If Search Engine Friendly URLs do not work, try enabling the # following Apache configuration parameter # AcceptPathInfo On # Fix certain PHP values # (commented out by default to prevent errors occuring on certain # servers) # #<IfModule mod_php4.c> # php_value session.use_trans_sid 0 # php_value register_globals 1 #</IfModule> # Ultimate SEO URLs BEGIN Options -Indexes Options +FollowSymLinks RewriteEngine On RewriteBase /catalog/ RewriteRule ^(.*)-p-(.*).html$ product_info.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-c-(.*).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 ^(.*)-t-([0-9]+).html$ articles.php?tPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-a-([0-9]+).html$ article_info.php?articles_id=$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} RewriteRule ^(.*)-i-([0-9]+).html$ information.php?info_id=$2&%{QUERY_STRING} # Ultimate SEO URLs END thanks muchly for all your help T
  7. I am having the same issues, and running the store without sef urls is not an option. The site has been live for a couple of years now and is well indexed using the sef urls.. how does one go about fixing the issue of the confirmation page sending you back to the payment page? thank you kindly for sharing your mod with the community :)
  8. thank ya kindly my friend :) i shall give it a go and let you know how it all gos for me :)
  9. paypal pro is available for canadians, canadian paypal pro i was wondering if someone can tell me if this mod will work for a canadian cart? thanks muchly Tanya
  10. hiya :) when i opended the sql file in my notepad the last line read as contrib_support varchar( 55 ) NULL, there was no closing line or ) in the file after i added PRIMARY KEY (contr_id) to the end, the file ran fine );
  11. haha ok, its been a long day and i know i am missing the obvious.. i have installed the latest version...but i cant find.. ****FIND: tep_db_query("update " . TABLE_CONFIGURATION . " set configuration_value = '" . $HTTP_POST_VARS['lastcheck'] . "', last_modified = now() where configuration_id = PUT YOUR CONFIG ID HERE"); REPLACE: PUT YOUR CONFIG ID HERE with THE CONFIGURATION ID OF the column 'Last Contrib Check' of the confirguration table from PHPMyAdmin where do i find "THE CONFIGURATION ID OF the column 'Last Contrib Check' of the confirguration table" i looked under the config table but i dont see 'last contrib check' :blush:
  12. fixed it.. CREATE TABLE contrib_tracker( contr_id int( 11 ) NOT NULL AUTO_INCREMENT , contrib_osc_id int( 6 ) NOT NULL , contrib_name varchar( 255 ) NOT NULL default '', contrib_link varchar( 255 ) default '', config_comments longtext, STATUS tinyint( 1 ) NOT NULL default '2', note_created datetime NOT NULL default '0000-00-00 00:00:00', contr_last_modified datetime NOT NULL default '0000-00-00 00:00:00', last_update datetime NOT NULL default '0000-00-00 00:00:00', contrib_vers varchar( 7 ) default '', contrib_support varchar( 55 ) NULL, PRIMARY KEY (contr_id) );
  13. when i try to run the sql file in phpmyadmin i get the following error CREATE TABLE contrib_tracker( contr_id int( 11 ) NOT NULL AUTO_INCREMENT , contrib_osc_id int( 6 ) NOT NULL , contrib_name varchar( 255 ) NOT NULL default '', contrib_link varchar( 255 ) default '', config_comments longtext, STATUS tinyint( 1 ) NOT NULL default '2', note_created datetime NOT NULL default '0000-00-00 00:00:00', contr_last_modified datetime NOT NULL default '0000-00-00 00:00:00', last_update datetime NOT NULL default '0000-00-00 00:00:00', contrib_vers varchar( 7 ) default '', contrib_support VARCHAR( 55 ) NULL ; MySQL said: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 12 any thoughts? :)
  14. hey everyone, how are we all doing? i was able to get rid of the table error i was having earlier (client purchased this mod for creloaded) problem is, i cant get the points redeem box to show up on the checkout_payment page any thoughts? has anyone used the purchased version for cre?
  15. hey everyone :) my client purchased the creloaded version of the points and rewards system, however..upon trying to create account..you are faced with this... any help would be great... thanks muchly T
  16. STS is a templating system that allows you to customize the look of your site using html/php rather than just php, you can also create custom templates for different pages (areas) of the cart. It is a very indepth and flexable templating system, and i suggest it to be used by anyone who is looking to be able to jump into their cart and really make it the way they want to. the mouse over pop up images you are looking for is a seperate mod and can be found here.. pop up mod hope this helps :)
  17. hey there everyone...i was wondering if this thread was still active... i am having a couple of problems with the contribution
  18. did you ever get that fixed? i am having the same issue
  19. hey everyone, i am getting this error when trying to using the xml mod i have tried every address under the sun, but cant get it to work...i have tried copying the american address that the store owner uses in the admin, but even that doesnt get me anywhere
  20. http://www.oscommerce.com/forums/index.php?s=&...st&p=286370
  21. got it in includes/colum_left.php // bof infobox on index only if (isset($HTTP_GET_VARS['products_id'])) { } else { if (isset($cPath) && tep_not_null($cPath)) { } else { include(DIR_WS_BOXES . 'animals.php'); } } //eof infobox on index only
  22. hey everyone, ok here is my question....is it possible to install this mod into a cart that is already live? i know it says that it is for a new store only...but i was just hoping that perhaps i could do a file compare or something similar
  23. hmm..i had a feeling that was too easy...seems i do not quite have it yet, as the info box is still showing up on my category pages.....how do i set it to ONLY show on the main index.php?
  24. haha, the most obvious always gos unnoticed doesnt it? i was able to get my desired result by simply adding an includes tag to the index.php file for the one info box i wanted to show on only that page ;)
  25. hi there :) I currently am not using the sts system on this particular cart, i was just hoping for a quick way to get rounded corners on both top and bottom of the info boxes, i did however come up with a solution, had to hard code every info box mind you, but it worked :)
×
×
  • Create New...