Jump to content

Advancewebsoft

New Members
  • Posts

    8
  • Joined

  • Last visited

    Never

Contact Methods

  • Website URL
    http://www.advancewebsoft.com

Profile Information

  • Gender
    Not Telling

Advancewebsoft's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. New alternative AJAX checkout page loads dynamic content instantly, while customer selects shipping and payment methods, change delivery or billing address without slow whole page reloading. For example, if customer selects shipping method, only shipping area of the page is modified leaving the rest of the page as is. This speeds up the whole checkout process, and customers is presented with a nice user-friendly interface to complete checkout on your store. An alternative way to 'purchase without account'. Look here: http://www.advancewebsoft.com/demo/osc/ All possible bugs, fixes, suggestions and modification are appreciated. [b]Edit by neylitalo:[/b] Changed link to that of the demo.
  2. Please post a code in here, because your link does not work :( To skip those errors in future with {}{}, use software such as ZEND which allows to open/close a piece of code starting with { and ending with }.
  3. Just correct your code, from this [code]$image = ("<img src="" . tep_output_string($src) . "" border="0" alt="" . tep_output_string($alt) . """);[/code] to this [code]$image = '<img src="' . tep_output_string($src) . '" border="0" alt="' . tep_output_string($alt) . '"';[/code] from this [code]$image .= " title=" " . tep_output_string($alt) . " "";[/code] to this [code]$image .= ' title=" ' . tep_output_string($alt) . ' "';[/code] from this [code]$image .= " width="" . tep_output_string($width) . "" height="" . tep_output_string($height) . """;[/code] to this [code]$image .= ' width="' . tep_output_string($width) . '" height="' . tep_output_string($height) . '"';[/code] You also have some error with { } messed up, correct them too. And be ware with OsCommerce modifications in future :)
  4. Hello, A register_globals=on is not a security issue for Oscommerce. Especially for Ms2.2 version. It have some vulnerabilites, of course, but very very low (i.e. someone could steal customers info - name, surname, telephone) - also not so easy. And thats all, no security leaks within register_globals. But if you wish to use register_globals=OFF besides, you could use one of the contributions made for this, search a community/ contributions of the official oscommerce site, or wait until MS3 release will be out - it will have this support.
  5. Hello The problem you have is somewhere in the area of this code: $items =  $_POST['cat' . $i]; $no_items = count($items); $z = 0; while ($z < $no_items) {     $message .= $items[$z] . "<br>";     $z++; } The way you build a $message variable is wrong for some reason (still dont have a full code, so cant help) - please recheck the way you build it, and if it is really a STRING, so tep_db_preform functions should functions properly.
  6. Hello, To remove these messages, first of all 1) Make sure you have a /tmp directory, it exists. The /tmp directory is specified in a php.ini file, and if you're using Osc Ms2.2 in the admin->Configuration->Sessions. 2) To remove the session error you could also use the define('STORE_SESSIONS', 'mysql'); in the catalog/includes/configure.php file. 3) Delete the installation directory 4) As you're using windows, make your catalog/includes/configure.php - non writable, set 'read-only' checkbox in the file atrributes. Good luck.
  7. Hello, The error you have (a limit -x,x problem) is a bug in oscommerce store. Please find out that oscommerce have released a new update in later 2005, so download it or read what have been updated. About this bug - you eventually will find a lot of information on how to fix this bug in official oscommerce forums.
  8. Hello Try something like [a href=\"http://www.yoursite.com/shopdir/index.php?action=buy_now&product_id={YOUR\" target=\"_blank\"]http://www.yoursite.com/shopdir/index.php?...roduct_id={YOUR[/a] PRODUCT ID HERE}
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.