Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Recommended Posts

Posted

Now I have a fresh installed oscommerce060817 and have all the v4.4 filed copied to the right places,but where can I set the sts_default page to work?

Does it need to combine the previous version? I am getting a big crazy about it,any help would be highly appreciated!

 

Thomas

Posted
Now I have a fresh installed oscommerce060817 and have all the v4.4 filed copied to the right places,but where can I set the sts_default page to work?

Does it need to combine the previous version? I am getting a big crazy about it,any help would be highly appreciated!

 

Thomas

Thomas, I'm a little confuse about what you are asking. If you are merely asking how to configure STS now that it is installed, you will find all the information regarding configuration in the STS Installation Manual as well as the STS User Manual that came with the contribution.

 

**TIP**

You can find more help with STSv4.4 in the Official STS forums listed in my signature below.

Bill Kellum

 

Sounds Good Productions

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

Posted
Thomas, I'm a little confuse about what you are asking. If you are merely asking how to configure STS now that it is installed, you will find all the information regarding configuration in the STS Installation Manual as well as the STS User Manual that came with the contribution.

 

**TIP**

You can find more help with STSv4.4 in the Official STS forums listed in my signature below.

 

 

Thank you, bkellum! But does it needs me to copy all the files(both modified files and new files ) to my catalog or just new files ? Since mine is a fresh installed Oscommerce 060817,Thanks! Actually I have tried copy all the new files and then both modified and new files to my store,but still can't work?

 

Actually I am not quite understand this words from the manuals:"4) Some osCommerce files need to be modified. If you have a clean osCommerce install, you can just copy the files located in the "modified_files/catalog" folder over your catalog. If you have already installed other contributions, you can use a comparison program or make the changes manually." It means only the modified_files/catalog needed to be copied to my catalog,right? So I will only copy "modified_files/catalog" folder to my fresh installed oscommerce store? Please help,thanks a lot!

 

 

Thomas

Posted
Thomas, I'm a little confuse about what you are asking. If you are merely asking how to configure STS now that it is installed, you will find all the information regarding configuration in the STS Installation Manual as well as the STS User Manual that came with the contribution.

 

**TIP**

You can find more help with STSv4.4 in the Official STS forums listed in my signature below.

 

 

Thank you, bkellum! But does it needs me to copy all the files(both modified files and new files ) to my catalog or just new files ? Since mine is a fresh installed Oscommerce 060817,Thanks! Actually I have tried copy all the new files and then both modified and new files to my store,but still can't work?

 

Actually I am not quite understand this words from the manuals:"4) Some osCommerce files need to be modified. If you have a clean osCommerce install, you can just copy the files located in the "modified_files/catalog" folder over your catalog. If you have already installed other contributions, you can use a comparison program or make the changes manually." But the install instruction states:

1) Make a backup of your application.

2) Do it again

3) Copy all the new files to your store: copy the files from the folder "new_files/catalog" over your catalog.

4) Some osCommerce files need to be modified. If you have a clean osCommerce install, you can just copy the files located in the "modified_files/catalog" folder over your catalog. If you have already installed other contributions, you can use a comparison program or make the changes manually.

 

In my understanding,it requires both "modified_files/catalog" folder and "new_files/catalog" folder copied to the fresh installed oscommerce,is it right? Then my question is as clear as: Is "modified_files/catalog" folder or "new_files/catalog" folder needed to be copied to fresh installed oscommerce? Thanks!

 

 

 

Thomas

Posted
In my understanding,it requires both "modified_files/catalog" folder and "new_files/catalog" folder copied to the fresh installed oscommerce,is it right? Then my question is as clear as: Is "modified_files/catalog" folder or "new_files/catalog" folder needed to be copied to fresh installed oscommerce? Thanks!

 

Thomas

Yes, you need both sets of files. They are divided because one set (new_files) has files in it that are new to osCommerce and pertain only to the STS contribution. The second set (modified_files) has files in it that exist in your current osCommerce store but need to be modified to make STS work.

 

For example: In the New_files set, you will find a file named "sts_template.htm". This file is not included with a "stock" osCommerce store.

In the Modified_files set, you will find a file named "application_top.php". You will notice that a stock osCommerce already has a file called "application_top.php". You are still required to "add" the extra code to this file since STS will not work without it.

 

Hopefully this clears things up for you.

 

Note: Please post any future questions regarding the above in the official STSv4 forum. I have provided a link to this forum in my signature below.

Bill Kellum

 

Sounds Good Productions

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

Posted

Thank you!

 

I have did the work you called"refresh Bug" most newbiews met,as below,but my default sts v4.4 still can't work,I don't know what is the problem and feel very sad with my problem,hope can get your help!Thanks very much!

 

"You are experiencing the widely known "refresh bug" of the modules section which includes shipping, payment, etc (not just isolated to the STS modules, but all of the other modules as well).

 

There is a simple fix:

 

1. Open the catalog/admin/includes/functions/compatibility.php.

2. At the end of the “do_magic_quotes_gpc” routine, add the following code

 

 

CODE

reset($ar);

 

 

It will end up looking like this:

 

 

CODE

function do_magic_quotes_gpc(&$ar) {

if (!is_array($ar)) return false;

while (list($key, $value) = each($ar)) {

if (is_array($ar[$key])) {

do_magic_quotes_gpc($ar[$key]);

} else {

$ar[$key] = addslashes($value);

}

}

reset($ar);

}

 

 

3. Do the same for the compatibility.php file located in catalog/includes/functions/compatibility.php."

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

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...