-
Content count
49 -
Joined
-
Last visited
Profile Information
-
Real Name
Mylane
- Website
-
how to add Search Box to QUICK UPDATES ?
mylane replied to mondobongo3's topic in General Add-Ons Support
anyone? -
how to add Search Box to QUICK UPDATES ?
mylane replied to mondobongo3's topic in General Add-Ons Support
bump -
Forum of "Upload and discplay video extract"
mylane replied to josecarlos_pb's topic in General Add-Ons Support
Hi Guys, I really like this contribution, my only problem is I don't know how to change the video player. Can you guys help me? Does anyone using a different skin? Thanks in advance. -
Did you ever make it work using paypal?
-
http://addons.oscommerce.com/info/5833 Adjust to Minimum Order Amount V 1.0 I installed this module and everything went fine until you do a checkout using paypal payment method. The minimum order price is not passing to Paypal. I'm using Paypal IPN. Is this a problem in Paypal? Help please. Thanks.
-
Hi Jack, I ran the repair to my whole database and there is no error, I ran the script again and encountered the same error. I will try to contact my web hosting. Thanks
-
Hi Jack, Your last version is actually the one I installed. Thats the error I'm having. Any thoughts? Thanks
-
Hi Guys, I just installed this contribution to one of the websites I'm managing. I have this errors: Anyone here got the same problem like me? Please help. Thanks! :)
-
free shipping by categories support thread
mylane replied to magicandmischief182's topic in Shipping Modules
The package include the function-to-add-if-installing.txt....the instruction are there. add to (if you dont have such function) catalog\includes\functions\general.php function tep_get_categories_name($cID, $language = ''){ global $languages_id; if (!tep_not_null($language)) $language = $languages_id; $cname = tep_db_fetch_array(tep_db_query('select categories_name from '.TABLE_CATEGORIES_DESCRIPTION.' where categories_id="'.$cID.'" and language_id="'.$language.'"')); return $cname['categories_name']; } add to admin/includes/functions/html_output.php function tep_draw_pull_multiselect_menu($name, $values, $defaults, $parameters = '') { $field = '<select multiple name="' . tep_output_string($name) . '"'; if (tep_not_null($parameters)) $field .= ' ' . $parameters; $field .= '>' . "\n"; if (empty($default) && isset($GLOBALS[$name])) $default = stripslashes($GLOBALS[$name]); for ($i = 0, $n = sizeof($values); $i < $n; $i++) { $field .= '<option value="' . tep_output_string($values[$i]['id']) . '"'; if (in_array($values[$i]['id'], $defaults)) { $field .= ' SELECTED'; } $field .= '>' . tep_output_string($values[$i]['text'], array('"' => '"', '\'' => ''', '<' => '<', '>' => '>')) . '</option>'; } $field .= '</select>'; return $field; } add to admin/includes/functions/general.php function tep_get_categories($categories_array = '', $parent_id = '0', $indent = '') { global $languages_id; if (!is_array($categories_array)) $categories_array = array(); $categories_query = tep_db_query("select c.categories_id, cd.categories_name from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where parent_id = '" . (int)$parent_id . "' and c.categories_id = cd.categories_id and cd.language_id = '" . (int)$languages_id . "' order by sort_order, cd.categories_name"); while ($categories = tep_db_fetch_array($categories_query)) { $categories_array[] = array('id' => $categories['categories_id'], 'text' => $indent . $categories['categories_name']); if ($categories['categories_id'] != $parent_id) { $categories_array = tep_get_categories($categories_array, $categories['categories_id'], $indent . ' '); } } return $categories_array; } //allows selecting many categories a ta time function tep_cfg_select_multicategories($key_value = '', $key) { if (tep_not_null($key_value)) $value_array = explode(', ',$key_value); else $value_array = array(); $name = ((tep_not_null($key)) ? 'configuration[' . $key . ']' : 'configuration_value').'[]'; $string = tep_draw_pull_multiselect_menu($name,tep_get_categories(), $value_array,' size="8" '); return $string; } function tep_cfg_show_multicategories($key_value = ''){ global $languages_id; $cat_str = ''; if (tep_not_null($key_value)){ $value_array = explode(', ',$key_value); for($i=0, $x=sizeof($value_array); $i<$x; $i++){ $cat_str .= tep_get_category_name((int)$value_array[$i], $languages_id).', '; } $cat_str = substr($cat_str, 0, -2); } return $cat_str; } FILE: admin\modules.php find: case 'save': while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) { after it add: ( only if you don't have such piece of code ) if( is_array( $value ) ){ $value = implode( ", ", $value); $value = ereg_replace (", --none--", "", $value); } install in admin, make some configuration work (see help there). thats all. -
In includes/functions/header_tags.php, find and remove this line echo 'path '.HEADER_TAGS_ADD_CATEGORY_PARENTS;
-
Unable to process payment. Shipping address provided by the merchant is invalid
mylane replied to kv.gokul's topic in PayPal
mine is not live so far, just in testing mode (sandbox) but I'm experiencing same error as well: Unable to process payment. Please contact the merchant as the shipping address provided by the merchant is invalid, and the merchant has requested that your order must be shipped to that address. Same error when I used Paypal IPN and Enable PayPal Website Payments Standard.... Help please :( -
I have the same problem, I got no error after I uploaded all the files and followed the read me file. I can create articles in the admin section but it wont show up in the site page. I tried to install other complete packages of article manager but I'm having the same result.
-
Hi I got mine working now, I'm using rc1 oscommerce, I just used the other package not the latest one. it works good I'm in the process of modifying the css to fit to my website.
-
This contribution is what I really need, nice to see its working on your site. :)