Jump to content



Latest News: (loading..)

- - - - -

Subcategory Textboxes


This topic has been archived. This means that you cannot reply to this topic.
11 replies to this topic

#1   ace21gabriel

ace21gabriel
  • Members
  • 315 posts

Posted 27 July 2007 - 03:25 AM

I want them just to appear on the general category section with all the products, not on the individual page.  I have some //echos to make the dumb titles not show but maybe I made this not appear.  If there is anything on the index.php that I can edit to make it work I would love to know.  Thanks.

#2   ace21gabriel

ace21gabriel
  • Members
  • 315 posts

Posted 27 July 2007 - 03:32 AM

Also, if you know how to remove session ID's that would be great

#3   Monika in Germany

Monika in Germany
  • Members
  • 4,901 posts

Posted 27 July 2007 - 08:13 AM

Hi Matt, fort he session you need to post the upper 1/3 of your configure.php file (up to the last line that has the word session in them)
Your first question is not clear to me. You have added some contrib I think, so please take a screenshot, mark what you want to keep and what you want to get rid of and post the corresponding file code also (index.php)
:-)
Monika

addicted to writing code ... can't get enough of databases either, LOL!

my toolbox: Textpad - Compare and Merge - phpMyAdmin -  WS_FTP - Photoshop - How to search the forum

Interactive Media Award July 2007 ~ category E-Commerce
my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ...

#4   ace21gabriel

ace21gabriel
  • Members
  • 315 posts

Posted 27 July 2007 - 05:25 PM

ok heres the file of /includes/configure.php

<?php
/*
  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com

  Copyright (c) 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.mrairsoft.com'); // eg, http://localhost - should not be empty for productive servers
  define('HTTPS_SERVER', 'https://www.mrairsoft.com/'); // eg, https://localhost/ - should not be empty for productive servers
  define('ENABLE_SSL', true); // secure webserver for checkout procedure?
  define('HTTP_COOKIE_DOMAIN', 'http://www.mrairsoft.com');
  define('HTTPS_COOKIE_DOMAIN', '');
  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', '/home/content/e/l/i/eliteneo/html/');
  define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
  define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

But are you sure that is the file and not the english.php file?

#5   Monika in Germany

Monika in Germany
  • Members
  • 4,901 posts

Posted 27 July 2007 - 06:15 PM

red changes to make sessions work, green changes for consistency

Quote

define('HTTP_SERVER', 'http://www.mrairsoft.com'); // eg, http://localhost - should not be empty for productive servers
  define('HTTPS_SERVER', 'https://www.mrairsoft.com'); // eg, https://localhost/ - should not be empty for productive servers
  define('ENABLE_SSL', true); // secure webserver for checkout procedure?
  define('HTTP_COOKIE_DOMAIN', '.mrairsoft.com');
  define('HTTPS_COOKIE_DOMAIN', '.mrairsoft.com');
  define('HTTP_COOKIE_PATH', '/');
  define('HTTPS_COOKIE_PATH', '/');  
  define('DIR_WS_HTTP_CATALOG', '/');
  define('DIR_WS_HTTPS_CATALOG', '/');


I don't understand the reference to english.php, sorry
:-)
Monika

addicted to writing code ... can't get enough of databases either, LOL!

my toolbox: Textpad - Compare and Merge - phpMyAdmin -  WS_FTP - Photoshop - How to search the forum

Interactive Media Award July 2007 ~ category E-Commerce
my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ...

#6   ace21gabriel

ace21gabriel
  • Members
  • 315 posts

Posted 27 July 2007 - 06:22 PM

ok thanks alot, now the session ID problem is solved.  Now if someone could just help me get subcat textarea work...

#7   Monika in Germany

Monika in Germany
  • Members
  • 4,901 posts

Posted 27 July 2007 - 06:29 PM

Hi Matt, please explain that issue once more, I for one do not get what you want to achieve
:-)
Monika

addicted to writing code ... can't get enough of databases either, LOL!

my toolbox: Textpad - Compare and Merge - phpMyAdmin -  WS_FTP - Photoshop - How to search the forum

Interactive Media Award July 2007 ~ category E-Commerce
my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ...

#8   ace21gabriel

ace21gabriel
  • Members
  • 315 posts

Posted 27 July 2007 - 06:56 PM

Ok, I have the category descriptions mod, and I have it set up so it should show on the main category area for each section.   And not for each individual item.  But for some reason it wont go on the category, only on the individual items which I dont want.  but I have each item turned off and category on and it dosen't work.  So I think it might be because if you look at my site www.mrairsoft.com I have a bunch of //echo codes to stop the little image and title on each page, but I may have made the category description not work as well... Im not sure... Give it a look and see what you think.

#9   Monika in Germany

Monika in Germany
  • Members
  • 4,901 posts

Posted 28 July 2007 - 09:37 AM

I'm starting to understand, but I cliked on all your cats (I think) and a bunch of products and I did not see any cat descriptions. Can you link me to a page where it does show?

actually, I want 3 links:
1) a page where it shows and is fine
2) a page where it does not show but should
3) a page where it shows but should not

then I'll be able to tell you which files I need to hack.
:-)
Monika

addicted to writing code ... can't get enough of databases either, LOL!

my toolbox: Textpad - Compare and Merge - phpMyAdmin -  WS_FTP - Photoshop - How to search the forum

Interactive Media Award July 2007 ~ category E-Commerce
my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ...

#10   ace21gabriel

ace21gabriel
  • Members
  • 315 posts

Posted 28 July 2007 - 06:01 PM

It dose not show on any page.  It should show in all of them.

#11   Monika in Germany

Monika in Germany
  • Members
  • 4,901 posts

Posted 28 July 2007 - 07:53 PM

we need your index.php code then
:-)
Monika

addicted to writing code ... can't get enough of databases either, LOL!

my toolbox: Textpad - Compare and Merge - phpMyAdmin -  WS_FTP - Photoshop - How to search the forum

Interactive Media Award July 2007 ~ category E-Commerce
my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ...

#12   chris23

chris23
  • Members
  • 402 posts

Posted 28 July 2007 - 10:04 PM

View Postace21gabriel, on Jul 27 2007, 07:22 PM, said:

Now if someone could just help me get subcat textarea work...

Matt,

There's a support thread for Subcategory Textboxes here

I saw your post by chance whilst scanning the forum index ..

Have a quick look through the forum to see if there's anything helpful or post a full description of your problem.

Cheers

Chris
Please use forum for support rather than PM - PMs unrelated to my contributions will be ignored.
Google Site Search is your friend
My contributions: Tracking Module | PDF Customer Invoice | Subcategory textboxes