Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Yrewol

Archived
  • Posts

    57
  • Joined

  • Last visited

About Yrewol

  • Birthday 08/24/1975

Profile Information

  • Real Name
    Me
  • Location
    In Your Mind
  • Website

Yrewol's Achievements

  1. i hope this has worked for you
  2. Burt... What version of STS did you install. (The versions I've tried have been unsuccessful).
  3. For asthetic changes, the file(s) you need to alter are located in catalog/includes/. this will contain the core files for your site design.
  4. For asthetic changes, the file(s) you need to alter are located in catalog/includes/. this will contain the core files for your site design.
  5. You want to place the following code in your product description of the CD <ol> <li>Song Name <a href="http://www.yoursite.com/sample.mp3" target="_blank"><img src="catalog/images/arrow_green.gif" alt="" name="Play_Button" width="12" height="12" border="0" id="Play_Button" /></a></li> <li>Song Name <a href="http://www.yoursite.com/sample.mp3" target="_blank"><img src="catalog/images/arrow_green.gif" alt="play2" name="Play_Button" width="12" height="12" id="Play_Button" /></a></li> <li>Song Name <a href="http://www.yoursite.com/sample.mp3" target="_blank"><img src="catalog/images/arrow_green.gif" alt="play3" name="Play_Button" width="12" height="12" id="Play_Button" /></a></li> <li>Song Name <a href="http://www.yoursite.com/sample.mp3" target="_blank"><img src="catalog/images/arrow_green.gif" alt="play4" name="Play_Button" width="12" height="12" id="Play_Button" /></a></li> <li>Song Name <a href="http://www.yoursite.com/sample.mp3" target="_blank"><img src="catalog/images/arrow_green.gif" alt="play5" name="Play_Button" width="12" height="12" id="Play_Button" /></a></li> <li>Song Name <a href="http://www.yoursite.com/sample.mp3" target="_blank"><img src="catalog/images/arrow_green.gif" alt="play6" name="Play_Button" width="12" height="12" id="Play_Button" /></a></li> <li>Song Name <a href="http://www.yoursite.com/sample.mp3" target="_blank"><img src="catalog/images/arrow_green.gif" alt="play7" name="Play_Button" width="12" height="12" id="Play_Button" /></a></li> <li>Song Name <a href="http://www.yoursite.com/sample.mp3" target="_blank"><img src="catalog/images/arrow_green.gif" alt="play8" name="Play_Button" width="12" height="12" id="Play_Button" /></a></li> <li>Song Name <a href="http://www.yoursite.com/sample.mp3" target="_blank"><img src="catalog/images/arrow_green.gif" alt="play9" name="Play_Button" width="12" height="12" id="Play_Button" /></a></li> <li>Song Name <a href="http://www.yoursite.com/sample.mp3" target="_blank"><img src="catalog/images/arrow_green.gif" alt="play10" name="Play_Button" width="12" height="12" id="Play_Button" /></a></li> </ol> Two things to pay attention to within this code are: ---> www.yoursite.com/sample.mp3 <--- Replace this with the location of your mp3 song sample. ---> catalog/images/arrow_green.gif <--- Replae "catalog" whth the name of your stores catalog
  6. you will just have to create a (15-30 second) mp3 sample of each song and place this into a folder on your server. Then in your product description you can just include a link to each song sample that will be played in the clients media player. I'll create a simple HTML code you can use and post it up in a few hours. Im Preoccupied with something else which is why i can do it now.
  7. How can I make easy populate download the product descriptions in English only. Having multiple language options along with my attributes is making my columns exceed 256 (the max for excel)? (I could not find an answer to this in my search.
  8. You need to specify a model # in the field labeled "v_products_model " I do not believe products can be added without a model number. I hope this helps
  9. I am getting this error when trying to populate my store. Any help would be appreciated. Warning: move_uploaded_file(temp/Sheet2.txt): failed to open stream: No such file or directory in /home/httpd/vhosts/my-domain.com/httpdocs/admin/easypopulate_functions.php on line 43 Warning: move_uploaded_file(): Unable to move '/tmp/phpp32OFN' to 'temp/Sheet2.txt' in /home/httpd/vhosts/my-domain.com/httpdocs/admin/easypopulate_functions.php on line 43 LINE 43 of easypopulate_functions.php says 41 $target .= $filename['name']; 42 43 move_uploaded_file($filename['tmp_name'], $target); 44 } File uploaded. Temporary filename: /tmp/phpp32OFN User filename: Sheet2.txt Size: Warning: file(temp/Sheet2.txt): failed to open stream: No such file or directory in /home/httpd/vhosts/my-domain.com/httpdocs/admin/easypopulate.php on line 656 Warning: Invalid argument supplied for foreach() in /home/httpd/vhosts/my-domain.com/httpdocs/admin/easypopulate.php on line 679 LINE 656 of easypopulate.php says 655 // get the entire file into an array 656 $readed = file(DIR_FS_DOCUMENT_ROOT . $tempdir . $usrfl_name); 657 } 658 if ($localfile){ Could someone please help me resolve this issue?
  10. Hey folks. Im using version v2.71 MS2. When trying to populate database, I am getting the following error. File uploaded. Temporary filename: /tmp/phpCWTD0i User filename: Sheet1.txt Size: Warning: file(Sheet1.txt): failed to open stream: No such file or directory in /home/httpd/vhosts/my-domain.com/httpdocs/admin/easypopulate.php on line 656 Warning: Invalid argument supplied for foreach() in /home/httpd/vhosts/my-domain.com/httpdocs/admin/easypopulate.php on line 679 Here is what line 656 states 655 // get the entire file into an array 656 $readed = file(DIR_FS_DOCUMENT_ROOT . $tmp_dir . $usrfl_name); 657 } 658 if ($localfile){ 659 // move the file to where we can work with it 660 $file = tep_get_uploaded_file('usrfl'); $attribute_options_query = "select distinct products_options_id from " . TABLE_PRODUCTS_OPTIONS . " order by products_options_id"; And line 679 says the following: 677 // now we string the entire thing together in case there were carriage returns in the data 678 $newreaded = ""; 678 foreach ($readed as $read){ 680 $newreaded .= $read; 681 } Any suggestions on how to fix this error
  11. Hey folks. Im using version v2.71 MS2. When trying to populate database, I am getting the following error. File uploaded. Temporary filename: /tmp/phpCWTD0i User filename: Sheet1.txt Size: Warning: file(Sheet1.txt): failed to open stream: No such file or directory in /home/httpd/vhosts/my-domain.com/httpdocs/admin/easypopulate.php on line 656 Warning: Invalid argument supplied for foreach() in /home/httpd/vhosts/my-domain.com/httpdocs/admin/easypopulate.php on line 679 Here is what line 656 states 655 // get the entire file into an array 656 $readed = file(DIR_FS_DOCUMENT_ROOT . $tmp_dir . $usrfl_name); 657 } 658 if ($localfile){ 659 // move the file to where we can work with it 660 $file = tep_get_uploaded_file('usrfl'); $attribute_options_query = "select distinct products_options_id from " . TABLE_PRODUCTS_OPTIONS . " order by products_options_id"; And line 679 says the following: 677 // now we string the entire thing together in case there were carriage returns in the data 678 $newreaded = ""; 678 foreach ($readed as $read){ 680 $newreaded .= $read; 681 } Any suggestions on how to fix this error
  12. Once I upload my product details, the changes do not appear in my online shop. In addition, there is no php error that displays. How can I resolve this so that my store can be easily populated?
  13. I don’t have a solution unfortunately. I am having issues with EasyPopulate as well. When I upload the product description etc. They do not appear in my store. The inventory stays as is. In response to your category levels, having an excess of three levels is not ideal for any web store. You want to have repeat clients. The more complex it is to navigate, the less likely you online shop will grow.
×
×
  • Create New...