Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

bumbarash

Pioneers
  • Posts

    91
  • Joined

  • Last visited

Everything posted by bumbarash

  1. The solution is described here: http://www.oscommerce.com/forums/index.php?s=&...t&p=1372554 Do you know which Paypal and Google contributions you used?
  2. The redirect functionality is in catalog/mobile/includes/classes/mobile_redirect.php file If it detects that browser is iPhone or Blackberry, then it takes current file and insert directory name 'mobile/' in front of it. So in default OSC installation with SEO URL support url: http://yoursite.com/the-matrix-p-6.html is actually http://yoursite.com/product_info.php?products_id=6 and it will be redirected to http://yoursite.com/mobile/product_info.php?products_id=6 then you press "PC Site" button, redirect will be disabled. if you have a custom page , let say http://yoursite.com/frontpage.php then you need to create corresponding http://yoursite.com/mobile/frontpage.php Or you could play with .htaccess file to create redirect
  3. Changes in v1.2 More compatible with IE. PC Site button link to corresponding page on your main site When PC Site button clicked redirect is suspended
  4. Yes, as it was mentioned before "Checkout" currently doesn't work on IE. This contribution was initially developed for iPhone and tested on Safari and FF only. I'm working on IE compatibility right now.
  5. checkout_initialization_methods is new function has been introduced in the latest OSC v2.2 check your includes/classes/payment.php. If you don't have it you could add this: function checkout_initialization_method() { $initialize_array = array(); if (is_array($this->modules)) { reset($this->modules); while (list(, $value) = each($this->modules)) { $class = substr($value, 0, strrpos($value, '.')); if ($GLOBALS[$class]->enabled && method_exists($GLOBALS[$class], 'checkout_initialization_method')) { $initialize_array[] = $GLOBALS[$class]->checkout_initialization_method(); } } } return $initialize_array; }
  6. That's correct, it takes you to PC Site and then redirect it back to mobile. I will correct it for next release
  7. As for notices, please verify that you have require_once('includes/application_top.php'); as first line in your mobile/index.php and first two lines of code in mobile/includes/application_top.php are require('includes/configure.php'); require('../includes/configure.php'); About IEMobile: 1. Yes , current stylesheet is not compatible with IE. It was originally designed for iPhone/Safari. I will look at my css to make it compatible with IE. 2. I'm not familiar with IEMobile. What is "Single Column Mode"? BTW, what is the screen resolution on IEMobile?
  8. I don't think it will be any conflict. Is your mobile site included in your sitemap? I think it's better not to. Just add this lines to restrict boots to your mobile site. User-Agent: * Disallow: /mobile I'm not sure how "secondary" site will effect your google rating, so it's probably better to have it unindexed for now
  9. I didn't have a chance to test my contribution on other PDAs but you could definitely try Here is my test website. Try it on your PDA and please share your experience with us. Thanks
  10. Someone mentioned recently that mobile pages cause his Google Search to reindex his website. I'm not really sure what that means, but probably it's a good idea to disallow search boots on your mobile website and keep them on the main site. So if you have robots.txt file in your home directory, add those lines there User-Agent: * Disallow: /mobile Allow: / User-Agent: Googlebot-Mobile Allow: /mobile Allow: /
  11. Please check that line 152 in your catalog/mobile/shopping_card.php says <td align="right" class="main"><?php echo '<a href="' . tep_mobile_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . tep_mobile_button(IMAGE_BUTTON_CHECKOUT) . '</a>'; ?></td> Could you please describe in more details what is the problem with redirect?
  12. This SQL query is generated by splitPageResults class. This standard OSCommerce class. Please verify your catalog/includes/classes/split_page_results.php line 67 should be $this->sql_query .= " limit " . max($offset, 0) . ", " . $this->number_of_rows_per_page;
  13. :-) Never tried it on IE, I use FF for development .Just opened it first time in IE - looks ugly :-) My main concern is Safari, since it's a iPhone website I'll try to make it more IE compatible (just for fun of it) in the next release
  14. First of all, I want to make sure your main website is located at http://www.yoursite.com/catalog/ If not and you have it at http://www.yoursite.com/ , them mobile directory should be to be http://www.yoursite.com/mobile If link to your product look this way productxycv123.html it means you are using some search engine optimization contribution. Setting define ('SEO_ENABLED', 'false'); in your mobile/includes/configuration.php should solve this problem for Ultimate SEO URL contribution, but if you use something else please let me know. Link to your site would help
  15. Yes, add this at the end of your catalog/includes/application_top.php define(DIR_MOBILE_CLASSES , 'mobile/includes/classes/'); require(DIR_MOBILE_CLASSES . 'mobile_redirect.php'); $mobileRedirect = new mobileRedirect;
  16. It might be redirection problem or configuration problem. If you are on http://www.yoursite.com/catalog/mobile/index.php and you move your cursor over "About" button what link do you see in the browser status bar? Is it http://www.yoursite.com/catalog/mobile/about.php? If not then it's a configuration problem if you type directly http://www.yoursite.com/catalog/mobile/about.php and end up somewhere else it's a redirect. Could you send me your website url, so I could take a look?
  17. Thanks :) Any piece of advise how to make it more compatible with gazillion other contributions?
  18. Currently I tested iOSC with English, German and Spanish. For all other languages the content of the page should be the same as main catalog. There are few new text strings need to be translated Copy catalog/mobile/includes/languages/english.php to catalog/mobile/includes/languages/chinese.php In chinese.php translate English text ('Store', 'Account' and etc.) to Chinese If it solve the problem would send me the chinese.php translation file to be included in the next release Thanks
  19. New version is released Changes in v1.1 Support for some other addons: SEO URL, Thumbnailer Misspell for MOBILE_IMAGE_HEIGHT New color schema "PC Site" button Layout error are corrected
  20. Due OSCommerce design only modules (payment, shipping and order_total) are compatible,because they have a common interface. All other contributions need to be manually added to iOSC Mobile.
  21. If you use Auto Thumbnailer then you need to create new file catalog\mobile\product_thumb.php and add this line to it: <?php require_once("../includes/configure.php"); require_once("../product_thumb.php"); ?> Let me know if it help, I'll add it to the next release
  22. 1. You could change some color, text size and borders playing with stylesheet catalog\mobile\includes\mobile.css 2. Thanks for pointing thisout. I'll add this to list of fixes for the next release For now please line 41 in your index.php and mobile.php to this print tep_mobile_selection($path, array(tep_image(DIR_WS_IMAGES . $item['categories_image'], $item['categories_name'], 40), $item['categories_name'])); 3. Change line 31 in your catalog\mobile\includes\modules\products.php to $img = tep_image(DIR_WS_IMAGES . $listing['products_image'], $listing['products_name'], MOBILE_IMAGE_WIDTH, MOBILE_IMAGE_HEIGHT); and line 14 in catalog\mobile\includes\configure.php to define ('MOBILE_IMAGE_HEIGHT', '80px'); All this changes will be included in new release later this week
×
×
  • Create New...