Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

sunrise99

Pioneers
  • Posts

    214
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by sunrise99

  1. Dears, rewrites aren't supported on Windows servers. These rewrites for Linux mod_rewrite module. would you please help to provide the rewrites for Windows 'URL Rewrite' asap? we hosting support IIS URL Rewrite Module , Plesk for Windows 11.5.30 Microsoft IIS 7.5 now Thanks & Best Regards, Sunrise99
  2. we hosting support IIS URL Rewrite Module , Plesk for Windows 11.5.30 Microsoft IIS 7.5 now
  3. Dears, rewrites aren't supported on Windows servers. These rewrites for Linux mod_rewrite module. would you please help to provide the rewrites for Windows 'URL Rewrite' asap? Thanks & Best Regards, Sunrise99
  4. Thanks for your best module. linkin saying its changed its api policy https://developer.linkedin.com/support/developer-program-transition any update now?
  5. Yes.I change them on index.php & product_info.php try changing it from: if ( false === $text_array ) { to: if ( false == $text_array ) { But still have these issue now.
  6. Hey all, I also have like this error when access someone sub-catalog , any suggestion? PHP Catchable fatal error: Argument 1 passed to aPage_Modules::linkText() must be of the type array, null given, called in /home/xxx/public_html/xxx/includes/modules/ultimate_seo_urls5/page_modules/product_info.php on line 170 and defined in /home/xxx/public_html/xxx/includes/modules/ultimate_seo_urls5/abstracts/page_modules.php on line 338
  7. Hi, Seems The flat rate Priority International is missing , any update now? Thanks & Best Regards, Sunrise99
  8. your demo link is Mega Menu , seems no free module on here now. you can send email to me and let us talk [email protected]
  9. I think this is caused by php version, you must change all example: $header_tags_array['title'] ?: $review['products_name'] into $header_tags_array['title'] ? $header_tags_array['title'] : $review['products_name']
  10. This also can be Superfish Horizontal Category Menu, Jquery module , easy to install for everyone. Any question and support you can post on here. Thanks!
  11. This addon provides a Categories box styled with the jQuery Superfish plugin on TOP header. you can download from here Regards Sunrise99
  12. Dears, Now USPS can work, but no weight display 0.00 lbs , only display like the following . would you please help to give suggestion? All setting is okay from admin now. United States Postal Service (1 pkg, 0.00 lbs total)
  13. make it work with One Page Checkout for 2.3.1 module One Page Checkout for 2.3.1 http://addons.oscommerce.com/info/7993 One Page Checkout for 2.3.1 v2 by Web Source 5 paypal_wpp.php
  14. Demo can't work now. Demo: http://oscbyjetta.com/simplecheckout2.0/ Admin: http://oscbyjetta.com/simplecheckout2.0/admin admin 123456
  15. Dears, When I use One Page Checkout module, I can't see all CC input box? Would you please help to give some suggestion? Thanks & Best Regards,
  16. Just fix it. You need change admin/modules.php from old // USPS START if( is_array( $value ) ) $value = implode( ', ', $value); // USPS END To // USPS START if( is_array( $value ) ){ $value = implode( ", ", $value); $value = preg_replace ("/, --none--/", "", $value); } // USPS END
  17. Just fix it. You need change admin/modules.php from old // USPS START if( is_array( $value ) ) $value = implode( ', ', $value); // USPS END To // USPS START if( is_array( $value ) ){ $value = implode( ", ", $value); $value = preg_replace ("/, --none--/", "", $value); } // USPS END
  18. Dears, I install update USPS module. also got this error: United States Postal Service (1 pkg, 0.50 lbs total) -2147219101 Missing value for Service. Would you please help to give your suggestion asap?
  19. Dears, I install update USPS module. also got this error: United States Postal Service (1 pkg, 0.50 lbs total) -2147219101 Missing value for Service. Would you please help to give your suggestion asap?
  20. I tried various ways to output a sorted countries list, changing the country I wanted at top to be ID 0 and whatnot, didnt work. Finally I relaized I was overlooking the obvious of using <option .... selected> Thankfully, the requisite functions have built-in "selected" handling, thus setting your default country is easy. Edit create_account.php and find CODE <tr> <td class="main"><?php echo ENTRY_COUNTRY; ?></td> <td class="main"><?php echo tep_get_country_list('country') . ' ' . (tep_not_null(ENTRY_COUNTRY_TEXT) ? '<span class="inputRequirement">' . ENTRY_COUNTRY_TEXT . '</span>': ''); ?></td> </tr> you want to change this line CODE php echo tep_get_country_list('country') . to be CODE php echo tep_get_country_list('country','223') . 223 == the country ID for United States. YOu can set that to be any country by looking either in the database countries list for your countries ID, or even easier, look at the HTML of the create_account.php page and find where the country drop down list is, search for your country and grab the "value".
  21. Dears, any solution for SEO-G Removes all non-alphanumeric characters ? exsmple: SEO URL: function strip($string){ if ( is_array($this->attributes['SEO_CHAR_CONVERT_SET']) ) $string = strtr($string, $this->attributes['SEO_CHAR_CONVERT_SET']); $pattern = $this->attributes['SEO_REMOVE_ALL_SPEC_CHARS'] == 'true' // ? "([^[:alnum:]])+" // : "([[:punct:]])+"; ? "([^[:alnum:]])" : "/[^a-z0-9- ]/i"; $string = preg_replace('/(('))/', '-', strtolower($string)); //remove apostrophe - not caught by above //$anchor = preg_replace($pattern, '', mb_convert_case($string, MB_CASE_LOWER, "utf-8")); $anchor = preg_replace($pattern, '', strtolower($string)); $pattern = "([[:space:]]|[[:blank:]])"; $anchor = preg_replace($pattern, '-', $anchor); return $anchor; // return the short filtered name } # end function But now SEO-G use: function create_safe_string($string, $separator=SEO_DEFAULT_WORDS_SEPARATOR) { $string = preg_replace('/\s\s+/', ' ', trim($string)); $string = preg_replace("/[^0-9a-z\-_\/]+/i", $separator, strtolower($string)); $string = trim($string, $separator); $string = str_replace($separator . $separator . $separator, $separator, $string); return $string; } function create_safe_name($string, $separator=SEO_DEFAULT_WORDS_SEPARATOR) { $string = preg_replace('/\s\s+/', ' ', trim($string)); $string = preg_replace("/[^0-9a-z\-_]+/i", $separator, strtolower($string)); $string = trim($string, $separator); $string = str_replace($separator . $separator . $separator, $separator, $string); if(SEO_DEFAULT_WORD_LENGTH > 1) { $words_array = explode($separator, $string); if( is_array($words_array) ) { for($i=0, $j=count($words_array); $i<$j; $i++) { if(strlen($words_array[$i]) < SEO_DEFAULT_WORD_LENGTH) { unset($words_array[$i]); } } if(count($words_array)) $string = implode($separator, $words_array); } } return $string; } anyone can help to do SEO-G Removes all non-alphanumeric characters code? Thanks!!
  22. Thanks for your best contribution. Can I konw whether you can add "Purchase Without Account" function on later? Thanks & Best Regards, Sunrise99
×
×
  • Create New...