Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

dsonnet

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by dsonnet

  1. Hi just posted a fix to the buggy javascript code on the contribution page, I still encounter some display issues with IE7 : Smartoys Jeux video if someone could fix this problem I'll appreciate.
  2. I Started using the newsletter subscriber contribution, I have a very large customer base (10.000 +) with 6.000 newsletter subscribers. I'm worried that many customers would'nt receive their newsletter because the script doesn't get time to complete because of the restrictive max_execution_time on the server. Do some people encoutered the same problem ? How did they solve it ? I'd rather avoid increasing the php limit since there are other php sites on the server and that I'm not controlling the code.
  3. Here is a good fix to "the headers already sent" problem caused by the redirection beeing called (in posting.php, privmsg.php, profile.php) after some output has been sent in module.php. Set the redirection in the begining of the module.php $file=$HTTP_GET_VARS['file']; switch($file){ case"profile.php": if ( !tep_session_is_registered('customer_id') ) { $navigation->set_snapshot(); tep_redirect(tep_href_link(FILENAME_LOGIN, '', 'SSL')); } case"privmsg.php": if ( !tep_session_is_registered('customer_id') ) { $navigation->set_snapshot(); tep_redirect(tep_href_link(FILENAME_LOGIN, '', 'SSL')); } case"posting.php": if ( !tep_session_is_registered('customer_id') ) { $navigation->set_snapshot(); tep_redirect(tep_href_link(FILENAME_LOGIN, '', 'SSL')); } }
×
×
  • Create New...