Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

[Contribution] STS v4


Guest

Recommended Posts

If the default template is working but not your own, problem is in your template. Path to images but be relative to your catalog folder, so path to images should look like "images/logo.gif" in your template and not "../../images/logo.gif".

 

- Rigadin

 

No, I mean that the images in the shopping cart aren't showing up--the "put in cart", "checkout", "OSC Logo" etc images aren't showing up. They do, however, in the default template. All the other images in my template--my own logos and images--are showing up fine.

 

Here is a link to my shop so you can see what I mean...

 

http://www.reidwrite.com/shop/

 

(If you scroll down to the bottom of the page you'll see a list of the default products that come with a fresh OSC install. You can see all the product names, but all of their images are broken. The same if you click on a product to get more info).

 

Ignore the other formatting issues, I'll take care of those later.

 

 

 

-jlr1001

Link to comment
Share on other sites

You are right, there is a double </body></html> with STS v4.1: one from the template and one from the php script.

 

A fast patch for this:

 

At the beginning of includes/footer.php, the STS code should be:

 

// START STS 4.1 with footer patch
if ($sts->display_template_output) {
 //include DIR_WS_MODULES.'sts_inc/sts_footer.php';
} else {
//END STS 4.1

(One line commented out)

 

And add at the beginning of includes/application_bottom.php:

 

// START STS 4.1 with footer patch
if ($sts->display_template_output) {
 include DIR_WS_MODULES.'sts_inc/sts_footer.php';
}
//END STS 4.1

 

- Rigadin

Chris,

having made the above patch, I see the following code above Doctype:

<!-- footer_eof //-->
</td></tr></table>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

includes/footer.php has the following code right at the top:

// START STS 4.1 with footer patch
if ($sts->display_template_output) {
 $sts->stop_capture();
// include DIR_WS_MODULES.'sts_inc/sts_footer.php';
} else {
//END STS 4.1

 require(DIR_WS_INCLUDES . 'counter.php');

includes/application_bottom.php looks the same as you indicated above. Why is sts forcing footer code at the top?

Link to comment
Share on other sites

No, I mean that the images in the shopping cart aren't showing up--the "put in cart", "checkout", "OSC Logo" etc images aren't showing up. They do, however, in the default template. All the other images in my template--my own logos and images--are showing up fine.

 

Here is a link to my shop so you can see what I mean...

 

http://www.reidwrite.com/shop/

 

(If you scroll down to the bottom of the page you'll see a list of the default products that come with a fresh OSC install. You can see all the product names, but all of their images are broken. The same if you click on a product to get more info).

 

Ignore the other formatting issues, I'll take care of those later.

-jlr1001

J.L .

I looked at your link, sorry to say but your template is awful. assign a simple template like that which comes with the install and I will help you troubleshoot it.

Link to comment
Share on other sites

Could anybody please help me with my templates not displaying HTC meta tags? I have HTC just partially working on index and product_info pages but not working on my other pages created based on about_us page. Any advices?

 

Thanks.

Irina,

see my post here on the HTC forum for a solution , it has nothing to do with STS

Link to comment
Share on other sites

J.L .

I looked at your link, sorry to say but your template is awful. assign a simple template like that which comes with the install and I will help you troubleshoot it.

 

Ummm, I'll try not to be too insulted by that comment. <_<

 

Actually that template mirrors my main site's design, so I have to keep it (for obvious reasons). There is currently a problem with the table that OSC builds causing my right margin to extend beyond where I need it, but I'll have to go and alter OSC's php source to fix that problem.

 

Basically I don't want everything that you usually find in an OSC store in my shop. Just the product info with the links to add them to the shopping cart. I have little use, right now, for all the additional info boxes that you'd normally see.

 

So, another template isn't an option. As for the template being "awful" I'd have to object because the basic coding for it is rather simple. Clean DIV tags and css styles. How, exactly, is that awful?

 

The other possibility is that there's some browser quirks that are creeping into this conversation. Could you tell me what browser you're using?

 

Otherwise, I don't see how your blanket criticism is anything close to constructive.

 

Thanks,

 

 

 

-jlr1001

P.S. Just in case you didn't realize, I'm not finished integrating OSC into my site's template. So we don't have any navigation or left column elements. As I said in my first post, I'm just trying to troubleshoot an issue with the images before I continue working with this integration... I appreciate any further thoughts you might have.

Edited by jlr1001
Link to comment
Share on other sites

Ummm, I'll try not to be too insulted by that comment. <_<

Actually that template mirrors my main site's design, so I have to keep it (for obvious reasons). There is currently a problem with the table that OSC builds causing my right margin to extend beyond where I need it, but I'll have to go and alter OSC's php source to fix that problem.

Basically I don't want everything that you usually find in an OSC store in my shop. Just the product info with the links to add them to the shopping cart. I have little use, right now, for all the additional info boxes that you'd normally see.

So, another template isn't an option. As for the template being "awful" I'd have to object because the basic coding for it is rather simple. Clean DIV tags and css styles. How, exactly, is that awful?

The other possibility is that there's some browser quirks that are creeping into this conversation. Could you tell me what browser you're using?

Otherwise, I don't see how your blanket criticism is anything close to constructive.

Thanks,

-jlr1001

This sounds like a configure.php problem, not STS.

 

Check the following:

 

/includes/configure.php - edit this file! Check the HTTP Server paths and cookie domain. Do they say localhost? If so - change it to your store's address.

 

Hope this helps,

 

Bill Kellum

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

Cool deal. I totally wasn't thinking about the configure file ... (it's been some time since I've done a fresh OSC install and configuration).

 

Changing server path and cookie domain setting didn't work for me, however I say that the image path was set to "images/". On a whim I hardcoded the image path to "shop/images/" and that worked fine.

 

Thanks for your help.

 

 

 

-jlr1001

Link to comment
Share on other sites

Cool deal. I totally wasn't thinking about the configure file ... (it's been some time since I've done a fresh OSC install and configuration).

 

Changing server path and cookie domain setting didn't work for me, however I say that the image path was set to "images/". On a whim I hardcoded the image path to "shop/images/" and that worked fine.

 

Thanks for your help.

-jlr1001

forgive my opinion for calling your template awful. It is just my opinion, I prefer simple clean layouts. I commend you on using Divs and CSS, I hate table layouts which is why I wrote a contribution called Tableless CSS template, links in my signature. I did not suggest for you to check configure.php because I already saw that your pics were already looking into /images directory but i can not see across your page because of how FF displays your template. J.L., it is very easy to switch templates to the full version you have from the install. you can set it at admin > modules > sts > default as below then later you can just switch back.

 

Default

---------

Use Templates? :true

Code for debug output: debug

Files for normal template: sts_user_code.php;headertags.php

Template folder: xyz

Default template file: sts_template.html

Link to comment
Share on other sites

Hey Guys

 

Absolutely great contribution, credit due to all the developers and modifiers.

 

Quick question, i've decided to use the product_info.php.html file in the contents folder for my product info.

I have chosen, the 'true' function in ADMIN unders STS.

 

Everything is working fine, but with the previous product_info.php, i had the mores pics 6 contribution installed

 

I'm trying to put the coding for the morepic 6 contribution into the html template, but keep coming up with fatal errors regarding teP_db_query from the category.php file

 

If anyone has a solution for this, it would be much appreciated

 

Thanks

 

Tarek

RACESPEC SALES TEAM

Link to comment
Share on other sites

Hi Regadin,

 

Thanks a lot. The redundant code no longer displays now. However, as mentioned in my previous message there is a redundant <Table> section that displays above the <html> tag. Here is an excerpt from it :

 

<table border="0" width="100%" cellspacing="0" cellpadding="2">

<tr class="messageStackWarning">

<td class="messageStackWarning"><img src="images/icons/warning.gif" border="0" alt="Warning" title=" Warning " width="10" height="10"> Warning: Installation directory exists at: /srv/www/htdocs/catalog/install. Please remove this directory for security reasons.</td>

</tr>

<tr class="messageStackWarning">

<td class="messageStackWarning"><img src="images/icons/warning.gif" border="0" alt="Warning" title=" Warning " width="10" height="10"> Warning: I am able to write to the configuration file: /srv/www/htdocs/catalog/includes/configure.php. This is a potential security risk - please set the right user permissions on this file.</td>

</tr>

</table>

<table border="0" width="100%" cellspacing="0" cellpadding="0">

 

<tr class="header">

<td valign="middle"><a href="http://localhost/catalog/index.php?osCsid=mm2ne6lld46hjkkhdiotcdtlq2"><img'>http://localhost/catalog/index.php?osCsid=mm2ne6lld46hjkkhdiotcdtlq2"><img src="images/oscommerce.gif" border="0" alt="osCommerce" title=" osCommerce " width="204" height="50"></a></td>

<td align="right" valign="bottom"><a href="http://localhost/catalog/account.php?osCsid=mm2ne6lld46hjkkhdiotcdtlq2"><img'>http://localhost/catalog/account.php?osCsid=mm2ne6lld46hjkkhdiotcdtlq2"><img src="images/header_account.gif" border="0" alt="My Account" title=" My Account " width="30" height="30"></a> <a href="http://localhost/catalog/shopping_cart.php?osCsid=mm2ne6lld46hjkkhdiotcdtlq2"><img'>http://localhost/catalog/shopping_cart.php?osCsid=mm2ne6lld46hjkkhdiotcdtlq2"><img src="images/header_cart.gif" border="0" alt="Cart Contents" title=" Cart Contents " width="30" height="30"></a> <a href="http://localhost/catalog/checkout_shipping.php?osCsid=mm2ne6lld46hjkkhdiotcdtlq2"><img'>http://localhost/catalog/checkout_shipping.php?osCsid=mm2ne6lld46hjkkhdiotcdtlq2"><img src="images/header_checkout.gif" border="0" alt="Checkout" title=" Checkout " width="30" height="30"></a> </td>

</tr>

</table>

<table border="0" width="100%" cellspacing="0" cellpadding="1">

<tr class="headerNavigation">

<td class="headerNavigation"> <a href="http://localhost" class="headerNavigation">Top</a> ? <a href="http://localhost/catalog/index.php?osCsid=mm2ne6lld46hjkkhdiotcdtlq2" class="headerNavigation">Catalog</a></td>

 

<td align="right" class="headerNavigation"><a href="http://localhost/catalog/account.php?osCsid=mm2ne6lld46hjkkhdiotcdtlq2" class="headerNavigation">My Account</a> | <a href="http://localhost/catalog/shopping_cart.php?osCsid=mm2ne6lld46hjkkhdiotcdtlq2" class="headerNavigation">Cart Contents</a> | <a href="http://localhost/catalog/checkout_shipping.php?osCsid=mm2ne6lld46hjkkhdiotcdtlq2" class="headerNavigation">Checkout</a> </td>

</tr>

</table>

<!-- header_eof //-->

 

<!-- body //-->

<table border="0" width="100%" cellspacing="3" cellpadding="3">

<tr>

<td width="125" valign="top"><table border="0" width="125" cellspacing="0" cellpadding="2">

<!-- left_navigation //-->

<!-- right_navigation_eof //-->

</table></td>

</tr>

</table>

<!-- body_eof //-->

 

<!-- footer //-->

 

Thanks for your kind help and support.

 

 

You are right, there is a double </body></html> with STS v4.1: one from the template and one from the php script.

 

A fast patch for this:

 

At the beginning of includes/footer.php, the STS code should be:

 

// START STS 4.1 with footer patch
if ($sts->display_template_output) {
 //include DIR_WS_MODULES.'sts_inc/sts_footer.php';
} else {
//END STS 4.1

(One line commented out)

 

And add at the beginning of includes/application_bottom.php:

 

// START STS 4.1 with footer patch
if ($sts->display_template_output) {
 include DIR_WS_MODULES.'sts_inc/sts_footer.php';
}
//END STS 4.1

 

- Rigadin

Link to comment
Share on other sites

$content is taken from the php script you are running. For example, the $content for index.php is the piece of code you find in index.php, between the call of column_left and the call of column_right. If you want to modify it, you have to modify the script itself.

 

- Rigadin

Link to comment
Share on other sites

Thanks Chris,

It took a few hours but I think I got it. (or at least the few changes I made are working)

 

Can you or anybody give me an idea of how to create a new variable? Specifically I would like to use something like $login and $new (new account)

 

Is it possible for a newb with limited skills?

 

TIA

Steve

Link to comment
Share on other sites

There are examples in the file catalog/includes/modules/sts_inc/sts_user_code.php .

For your login, you can maybe find an infobox that do the job and use the example to create a tag for it.

 

Generally the user's mods are put into sts_user_code.php . An easy way to create new tag is to make as follow:

$sts->template['mynewtag'] = 'MyCode';

and place $mynewtag in the template to display 'MyCode'.

 

- Rigadin

Link to comment
Share on other sites

I'm having a small problem trying to integrate Fast Easy Checkout and STS together.

 

The problem I'm having is that FEC calls a toggle_collapse javascript function. However the "collapse" aspect doesn't work. The form that's supposed to be collapsed is already expanded.

 

Here's the particular area of code that defines the form and the toggle_collapse function call:

 

<td height="35" class="infoboxheader" valign="middle"><?php echo LOGINBOX_EXSISTING_CUSTOMER_NOW ?><?php //echo tep_draw_checkbox_field('caccount', 'Y',$checked = false ,'id="togglenow"' ) . '  ' ; ?><input type="image" src="images/collapse_tcat.gif" name="row" value="1" onclick="return toggle_collapse('forumbit_2')"></td>

</tr><TBODY id=collapseobj_forumbit_2>

<td><p id="lorem2" >

<table border="0" width="100%" height="100%" cellspacing="0" cellpadding="2">

<tr class="infoBoxContents">

<td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?><?php echo tep_draw_form('login', tep_href_link(FILENAME_LOGIN, 'action=process', 'SSL')); ?></td>

</tr>

 

<td colspan="2"><?php //echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

</tr>

<tr class="infoBoxContents">

<td class="main"><b><?php echo ENTRY_EMAIL_ADDRESS; ?></b></td>

<td class="main"><?php echo tep_draw_input_field('email_address'); ?></td>

</tr>

<tr class="infoBoxContents">

<td class="main"><b><?php echo ENTRY_PASSWORD; ?></b></td>

<td class="main"><?php echo tep_draw_password_field('password'); ?></td>

</tr>

<tr>

<td colspan="2"><?php //echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

</tr>

<tr>

<td align="right"><?php echo tep_image_submit('button_login.gif', IMAGE_BUTTON_LOGIN); ?></P></td><td class="smallText" colspan="2"><?php echo '<a href="' . tep_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . TEXT_PASSWORD_FORGOTTEN . '</a>'; ?></td>

 

</table> </form></td><script>toggle_collapse('forumbit_2')</script>

</tr> </TBODY>

 

The toggle_collapse function is defined in globals.js. I've tried putting the js code in header.php, between the <head> tags in sts_template.html. I guess I'm at a loss as to what to do to get this to work.

 

Can anybody point me in a direction??

Many thanks to all and for a fab contribution!!

I only do what my Rice Krispies tell me to do!

Link to comment
Share on other sites

Hi,

 

I need help for a basic and hopefully simple problem.

 

I installed STS v4 over a slighlty modified osCommerce (but with no prior verison of STS). i did the manual modifications and checked them. I also tried with or without the updates. Either ways, when I activete STS, all I get is an unformatted footer. I realized that nothing was coming out of PHP code - the footer that I can see is HTML coded diretly in the php files.

 

thanks

 

Jeff

Link to comment
Share on other sites

??? STS 4.1: missing sts_restart_capture.php / STS_RESTART_CAPTURE ???

 

Good evening

 

I am writing an STS Addon for Infobox Admin and I have read that one has to use

STS_RESTART_CAPTURE to add Infoboxes, for example:

 

include(DIR_WS_BOXES . 'TheInfoBox.php');
$sts_block_name = 'TheInfoBox';
require(STS_RESTART_CAPTURE);

If I search for sts_restart_capture.php and STS_RESTART_CAPTURE in the

STS 4.1 zip-file, then I can not find anyting linke that.

 

Unfortunately, I also have not found any information that this function

was removed or replaced.

 

Can someon please answer this question so that I can finish the Addon?

 

Thanks a lot in advance,

kind regards,

Thomas

Link to comment
Share on other sites

Just installed a clean OSC,

installed STS 4.1

installed the updates as listed in the contrib page (including infobox templates by Grinya, small STS v4.1 update by Cally and the other one by Cally, and the updates by the author)

 

I get errors:

 

This one upon my attempt to configure STS:

 

Fatal error: Cannot redeclare class sts_default in /home/www/caracards.freehostia.com/includes/modules/sts/sts_default.php on line 16

 

I figured maybe there was file duplication going on, So, I looked in /catalog/includes/modules/sts, and then in the rest of the directory tree... and there, in /catalog/includes/languages/english/modules/sts were duplicates of the following files:

 

sts_default.php

sts_index.php

sts_infobox.php

sts_product_info.php

 

I tried renaming one set (xxx.php2) and got these errors:

 

Warning: main(/home/www/caracards.freehostia.com/includes/languages/english/modules/sts/sts_default.php): failed to open stream: No such file or directory in /home/www/caracards.freehostia.com/admin/modules.php on line 136

 

Warning: main(): Failed opening '/home/www/caracards.freehostia.com/includes/languages/english/modules/sts/sts_default.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/www/caracards.freehostia.com/admin/modules.php on line 136

 

Warning: main(/home/www/caracards.freehostia.com/includes/languages/english/modules/sts/sts_index.php): failed to open stream: No such file or directory in /home/www/caracards.freehostia.com/admin/modules.php on line 136

 

Warning: main(): Failed opening '/home/www/caracards.freehostia.com/includes/languages/english/modules/sts/sts_index.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/www/caracards.freehostia.com/admin/modules.php on line 136

 

Warning: main(/home/www/caracards.freehostia.com/includes/languages/english/modules/sts/sts_infobox.php): failed to open stream: No such file or directory in /home/www/caracards.freehostia.com/admin/modules.php on line 136

 

Warning: main(): Failed opening '/home/www/caracards.freehostia.com/includes/languages/english/modules/sts/sts_infobox.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/www/caracards.freehostia.com/admin/modules.php on line 136

 

Warning: main(/home/www/caracards.freehostia.com/includes/languages/english/modules/sts/sts_product_info.php): failed to open stream: No such file or directory in /home/www/caracards.freehostia.com/admin/modules.php on line 136

 

Warning: main(): Failed opening '/home/www/caracards.freehostia.com/includes/languages/english/modules/sts/sts_product_info.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/www/caracards.freehostia.com/admin/modules.php on line 136

 

BUT, I could finally configure STS. So, I did.

 

What I got was that header.php was evidently called twice (as evidenced by the dual header and osC banners at the top of the page), and this error on the page itself:

 

Template file does not exist: [includes/sts_templates/test/boxes/infobox_header.php.html]Template file does not exist: [includes/sts_templates/test/boxes/infobox.php.html]

 

TEN TIMES

 

ok..... I'm a little lost, but I figured STS HAD to be a better contrib than BTS (Which after all day yesterday and 3/4 of today, I dissed and wiped my store to install clean). I HAS to be.

 

Help? (before I lose what's left of the hair I got)

 

Thanks,

 

Joseph

Link to comment
Share on other sites

ok..... I'm a little lost, but I figured STS HAD to be a better contrib than BTS (Which after all day yesterday and 3/4 of today, I dissed and wiped my store to install clean). I HAS to be.

Help? (before I lose what's left of the hair I got)

Thanks,

Joseph

Take a look through this forum and do a search for double headers and you will find your answer. This problem is caused by a couple of the bad contributions added to STSv4.1.

 

The updates that you added are causing ALL of your listed issues. Remove and reinstall STSv4.1 and files by Rigadin as of today's date (August 1, 2006).

 

 

 

Hope I was able to send you down the right path to a stable STS,

 

Bill Kellum

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

Bill,

 

Thanks for your timely response :) I'm in the process of following your advice, and I'm confident enough in it to write this prior to seeing the results.

 

What, or which, of the 'tribs would have caused that? I like the idea of templates for the infoboxes, so I'd be sad to see it go.

 

Is there another 'trib that'd perform the same function?

 

Thanks again,

 

Joseph

Link to comment
Share on other sites

??? STS 4.1: missing sts_restart_capture.php / STS_RESTART_CAPTURE ???

 

Good evening

 

I am writing an STS Addon for Infobox Admin and I have read that one has to use

STS_RESTART_CAPTURE to add Infoboxes, for example:

 

include(DIR_WS_BOXES . 'TheInfoBox.php');
$sts_block_name = 'TheInfoBox';
require(STS_RESTART_CAPTURE);

If I search for sts_restart_capture.php and STS_RESTART_CAPTURE in the

STS 4.1 zip-file, then I can not find anyting linke that.

 

Unfortunately, I also have not found any information that this function

was removed or replaced.

 

Can someon please answer this question so that I can finish the Addon?

 

Thanks a lot in advance,

kind regards,

Thomas

A sure way to add an sts infobox is to follow examples in sts_user_code.php

$sts->start_capture();
  require(DIR_WS_BOXES . 'reviews.php');
  $sts->stop_capture('reviewbox', 'box');

Link to comment
Share on other sites

The STS updates by Cally are causing the double header problem. The infoboxes templating is working fine, you have to define a template for the infobox header and a template for the content.

 

You can find here a list of what to install to have the latest working version.

 

 

Bill,

 

Thanks for your timely response :) I'm in the process of following your advice, and I'm confident enough in it to write this prior to seeing the results.

 

What, or which, of the 'tribs would have caused that? I like the idea of templates for the infoboxes, so I'd be sad to see it go.

 

Is there another 'trib that'd perform the same function?

 

Thanks again,

 

Joseph

Link to comment
Share on other sites

A sure way to add an sts infobox is to follow examples in sts_user_code.php

$sts->start_capture();
  require(DIR_WS_BOXES . 'reviews.php');
  $sts->stop_capture('reviewbox', 'box');

Thanks a lot, deano, for your fast answer & solution!

Now I see that's not so simple to add the Infobox Admin Contribution

to STS, but we'll see...

 

Kind regards,

Thomas

Link to comment
Share on other sites

Cool deal. I totally wasn't thinking about the configure file ... (it's been some time since I've done a fresh OSC install and configuration).

 

Changing server path and cookie domain setting didn't work for me, however I say that the image path was set to "images/". On a whim I hardcoded the image path to "shop/images/" and that worked fine.

 

Spoke too soon....

 

After changing the path and domain settings in my configure file I started seeing product and navigation images. So I thought I was fine, except I wasn't. When I tested a purchase I saw that my "add to cart", "checkout", etc. images were still missing. These are all the images that are in the includes/languages/english/images/buttons/ directory. Basically OSC was looking for the includes directory in my root directory, rather than in my catalog directory.

 

I tried to find where this path was being created but felt a little lazy. So I quick fixed it by copying the includes directory to my root, which worked fine. Now I'm trying to integrate the Paypal Web Payments Pro contribution into my OSC install and I'm getting the same problem with some of the images... (OSC is looking for a specific file in my root directory rather than under my catalog). Tried my quick fix and it worked for the images, but not for the functionality of the paypal WPP contribution.

 

The short of it. I need to figure out how to get my OSC install to not look for some directories in my root when it should be looking in my catalog directory. As best I can tell, something in my STS install is causing this bug.

 

Any thoughts?

 

 

 

-jlr1001

Link to comment
Share on other sites

??? How to detect if STS v4 is installed ???

 

Good afternoon

 

Is there a proposed way to detect if STS is installed (and active)?

 

I would like to make Infobox Admin compatible for STS and

if there is something proposed I would like to use this solution...

 

Thanks a lot in advance,

kind regards,

Thomas

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