Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

germ

Pioneers
  • Posts

    13,804
  • Joined

  • Last visited

  • Days Won

    62

germ last won the day on July 11 2014

germ had the most liked content!

1 Follower

About germ

  • Birthday 12/31/2010

Profile Information

Recent Profile Visitors

79,295 profile views

germ's Achievements

  1. Hello Germ, 

    I m having only on the ADMIN side the error

    Warning: Cannot modify header information - headers already sent by (output started at /home/a2427dzd/public_html/*******/******/includes/languages/greek.php:1) in /home/a2427dzd/public_html/*******/******/includes/functions/general.php on line 38

    I allready checked php version is 5.6 

    I allready checked admin/includes/application_top.php for the extra lines and spaces and removed them

    what else can I do?

  2. That's in In the ADMIN SIDE ON THE SERVER (not your local copy)? :unsure:
  3. When you get UPPER_CASE_EERORS like that it usually means you have missed a "define" in a PHP file. Check you /admin/includes/database_tables.php and be sure it includes definitions for TABLE_PAGES and TABLE_PAGES_DESCRIPTION
  4. It's a value inserted into the configuration table in the DB when installed.
  5. The person who wrote this needs to attend an osC 101 class. :huh: My guess would be this code in /admin/includes/boxes/configuration.php array( 'code' => 'Slider Conf', 'title' => 'Slider', 'link' => 'slider.php' ) Try this instead: array( 'code' => 'Slider Conf', 'title' => 'Slider', 'link' => tep_href_link('slider.php') ) If you don't use the tep_href_link() function on anchors you stand a pretty good chance of losing the session.
  6. The "Cannot redeclare" error is caused by accidentally copying a "code" file into the "language" folder. Click the "Cannot redeclare" link i nmy signature for a simple way to find it.
  7. There isn't as far as I know. There is a "Master Password" add-on that would allow you to log into their account at reset it that way. I don't know if it's been recoded to work with 2.3.x versions or not. Just so you know - osC passwords are "hashed" not "encrypted". That means you can't decipher them (unless you have buddies high up in the NSA, they might be able to...)
  8. define('MODULE_SHIPPING_FLAT_TEXT_DESCRIPTION', 'Local to SHEPPARTON, VICTORIA REGION ONLY!!<br> We reserve the right to cancel any orders outside the PICKUP AREA stated above that don\'t include shipping.');
  9. Post the code from the file, lines 57 to 77 (sometimes what you consider a "line" and what the PHP parser considers it are different). Obviously something is amiss somewhere or you wouldn't be getting an error. :huh:
×
×
  • Create New...