Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

xciso

Pioneers
  • Posts

    139
  • Joined

  • Last visited

Everything posted by xciso

  1. Hi. U can edit the file public_html/inclues/phpinvoice.php There u have for example: //Draw Payment Method Text $temp = substr ($order->info['payment_method'] , 0, 23); $pdf->Text(75,117, tep_html_entity_decode(ENTRY_PAYMENT_METHOD) . ' ' . tep_html_entity_decode($temp)); U can change 75, 113 to 10, 117. Now u move your payment method left. After this I think u will undertand how this work. Good luck! :D
  2. Yeah I used FF and it looks good :) I want it now! :D
  3. Nice job! I will try install this in my shop today. When can we see v2? ;)
  4. Hi. When I add a product and a image in the admin I can see it, but when I have done that I cant see the image in the store or in the admin. I can just see the image when i preview the product. I have RC2a.
  5. When i try to insert new categories i get this message. Warning: mkdir() [function.mkdir]: Permission denied in /home/w11001/domains/bjarud.se/public_html/admin/categories.php on line 90 Warning: chmod() [function.chmod]: No such file or directory in /home/w11001/domains/bjarud.se/public_html/admin/categories.php on line 91 Warning: Cannot modify header information - headers already sent by (output started at /home/w11001/domains/bjarud.se/public_html/admin/categories.php:90) in /home/w11001/domains/bjarud.se/public_html/admin/includes/functions/general.php on line 22 I FORGOT TO MAKE THE IMAGES CATALOG WRITEABLE :) NOW IT WORKS!
  6. Hi. In the readme it look like this: ***FIND: $sql_data_array['products_image'] = tep_db_prepare_input($HTTP_POST_VARS['products_image']); ***CHANGE TO:(Earlier versions than oscommerce-2.2rc2a) // BOF Categories and Products Images Folder Tree $sql_data_array['products_image'] = tep_output_generated_category_path_fs($current_category_id) . tep_db_prepare_input($HTTP_POST_VARS['products_image']); // EOF Categories and Products Images Folder Tree I Have 2.2rc2a. Does I need to edit this section?
  7. I have use more categories and it works very good :) I have use the files for max 25 directories. Now i need to use 50 directories? How can I change? My store is now very change so I will not make a misstake. Can I insert more tabells in phpmyadmin? Or just import to 50 file? Thanks ;)
  8. I have the same problem. I download the last release from fckeditor.net (2.6) and upload over the old files. Now everything works! ;) Hope this can help anyone :)
  9. Hi. I have just install this mod, but i have bought my template from templatemonster and I cant get the same style at both categories. How shell I do? I just want to use the same style that i have at the first. Here is my categories.php: <?php /* $Id: categories.php,v 1.25 2003/07/09 01:13:58 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ function tep_show_category($counter, $count) { global $tree, $categories_string, $cPath_array, $ii; if ($count == 0 ) $kk=' '; else $kk=' class="bg2"'; $count++; if(!$tree[$counter]['level']){ $categories_string .= $categories_string ? '' : ''; $categories_string .= ' <tr'.$kk.'> <td width="20" align="center" class="bg3">'.tep_image(DIR_WS_IMAGES.'bg_list.gif').'</td> <td width="1" bgcolor="E7E6E6"></td> <td width="139" class="bg4"><a href='; if (SHOW_COUNTS == 'true') { $products_in_category = tep_count_products_in_category($counter); if ($products_in_category > 0) { $num_prod = ' ('.$products_in_category.')'; } } if ($tree[$counter]['parent'] == 0) { $cPath_new = 'cPath=' . $counter; } else { $cPath_new = 'cPath=' . $tree[$counter]['path']; } $categories_string .= tep_href_link('index.php', $cPath_new) . '>'; // display categry name $categories_string .= $tree[$counter]['name']; $categories_string .= $num_prod.'</a></td> </tr>'; }else{ // SUBCATEGORY if (SHOW_COUNTS == 'true') { $products_in_category = tep_count_products_in_category($counter); if ($products_in_category > 0) { $num_prod = ' ('.$products_in_category.')'; } } $count = 2; $categories_string .= ''; for($i=0;$i<$tree[$counter]['le vel'];$i++) $categories_string .= ''; $categories_string .= ' <tr'.$kk.'> <td width="20" align="center" class="bg3"></td> <td width="1" bgcolor="E7E6E6"></td> <td width="139" class="bg4">- <a href= <li class="bg_list_sub"><a href='; if ($tree[$counter]['parent'] == 0) { $cPath_new = 'cPath=' . $counter; } else { $cPath_new = 'cPath=' . $tree[$counter]['path']; } $categories_string .= tep_href_link('index.php', $cPath_new) . '>'; // display category name $categories_string .= $tree[$counter]['name']; $categories_string .= $num_prod.'</a></td> </tr>'; } if ($tree[$counter]['next_id'] != false && $ii < 30) { tep_show_category($tree[$counter]['next_id'], $count); } } ?> <!-- categories //--> <tr> <td valign="top"> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_CATEGORIES); new infoBoxHeading($info_box_contents, true, false); $categories_string = '<table cellspacing="0" cellpadding="0" border="0" class="column_left">'; $tree = array(); $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '0' and c.categories_id = cd.categories_id and cd.language_id='" . (int)$languages_id ."' order by sort_order, cd.categories_name"); while ($categories = tep_db_fetch_array($categories_query)) { $tree[$categories['categories_id']] = array('name' => $categories['categories_name'], 'parent' => $categories['parent_id'], 'level' => 0, 'path' => $categories['categories_id'], 'next_id' => false); if (isset($parent_id)) { $tree[$parent_id]['next_id'] = $categories['categories_id']; } $parent_id = $categories['categories_id']; if (!isset($first_element)) { $first_element = $categories['categories_id']; } } //------------------------ if (tep_not_null($cPath)) { $new_path = ''; reset($cPath_array); while (list($key, $value) = each($cPath_array)) { unset($parent_id); unset($first_id); $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '" . (int)$value . "' and c.categories_id = cd.categories_id and cd.language_id='" . (int)$languages_id ."' order by sort_order, cd.categories_name"); if (tep_db_num_rows($categories_query)) { $new_path .= $value; while ($row = tep_db_fetch_array($categories_query)) { $tree[$row['categories_id']] = array('name' => $row['categories_name'], 'parent' => $row['parent_id'], 'level' => $key+1, 'path' => $new_path . '_' . $row['categories_id'], 'next_id' => false); if (isset($parent_id)) { $tree[$parent_id]['next_id'] = $row['categories_id']; } $parent_id = $row['categories_id']; if (!isset($first_id)) { $first_id = $row['categories_id']; } $last_id = $row['categories_id']; } $tree[$last_id]['next_id'] = $tree[$value]['next_id']; $tree[$value]['next_id'] = $first_id; $new_path .= '_'; } else { break; } } } $count = 0; tep_show_category($first_element, $count); $categories_string .='</table>'; $info_box_contents = array(); $info_box_contents[] = array('text' => $categories_string); new infoBox($info_box_contents); ?> </td> </tr> <!-- categories_eof //--> PLEASE HELP!
  10. Hi. I haved install this contb, everything works find, but when I shell insert a image to my product it just dissapeard. I can select image with ibrowser and i press insert and I can see the image, but when I push "preview" the image is gone and a red feild commig up. No file uploaded. Who shell I do to get this work. My store will never sell if I cant show my customers images ;)
×
×
  • Create New...