Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

STS Template - Not displaying Product Images or some buttons


joseluisdesigns

Recommended Posts

Hello,

 

I'm trying to get this store up and running soon. I have looked for this everywhere and everyone's suggestions don't seem to help. Does anyone know how I can get this to work.

 

My product images are not showing up: http://www.letsjustprint.com/index.php

 

Under login.php - There is no button for a user to register for an account.

 

Under shopping_cart.php - There is no Check Out button

 

If anyone could please help me out I would greatly appreciate it!

 

Thank you!

 

define('HTTP_SERVER', 'http://www.letsjustprint.com');
 define('HTTP_CATALOG_SERVER', 'http://www.letsjustprint.com');
 define('HTTPS_CATALOG_SERVER', 'https://www.letsjustprint.com');
 define('ENABLE_SSL_CATALOG', 'true');
 define('DIR_FS_DOCUMENT_ROOT', '/');
 define('DIR_WS_ADMIN', '/admin/');
 define('DIR_FS_ADMIN', '/home/letsjust/public_html/admin/');
 define('DIR_WS_CATALOG', '/');
 define('DIR_FS_CATALOG', '/home/letsjust/public_html/');
 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/');

Link to comment
Share on other sites

Hello,

I'm trying to get this store up and running soon. I have looked for this everywhere and everyone's suggestions don't seem to help. Does anyone know how I can get this to work.

My product images are not showing up: http://www.letsjustprint.com/index.php

Under login.php - There is no button for a user to register for an account.

Under shopping_cart.php - There is no Check Out button

 

Would be good to know what you have tried so far, not to start from the beginning again

 

Can you see the product images on the admin side?

 

Whats the product image filename and format you uploaded?

 

What are the folder permissions for /images/ and includes/languages/english/images/buttons/?

 

Can you post your includes/configure.php?

Link to comment
Share on other sites

As You have installed STS, make sure block capture captures the image code part.

 

Also make sure that this block is called on the display page.

 

Satish

Ask/Skype for Free osCommerce value addon/SEO suggestion tips for your site.

 

Check My About US For who am I and what My company does.

Link to comment
Share on other sites

Would be good to know what you have tried so far, not to start from the beginning again

 

Can you see the product images on the admin side?

 

Whats the product image filename and format you uploaded?

 

What are the folder permissions for /images/ and includes/languages/english/images/buttons/?

 

Can you post your includes/configure.php?

 

 

I have tried all of the following:

 

My buttons seem to be at this location: (https://www.letsjustprint.com/includes/sts_templates/carbon-blue/images/english/buttons/button_login.gif)

 

Setting Permissions on Folders - Images - 775 English - 775 Buttons - 775 button_login.gif - 644

 

I tried deleting the .htacess in the includes folder.

 

Someone suggested: in includes/application_top.php

Before:

 $request_type = (getenv('HTTPS') == 'on') ? 'SSL' : 'NONSSL';

 

After:

 $request_type = (getenv('HTTPS') == 'off') ? 'SSL' : 'NONSSL';

 

That didn't work so I switched it back to "on"

 

 

As far as seeing this pictures in the admin section; I can def. see them and upload them. The only problem is in the actual online store.

 

Product image name and file format is like this: For the buttons: button_checkout.gif (this button does not show): button_continue.gif (this button does show) and for the products I use bizcards.jpg

 

includes/configure.php

 define('HTTP_SERVER', 'http://www.letsjustprint.com');
 define('HTTPS_SERVER', 'https://www.letsjustprint.com');
 define('ENABLE_SSL', true);
 define('HTTP_COOKIE_DOMAIN', 'www.letsjustprint.com');
 define('HTTPS_COOKIE_DOMAIN', 'www.letsjustprint.com');
 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/letsjust/public_html/');
 define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
 define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

 

admin/includes/configure.php

  define('HTTP_SERVER', 'http://www.letsjustprint.com');
 define('HTTP_CATALOG_SERVER', 'http://www.letsjustprint.com');
 define('HTTPS_CATALOG_SERVER', 'https://www.letsjustprint.com');
 define('ENABLE_SSL_CATALOG', 'true');
 define('DIR_FS_DOCUMENT_ROOT', '/home/letsjust/public_html/');
 define('DIR_WS_ADMIN', '/admin/');
 define('DIR_FS_ADMIN', '/home/letsjust/public_html/admin/');
 define('DIR_WS_CATALOG', '/');
 define('DIR_FS_CATALOG', '/home/letsjust/public_html/');
 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/');

 

 

Hope this information helps!

 

Thank you in advance!

Edited by joseluisdesigns
Link to comment
Share on other sites

As You have installed STS, make sure block capture captures the image code part.

 

Also make sure that this block is called on the display page.

 

Satish

 

Satish,

 

I didn't install the STS manually is was part of an OSCommerce package I installed so I don't know exactly what Block Capture is.

 

Do you think that might be it?

Link to comment
Share on other sites

  • 2 weeks later...
  • 1 month later...

I have seen you website, How did you bypass this error?

I am having the same issue.

 

 

What a mess....

 

If you have any STS related support questions, please ask them in the STSv4 Support Forum. I refuse to continue to have to "hunt" these requests down. The answer to the above is quite simple, probably already been addressed in the STS support thread.

Bill Kellum

 

Sounds Good Productions

STS Tutorials & more: STSv4.6, STS Add-ons (STS Power Pack), STS V4 Forum STS Forum FREE TEMPLATE

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...