Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

skipwater

Archived
  • Posts

    41
  • Joined

  • Last visited

  • Days Won

    1

skipwater last won the day on May 8 2012

skipwater had the most liked content!

Profile Information

skipwater's Achievements

  1. In the file catalog/includes/column_left.php you will see the infoboxs listed just change the order in the list. Example: require(DIR_WS_BOXES . 'whats_new.php'); require(DIR_WS_BOXES . 'search.php'); require(DIR_WS_BOXES . 'information.php'); // at bottom of list require(DIR_WS_BOXES . 'information.php'); // at top of list require(DIR_WS_BOXES . 'whats_new.php'); require(DIR_WS_BOXES . 'search.php');
  2. I am working on the same issues. You will find that the status comes from the payment section. What I am trying to do is if the customer is downloading demo software I would like to do it this way. 1. Customer adds demo software to cart. 2. Checkout if no account then create one else login. 3. Once customer is in system then goto download file link. Sounds simple Ha! So if anyone has tried this or has a work around lets here about it.
  3. I have been running $Id: page_manager.php,v 1.73 2003/06/29 22:50:51 hpdl Exp $ for more then a year and have over 40 pages running under 5 different page types (info boxes) and 6 to 8 External link types pages. Yes, I agree this package is very limited if you can only use the admin section. But if you can edit and add records to the sql table and add some code to the php pages. It will allow the end user to modify and edit the pages with there browser. B)
  4. You might want to look at CRE LOADED 6.15 I have used this for a couple customers and it has the page control plus tons of other options already built in.
  5. At this point there is something missing. The only suggestion I have at this point is back up your sql database and the delet the page tables and then reload the tables. Then check the page code that was added to osc or just replace it. Good Luck >_<
  6. You might have a bad record ID 10 no data. This might be your error because no data in Page title. If you delete it you must delete the matching record in page table. So you might just want to place sample data in for now.
  7. what about the pages_description table is that have data?
  8. When you installed it did you run the sql update file. This would have populated some records with sample data.
  9. The table you should be looking at is pages_description table:
  10. Take a look at this if you have not seen it yet. http://www.oscommerce.com/forums/index.php?s=&...ndpost&p=687679 Also check what is in the sql record to see if the page title is there. :thumbsup:
  11. You need to setup the admin section. If I remember the external link section did not work so you may have to edit the sql table pages_description with phpmyadmin or what ever you use to work on your mysql data base. And add the external file name to /includes/filenames.php example: // FAQ define('FILENAME_FAQ', 'faq.php');
  12. This might help? I used the same approach as the original code. The reason was who wants to keep track of page IDs. if($page['pages_title'] != 'Contact Us'){ $link = FILENAME_PAGES . '?pages_id=' . $page['pages_id']; }else{ $link = FILENAME_CONTACT_US; } if($page['pages_title'] != 'System Registration'){ $link = FILENAME_PAGES . '?pages_id=' . $page['pages_id']; }else{ $link = FILENAME_CREATE_REGISTER; } if($page['pages_title'] != 'Frequently Asked Questions'){ $link = FILENAME_PAGES . '?pages_id=' . $page['pages_id']; }else{ $link = FILENAME_FAQ; } In the admin section you will define the matching page titles. This should get you going :thumbsup:
  13. Line 392 You have <td class="main"><?php include(DIR_WS_LANGUAGES . $language . '/' . FILENAME_DEFINE_MAINPAGE); ?></td> Should be <td class="main"><?php echo $page_check[pages_html_text]; ?></td> This might fix?
  14. Not good :( disable WYSIWYG in the admin and use info pages index. If you really need WYSIWYG index then you will have to edit out the hard coding that info page adds to handle the index page and others that are in the drop down list in the admin.
×
×
  • Create New...