-
Content count
5,103 -
Joined
-
Last visited
About Johnson
- Birthday 12/06/1959
Profile Information
-
Real Name
Matti Ressler
-
Location
Sydney, Australia
-
Interests
Programming - PHP, MySQL, Javascript, C/C++<br /><br />osCommerce :)<br /><br />Music<br /><br />Travel<br /><br />Gemstones
- Website
-
basictoclassic started following Johnson
-
To fix your error the function must go into /admin/includes/functions/general.php :) Matti
-
HSBC Problems + PayPal Showing ?0 as total
Johnson replied to affordableweb-design.co.uk's topic in Other
Hey - it was 3:00am - I was only kidding (smiley) :) The cause is most likely (as you say) the server upgrade. There are register_globals patches to be found in the Contributions section. I had an installation the other day on a PHP5, MySQL 5 server the other day, the following worked in the catalog .htaccess file: php_value register_globals 1 php_value register_long_arrays 1 Try that first - if not and you do have PHP5, you will need to ask your host to either change the values, or at least register_long_arrays and then apply the register_globals patches. Make sure you begin with the latest patched version of osCommerce (has MySQL 5 patches already done) Matti -
HSBC Problems + PayPal Showing ?0 as total
Johnson replied to affordableweb-design.co.uk's topic in Other
So what? is it "affordable web design" because you get us to do your work for you? Get lost SPAMMER! :P Matti -
Master Products-MS2 v2.00 has been released! Please find the new support thread here: http://forums.oscommerce.com/index.php?showtopic=217349 Please do not post support questions for previous versions to the new thread :) Thanks! Matti
-
You probably have not made the required changes to /includes/application?top.php :) Matti
-
Ok - I recently did this for a client and its kinda tricky. It requires sub queries, so the MySQL version must be 4.1 or higher. An example of the type of query required includes something like this: and p2pef.products_extra_fields_value IN ('value1', 'value2, 'value3' ) group by p.products_id having count(p2pef.products_extra_fields_value) = 3 What I did was a custom search form, NOT fully dynamic according to the extra fields (MUCH more work). Matti
-
No idea.... I'm sure it could be made to, its based on the original contribution. Matti
-
It means that you have not installed properly - the function is missing from /admin/includes/functions/general.php :)
-
Think *minimalist* >> what is really needed to get this working? All that is needed to have Master products working with this file is the ability to set: Master Master Status Listing Status Three settings. Matti
-
You need to do this with javascript - look at how its done in create_account.php :) Matti
-
!. This is set in admin>>configuration>>maximum values>> search results 2. In /includes/modules/master_listing.php change: case 'MASTER_LIST_NAME': $lc_align = ''; if (isset($HTTP_GET_VARS['manufacturers_id'])) { $lc_text = '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'manufacturers_id=' . $HTTP_GET_VARS['manufacturers_id'] . '&products_id=' . $listing['products_id']) . '">' . $listing['products_name'] . '</a>'; } else { $lc_text = ' ' . $listing['products_name'] . '</a> '; } break; to: case 'MASTER_LIST_NAME': $lc_align = ''; if (isset($HTTP_GET_VARS['manufacturers_id'])) { $lc_text = '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'manufacturers_id=' . $HTTP_GET_VARS['manufacturers_id'] . '&products_id=' . $listing['products_id']) . '">' . $listing['products_name'] . '</a>'; } else { $lc_text = '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $listing['products_id']) . '">' . $listing['products_name'] . '</a>'; } break; Now that his omnipotence has kicked me off the osCommerce Team I should have a new release out in a couple of weeks :) You may contact me privately if you wish to make a donation. Matti
-
Exactly as above :blink: Matti
-
Yes, you can track stock with slaves. http://google-store.com Matti
-
In product_info.php simply comment: echo TEXT_STOCK; Like this: //echo TEXT_STOCK; Matti