Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

arcadia128

Pioneers
  • Posts

    57
  • Joined

  • Last visited

Profile Information

  • Real Name
    ivan

arcadia128's Achievements

  1. Hi, this symbol not work in the seo url utlimate 5. The symbol is l.l I insert this code but does not work: 'l.l' => '', 'L.L' => '', '´l' => '', '´L' => '', Thanks!!!
  2. Maybe not explained, only speak Spanish I don´t want to display the php files. Right now the url is as follows: http://laertes.es/secret/conditions.php I would not show conditions.php It is possible? Or another way to show by example http://laertes.es/secret/conditions.html Thanks again!!!
  3. Good afternoon everyone! I installed this contribution without any problem, but my question is: For example, the contribution allows www.mysite.com/ Force when to www.mysite.com / index.php It would be possible to force other files http://mysite.com/ contribution when to www.mysite.com / conditions.php ??¿??¿ I would be interested for all the main pages as privacy.php, login.php etc. .. Thanks!!
  4. Buenas tardes adrian!! Si que me desvío, pero como conozco poca gente del foro oscommerce que también diseñe o edite el oscommerce para funcionar como libreria no quería dejar la oportunidad de preguntartelo!! Ya miraré el software que comentas , solo he mirado por encima el Epub y no me convenció. Gracias de nuevo!!
  5. Pues ya probaré el sistema y te cuento, ando con el diseño de la web, cuando empieze a subir las fichas de los libros veré mejor como aplicar varios autores!!! Para la semana que viene ya habré acabado la tienda!!! Ahora ando con el sistema de ebooks, ya tengo instalado la contribución pero pensando cuál es la mejor forma de proteger el PDF. Colocaré contraseñas en los pdf y rars, pero poco mas se puede hacer veo... Trabajas con ebooks en tu tienda??? Y gracias de nuevo!!!
  6. Buenos días adrián!! No me parece mal la idea que me comentas de poner varios autores como un solo autor!!! El inconveniente es que marco una url a cada autor porque cada uno tiene una ficha personal. Seguiré pensando alguna solución...... Gracias de nuevo!!!!
  7. Una pregunta que se me ocurre?? Si un libro tiene varios autores sería muy complicado clonar tu contribución para tener otros autores relacionados con un mismo libro??? Gracias
  8. Gracias ya lo instalé y funciona perfectamente!!! :thumbsup:
  9. I have the same problem, works well in the main category but not in the subcategories of the administration! Any ideas?
  10. Gracias por la rapidez Adrián. Mañana lo pruebo y te comento, ahora he abierto el zip que baje de contributions oscommerce y sale sin ; detrás del NULL!!! Seguro que la contibución que subiste era el zip correcto??? Yo lo baje hará quiza un par de días.... La versión que yo tengo es: autores_osc231_v10 Saludos
  11. Primero de todo muchas gracías por la contribución!!! Estoy intentando actualizar mi base de datos pero tengo un error de mysql!! Crear las 2 nuevas tablas de autores no da ningún problema desde el phpmyadmin , pero cuando añadimos el autores_id a procucts me da este error!! Error consulta SQL: ALTER TABLE `products` ADD `autores_id` int NULL INSERT INTO configuration( configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added ) VALUES ( 'Lista de los Autores', 'MAX_DISPLAY_AUTORES_IN_A_LIST', '0', 'Usado en el recuadro de los autores; cuando el número de autores sobrepasa este número, un número será mostrado sustituyendo a la lista por defecto.', '3', '7', now( ) ); MySQL ha dicho: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'INSERT INTO configuration (configuration_title, configuration_key, configuration' at line 3
  12. no response?? :( Other questions: I add a filemanager to ckeditor 3.5 but not found my folder image. This is the test Link The code is this: require('../../../../../admin/includes/configure.php'); $config['doc_root'] = (DIR_FS_CATALOG . DIR_WS_IMAGES); // No end slash Is correct the first line "require" if my url configure is this ?? http://laertes.es/secret/admin/includes/configure.php 2 question: In the urlroot i placed the same code of configure.php, is correct,no?? var fileRoot = '/'; var urlRoot = '/var/www/vhosts/laertes.es/httpdocs/secret/images/'; // full url this is the instruccions installation: find: var fileRoot replace: var fileRoot = '/'; and bellow this add and change to your settings var urlRoot = 'http://localhost/dev/images'; // full url And last quieston 3: where I place the following code in osc 2.3.1??? admin\newsletter.php find: </head> above add: echo '<script type="text/javascript" src="./ckeditor/ckeditor.js"></script>'; find: <td class="main"><?php echo tep_draw_textarea_field('content', '70', '20', $nInfo->content); ?></td> replace: <td class="main"><?php echo tep_draw_textarea_ckeditor ('content', '70', '20', $nInfo->content); ?></td> admin\categories.php find: </head> above add: <?php if ($action == 'new_product' || $information_action == 'Added' || $information_action == 'Edit' ) { // No need to put JS on all pages. If need more action to the string above. echo '<script type="text/javascript" src="./ckeditor/ckeditor.js"></script>'; } ?>
  13. I installed ckeditor and working properly. The problem comes when I put more than one textarea categories.php Returns the empty field in the administration but it is filled in the db and displayed in product_info I thought output cloned in textarea html_output but still the same I try it in admin/includes/html_output/: Original code: //// // Output a form textarea field // The $wrap parameter is no longer used in the core xhtml template function tep_draw_textarea_field($name, $wrap, $width, $height, $text = '', $parameters = '', $reinsert_value = true) { global $HTTP_GET_VARS, $HTTP_POST_VARS; $field = '<textarea name="' . tep_output_string($name) . '" id="' . tep_output_string($name) . '" cols="' . tep_output_string($width) . '" rows="' . tep_output_string($height) . '"'; if (tep_not_null($parameters)) $field .= ' ' . $parameters; $field .= '>'; if ( ($reinsert_value == true) && ( (isset($HTTP_GET_VARS[$name]) && is_string($HTTP_GET_VARS[$name])) || (isset($HTTP_POST_VARS[$name]) && is_string($HTTP_POST_VARS[$name])) ) ) { if (isset($HTTP_GET_VARS[$name]) && is_string($HTTP_GET_VARS[$name])) { $field .= tep_output_string_protected(stripslashes($HTTP_GET_VARS[$name])); } elseif (isset($HTTP_POST_VARS[$name]) && is_string($HTTP_POST_VARS[$name])) { $field .= tep_output_string_protected(stripslashes($HTTP_POST_VARS[$name])); } } elseif (tep_not_null($text)) { $field .= tep_output_string_protected($text); } $field .= '</textarea>'; return $field; } And add new code below: //// // Output a form textarea1 field // The $wrap parameter is no longer used in the core xhtml template function tep_draw_textarea1_field($name, $wrap, $width, $height, $text = '', $parameters = '', $reinsert_value = true) { global $HTTP_GET_VARS, $HTTP_POST_VARS; $field = '<textarea name="' . tep_output_string($name) . '" id="' . tep_output_string($name) . '" cols="' . tep_output_string($width) . '" rows="' . tep_output_string($height) . '"'; if (tep_not_null($parameters)) $field .= ' ' . $parameters; $field .= '>'; if ( ($reinsert_value == true) && ( (isset($HTTP_GET_VARS[$name]) && is_string($HTTP_GET_VARS[$name])) || (isset($HTTP_POST_VARS[$name]) && is_string($HTTP_POST_VARS[$name])) ) ) { if (isset($HTTP_GET_VARS[$name]) && is_string($HTTP_GET_VARS[$name])) { $field .= tep_output_string_protected(stripslashes($HTTP_GET_VARS[$name])); } elseif (isset($HTTP_POST_VARS[$name]) && is_string($HTTP_POST_VARS[$name])) { $field .= tep_output_string_protected(stripslashes($HTTP_POST_VARS[$name])); } } elseif (tep_not_null($text)) { $field .= tep_output_string_protected($text); } $field .= '</textarea>'; return $field; } And in admin/categories.php <td class="main"><?php echo TEXT_PRODUCTS_LINK1; ?></td> <td class="main"><?php echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . tep_draw_textarea1_field('products_link1', $pInfo->products_link1); ?></td> I add textarea1 but returns empty in adminitration, but work in db and catalog Any solution?¿?¿?
  14. To work in Catalan language is necessary create a new file if you have selected catalan.php (CAT) in your shop. This file catalan.php go to: includes/modules/ultimate_seo_urls5/includes/character_conversion/catalan.php The code: <?php /** * * ULTIMATE Seo Urls 5 * * * @package Ultimate Seo Urls 5 * @license http://www.opensource.org/licenses/gpl-2.0.php GNU Public License * @link http://www.fwrmedia.co.uk * @copyright Copyright 2008-2009 FWR Media * @copyright Portions Copyright 2005 Bobby Easland * @author Robert Fisher, FWR Media, http://www.fwrmedia.co.uk * @lastdev $Author:: Rob $: Author of last commit * @lastmod $Date:: 2010-12-01 11:12:10 +0000 (Wed, 01 Dec 2010) $: Date of last commit * @version $Rev:: 187 $: Revision of last commit * @Id $Id:: espanol.php 187 2010-12-01 11:12:10Z Rob $: Full Details */ // Spanish $char_convert = array('á' => '', 'é' => '', 'í' => '', 'ñ' => '', 'à' => '', 'è' => '', 'l´' => '', 'd´' => '', 'ó' => '', 'ú' => '', 'ü' => '', 'Á' => '', 'É' => '', 'Í' => '', 'Ñ' => '', 'Ó' => '', 'Ú' => '', 'Ü' => '', '¿' => '', '¡' => ''); ?> Or add a line of code to the file espanol.php if we defined the Spanish language in our shop. 'à' => '', 'è' => '', 'l´' => '', 'd´' => '',
  15. thanks again, maybe it was a cache problem, now works correctly.
×
×
  • Create New...