Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

monokou

Pioneers
  • Posts

    17
  • Joined

  • Last visited

Profile Information

  • Real Name
    kons xan

monokou's Achievements

  1. basically, what do you mean... I didn't get it..
  2. thanks a lot george... I'll check it... ps.. χαχαχα καλο..
  3. does anyone know something about it??? please... I need your help..
  4. Hello, even though noone answered me about the above question.. I'll give it a try with another problem... I have installed the osc 2.3.1... I have the greek language utf8... BUT in boxes the greek words don t appear and I see just ??????? I have enlarge the box via varchar but nothing happened... what is going wrong??? please help me so I can continue my work... Thank you...
  5. Hello, i am working with os commerce v2.2 . I have uploaded greek language but! on categories it shows for me ενδυμ why is that? how can I fix it? is there any code to add or change in any php?thank you a lot!
  6. Γιωργο σε ευχαριστω πολύ, Τωρα μια που εισια και Ελληνας.. δεν μου τα λες και στα ελληνικα μπας και καταλαβω τιποτα? ε? Σε ευχαριστω πολύ.. δεν ειμαι προγραμματιστης και ειμαι ασχετη... μεσω μιας εταιριας πηρα το oscommerce... τι πρεπει να κανω? να ξανακατεβασω το oscommerce και να ανεβασω σε εμενα το configure.php ?
  7. Chris, here are the documents. includes/configure.php <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.mysite.gr'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://secure.mysite.gr'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.mysite.gr'); define('HTTPS_COOKIE_DOMAIN', 'secure.mysite.gr'); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/'); define('DIR_WS_HTTP_CATALOG', '/'); define('DIR_WS_HTTPS_CATALOG', '/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/htdocs/mysite/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); // define our database connection define('DB_SERVER', 'myIPforVserver'); // eg, localhost - should not be empty for productive servers define('DB_SERVER_USERNAME', 'myusernameforbecometheadmin'); define('DB_SERVER_PASSWORD', 'mypasswordtobecometheadmin'); define('DB_DATABASE', 'oscommerce'); define('USE_PCONNECT', 'false'); // use persistent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?> admin/includes/configure.php <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.mysite.gr'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://www.mysite.gr'); define('HTTPS_CATALOG_SERVER', 'https://secure.mysite.gr'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', 'htdocs/mysite/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/admin/'); // absolute path required define('DIR_FS_ADMIN', '/htdocs/mysite/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/'); // absolute path required define('DIR_FS_CATALOG', 'htdocs/mysite'); // absolute path required define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/'); define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/'); define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/'); // define our database connection define('DB_SERVER', 'theIPforVserver'); // eg, localhost - should not be empty for productive servers define('DB_SERVER_USERNAME', 'myusernametobecometheadmin'); define('DB_SERVER_PASSWORD', 'mypasswordtobecomeanadmin'); define('DB_DATABASE', 'oscommerce'; define('USE_PCONNECT', 'false'); // use persisstent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?> I am trying to get on my site...it loads very slowly and then it gives me the message Unable to connect to database server! thank you for the fast response :)
  8. Chris, here are the documents. includes/configure.php <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.mysite.gr'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://secure.mysite.gr'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.mysite.gr'); define('HTTPS_COOKIE_DOMAIN', 'secure.mysite.gr'); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/'); define('DIR_WS_HTTP_CATALOG', '/'); define('DIR_WS_HTTPS_CATALOG', '/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/htdocs/mysite/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); // define our database connection define('DB_SERVER', 'myIPforVserver'); // eg, localhost - should not be empty for productive servers define('DB_SERVER_USERNAME', 'myusernameforbecometheadmin'); define('DB_SERVER_PASSWORD', 'mypasswordtobecometheadmin'); define('DB_DATABASE', 'oscommerce'); define('USE_PCONNECT', 'false'); // use persistent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?> admin/includes/configure.php <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.mysite.gr'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://www.mysite.gr'); define('HTTPS_CATALOG_SERVER', 'https://secure.mysite.gr'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', 'htdocs/mysite/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/admin/'); // absolute path required define('DIR_FS_ADMIN', '/htdocs/mysite/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/'); // absolute path required define('DIR_FS_CATALOG', 'htdocs/mysite'); // absolute path required define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/'); define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/'); define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/'); // define our database connection define('DB_SERVER', 'theIPforVserver'); // eg, localhost - should not be empty for productive servers define('DB_SERVER_USERNAME', 'myusernametobecometheadmin'); define('DB_SERVER_PASSWORD', 'mypasswordtobecomeanadmin'); define('DB_DATABASE', 'oscommerce'; define('USE_PCONNECT', 'false'); // use persisstent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?> I am trying to get on my site...it loads very slowly and then it gives me the message Unable to connect to database server! thank you for the fast response :)
  9. I am tired of trying to install a new template on oscommerce. I am not an expert on pcs, so it is difficult for me :wacko: . Please help me if it is possible. I am trying to have an e-shop. I've updated a template from ftp to my server - rewrited on the other template via httpdocs folder. then my site started to show me this message ; Unable to connect to database server! I did not know what I were supposed to do.. so I changed some codes manually as I had seen from another topic... http://www.oscommerce.com/forums/index.php?showtopic=193738&hl= this one.. but the problem still exists! What shall I do? :'( please help me.. thank you
×
×
  • Create New...