Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

voided

Pioneers
  • Posts

    314
  • Joined

  • Last visited

About voided

  • Birthday 09/22/1978

Profile Information

Recent Profile Visitors

12,795 profile views

voided's Achievements

  1. You need to process them trough photoshop first (80% or 90% quality)... seriously those file sizes are humongous for jpg's. maybe your scanner just renames the files as jpg's but doesn't actually do anything with them. Unless you're on a dedicated server and you can change your php.ini setting (max_execution_time or max_input_time and upload_max_filesize) no script will help you since you're trying to upload a 4MB file and the webserver is giving you the middle finger ;)
  2. are the pictures big because they are not in jpg or because they are really big in width/height? if its because they aren't in jpg its quite easy to process a whole folder of images in photoshop with 1 click... google for "photoshop batch processing" for more info
  3. i'd like to report that seo-g works perfectly with manufacturers and sorting and any other extra pulldowns.... here's an example for the manufacturers in index.php $filterlist_query = tep_db_query($filterlist_sql); if (tep_db_num_rows($filterlist_query) > 1) { echo tep_draw_form('filter', FILENAME_DEFAULT, 'get') . '<b>show:</b> '; if (isset($HTTP_GET_VARS['manufacturers_id'])) { echo tep_draw_hidden_field('manufacturers_id', $HTTP_GET_VARS['manufacturers_id']); $options = array(array('id' => '', 'text' => TEXT_ALL_CATEGORIES)); } else { echo tep_draw_hidden_field('cPath', $cPath); $options = array(array('id' => '', 'text' => TEXT_ALL_MANUFACTURERS)); } echo tep_draw_hidden_field('sort', $_GET['sort']).(isset($_GET['list']) ? tep_draw_hidden_field('list', $_GET['list']) : '') . (isset($_GET['max']) ? tep_draw_hidden_field('max', $_GET['max']) : ''); ?> <select class="xdrop1" name="select2" onChange="if(options[selectedIndex].value) window.location.href=(options[selectedIndex].value)"> <option value="<? echo tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('filter_id','page', 'max', 'sort')) . ''); ?>">All Manufacturers</option> <? while ($filterlist = tep_db_fetch_array($filterlist_query)) { ?> <option value="<? echo tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('filter_id','page', 'max', 'sort')) . 'filter_id='.$filterlist['id']); ?>" <?php if($HTTP_GET_VARS['filter_id'] == $filterlist['id'] ) {echo 'SELECTED';}else{ echo '';} ?>><? echo $filterlist['name']; ?></option> <? } ?> </select> <? echo tep_hide_session_id() . '</form>' . "\n"; } and for the manufacturers infobox (includes/boxes/manufacturers.php) on the column_left.php i used this (you should be able to find out where this goes in the file): // Display a drop-down $manufacturers_array = array(); if (MAX_MANUFACTURERS_LIST < 2) { $manufacturers_array[] = array('id' => '', 'text' => PULL_DOWN_DEFAULT); } echo tep_draw_form('manufacturers', tep_href_link(FILENAME_DEFAULT, '', 'NONSSL', false), 'get'); ?> <select class="xdrop1" name="select3" onChange="if(options[selectedIndex].value) window.location.href=(options[selectedIndex].value)"> <option value="<? echo tep_href_link(FILENAME_DEFAULT); ?>">Please Select</option> <? while ($manufacturers = tep_db_fetch_array($manufacturers_query)) { ?> <option value="<? echo tep_href_link(FILENAME_DEFAULT, 'manufacturers_id='.$manufacturers['manufacturers_id']); ?>" <?php if($HTTP_GET_VARS['manufacturers_id'] == $manufacturers['manufacturers_id'] ) {echo 'SELECTED';}else{ echo '';} ?>><? echo $manufacturers['manufacturers_name']; ?></option> <? } ?> </select> <? } ?>
  4. http://addons.oscommerce.com/info/160
  5. you can see a working version here : http://www.velvetego.com/dior-sunglasses-s...r-2-s-p-767.htm I'm working on a new site and i think I'll try pete's popup window thing this time (too many attributes to list on the product page) btw, anyone knows of some other way to list a large number of attributes? (possibly on the product page itself this time) hmm.... is there a way to have categories of attributes or is that what attributes sets does? :)
  6. oh and btw this works good in firefox but not too much in IE... any ideas to fix it up for IE?
  7. i had the same problem, i fixed it by doing 2 things... i'm not sure which one did it but here it is anyways: 1)instead of using smoothbox.css i copied the content of smoothbox.css into my stylesheet.css 2) when i downloaded mootools.v1.11.js i named it mootools.js so this time i renamed it back to mootools.v1.11.js (i'm pretty sure this was the problem) and... it works now :)
  8. contribution: http://www.oscommerce.com/community/contributions,3074
  9. done... preview : building contrib, posting it as soon as its ready. next update : 1) add bank phone number input field to the checkout 2) add a copy button(javascript) next to the data (gpg encrypted text) box to copy the contents to the clipboard (no need to select text & copy). any better ideas here? 3) add a delete button to clear the data field (security reasons...)
  10. i managed to get the cc.php run the ccgpg.php code... now all i need is an authorize account so i can start on it... (in about a week or 2)
  11. btw.. i'm working on a contrib that would join ccgpg & authorize... don't know if i'll be able to but i'll try ;)
  12. an authorize support tech actually told me an option i have (we have big orders/ over 5k each) is to grab the numbers before we send it to the gateway so we can do aditional checks on the cards (ie call the bank)... so i don't see whats the problem here...
  13. my bad, that was another contrib (which wasn;t updated for ms2 :/ )
×
×
  • Create New...