Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Help needed


Guest

Recommended Posts

Posted

Can anyone help me!!!???

 

I have modified the currency file in the localizations menu in the admin, I don't know what I did or fow I even did it.

 

When I click on the localization admin area I come up with this error

 

Warning: main(file:///C|/public_html/osCommerce/admin/includes/application_top.php) [function.main]: failed to open stream: No such file or directory in ....../public_html/osCommerce/admin/currencies.php on line 13

 

Warning: main(file:///C|/public_html/osCommerce/admin/includes/application_top.php) [function.main]: failed to open stream: No such file or directory in ....../public_html/osCommerce/admin/currencies.php on line 13

 

Warning: main(file:///C|/public_html/osCommerce/admin/includes/application_top.php) [function.main]: failed to open stream: No such file or directory in ......../public_html/osCommerce/admin/currencies.php on line 13

 

Fatal error: main() [function.require]: Failed opening required 'file:///C|/public_html/osCommerce/admin/includes/application_top.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in ...../public_html/osCommerce/admin/currencies.php on line 13

 

Can some one send me their code for their /public_html/osCommerce/admin/includes/application_top.php' or

/currencies.php for me to compare.

 

All I was trying to do was set up a new currency. :blush:

 

 

Any help appreciated

 

 

Sean

Posted
Can anyone help me!!!???

 

I have modified the currency file in the localizations menu in the admin, I don't know what I did or fow I even did it.

 

When I click on the localization admin area I come up with this error

 

Warning: main(file:///C|/public_html/osCommerce/admin/includes/application_top.php) [function.main]: failed to open stream: No such file or directory in ....../public_html/osCommerce/admin/currencies.php on line 13

 

Warning: main(file:///C|/public_html/osCommerce/admin/includes/application_top.php) [function.main]: failed to open stream: No such file or directory in ....../public_html/osCommerce/admin/currencies.php on line 13

 

Warning: main(file:///C|/public_html/osCommerce/admin/includes/application_top.php) [function.main]: failed to open stream: No such file or directory in ......../public_html/osCommerce/admin/currencies.php on line 13

 

Fatal error: main() [function.require]: Failed opening required 'file:///C|/public_html/osCommerce/admin/includes/application_top.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in ...../public_html/osCommerce/admin/currencies.php on line 13

 

Can some one send me their code for their /public_html/osCommerce/admin/includes/application_top.php' or

/currencies.php for me to compare.

 

All I was trying to do was set up a new currency. :blush:

Any help appreciated

Sean

You add new currencies in the admin localization curremcies. What version of currencies do you need?

Posted

I just need the file as I can't open localization anymore.

 

Sean

Posted
I just need the file as I can't open localization anymore.

 

Sean

What version of currencies do you need?

Posted

Umm, I'm not sure, how would I know :blush:

Posted
Umm, I'm not sure, how would I know :blush:

OK, this is from RC1

 

<?php

/*

$Id: currencies.php,v 1.49 2003/06/29 22:50:51 hpdl Exp $

 

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2003 osCommerce

 

Released under the GNU General Public License

*/

 

require('includes/application_top.php');

 

require(DIR_WS_CLASSES . 'currencies.php');

$currencies = new currencies();

 

$action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : '');

 

if (tep_not_null($action)) {

switch ($action) {

case 'insert':

case 'save':

if (isset($HTTP_GET_VARS['cID'])) $currency_id = tep_db_prepare_input($HTTP_GET_VARS['cID']);

$title = tep_db_prepare_input($HTTP_POST_VARS['title']);

$code = tep_db_prepare_input($HTTP_POST_VARS['code']);

$symbol_left = tep_db_prepare_input($HTTP_POST_VARS['symbol_left']);

$symbol_right = tep_db_prepare_input($HTTP_POST_VARS['symbol_right']);

$decimal_point = tep_db_prepare_input($HTTP_POST_VARS['decimal_point']);

$thousands_point = tep_db_prepare_input($HTTP_POST_VARS['thousands_point']);

$decimal_places = tep_db_prepare_input($HTTP_POST_VARS['decimal_places']);

$value = tep_db_prepare_input($HTTP_POST_VARS['value']);

 

$sql_data_array = array('title' => $title,

'code' => $code,

'symbol_left' => $symbol_left,

'symbol_right' => $symbol_right,

'decimal_point' => $decimal_point,

'thousands_point' => $thousands_point,

'decimal_places' => $decimal_places,

'value' => $value);

 

if ($action == 'insert') {

tep_db_perform(TABLE_CURRENCIES, $sql_data_array);

$currency_id = tep_db_insert_id();

} elseif ($action == 'save') {

tep_db_perform(TABLE_CURRENCIES, $sql_data_array, 'update', "currencies_id = '" . (int)$currency_id . "'");

}

 

if (isset($HTTP_POST_VARS['default']) && ($HTTP_POST_VARS['default'] == 'on')) {

tep_db_query("update " . TABLE_CONFIGURATION . " set configuration_value = '" . tep_db_input($code) . "' where configuration_key = 'DEFAULT_CURRENCY'");

}

 

tep_redirect(tep_href_link(FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page'] . '&cID=' . $currency_id));

break;

case 'deleteconfirm':

$currencies_id = tep_db_prepare_input($HTTP_GET_VARS['cID']);

 

$currency_query = tep_db_query("select currencies_id from " . TABLE_CURRENCIES . " where code = '" . DEFAULT_CURRENCY . "'");

$currency = tep_db_fetch_array($currency_query);

 

if ($currency['currencies_id'] == $currencies_id) {

tep_db_query("update " . TABLE_CONFIGURATION . " set configuration_value = '' where configuration_key = 'DEFAULT_CURRENCY'");

}

 

tep_db_query("delete from " . TABLE_CURRENCIES . " where currencies_id = '" . (int)$currencies_id . "'");

 

tep_redirect(tep_href_link(FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page']));

break;

case 'update':

$server_used = CURRENCY_SERVER_PRIMARY;

 

$currency_query = tep_db_query("select currencies_id, code, title from " . TABLE_CURRENCIES);

while ($currency = tep_db_fetch_array($currency_query)) {

$quote_function = 'quote_' . CURRENCY_SERVER_PRIMARY . '_currency';

$rate = $quote_function($currency['code']);

 

if (empty($rate) && (tep_not_null(CURRENCY_SERVER_BACKUP))) {

$messageStack->add_session(sprintf(WARNING_PRIMARY_SERVER_FAILED, CURRENCY_SERVER_PRIMARY, $currency['title'], $currency['code']), 'warning');

 

$quote_function = 'quote_' . CURRENCY_SERVER_BACKUP . '_currency';

$rate = $quote_function($currency['code']);

 

$server_used = CURRENCY_SERVER_BACKUP;

}

 

if (tep_not_null($rate)) {

tep_db_query("update " . TABLE_CURRENCIES . " set value = '" . $rate . "', last_updated = now() where currencies_id = '" . (int)$currency['currencies_id'] . "'");

 

$messageStack->add_session(sprintf(TEXT_INFO_CURRENCY_UPDATED, $currency['title'], $currency['code'], $server_used), 'success');

} else {

$messageStack->add_session(sprintf(ERROR_CURRENCY_INVALID, $currency['title'], $currency['code'], $server_used), 'error');

}

}

 

tep_redirect(tep_href_link(FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page'] . '&cID=' . $HTTP_GET_VARS['cID']));

break;

case 'delete':

$currencies_id = tep_db_prepare_input($HTTP_GET_VARS['cID']);

 

$currency_query = tep_db_query("select code from " . TABLE_CURRENCIES . " where currencies_id = '" . (int)$currencies_id . "'");

$currency = tep_db_fetch_array($currency_query);

 

$remove_currency = true;

if ($currency['code'] == DEFAULT_CURRENCY) {

$remove_currency = false;

$messageStack->add(ERROR_REMOVE_DEFAULT_CURRENCY, 'error');

}

break;

}

}

?>

<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">

<html <?php echo HTML_PARAMS; ?>>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">

<title><?php echo TITLE; ?></title>

<link rel="stylesheet" type="text/css" href="includes/stylesheet.css">

<script language="javascript" src="includes/general.js"></script>

</head>

<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" bgcolor="#FFFFFF" onload="SetFocus();">

<!-- header //-->

<?php require(DIR_WS_INCLUDES . 'header.php'); ?>

<!-- header_eof //-->

 

<!-- body //-->

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

<tr>

<td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="1" cellpadding="1" class="columnLeft">

<!-- left_navigation //-->

<?php require(DIR_WS_INCLUDES . 'column_left.php'); ?>

<!-- left_navigation_eof //-->

</table></td>

<!-- body_text //-->

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

<tr>

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

<tr>

<td class="pageHeading"><?php echo HEADING_TITLE; ?></td>

<td class="pageHeading" align="right"><?php echo tep_draw_separator('pixel_trans.gif', HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

</tr>

</table></td>

</tr>

<tr>

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

<tr>

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

<tr class="dataTableHeadingRow">

<td class="dataTableHeadingContent"><?php echo TABLE_HEADING_CURRENCY_NAME; ?></td>

<td class="dataTableHeadingContent"><?php echo TABLE_HEADING_CURRENCY_CODES; ?></td>

<td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_CURRENCY_VALUE; ?></td>

<td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_ACTION; ?> </td>

</tr>

<?php

$currency_query_raw = "select currencies_id, title, code, symbol_left, symbol_right, decimal_point, thousands_point, decimal_places, last_updated, value from " . TABLE_CURRENCIES . " order by title";

$currency_split = new splitPageResults($HTTP_GET_VARS['page'], MAX_DISPLAY_SEARCH_RESULTS, $currency_query_raw, $currency_query_numrows);

$currency_query = tep_db_query($currency_query_raw);

while ($currency = tep_db_fetch_array($currency_query)) {

if ((!isset($HTTP_GET_VARS['cID']) || (isset($HTTP_GET_VARS['cID']) && ($HTTP_GET_VARS['cID'] == $currency['currencies_id']))) && !isset($cInfo) && (substr($action, 0, 3) != 'new')) {

$cInfo = new objectInfo($currency);

}

 

if (isset($cInfo) && is_object($cInfo) && ($currency['currencies_id'] == $cInfo->currencies_id) ) {

echo ' <tr id="defaultSelected" class="dataTableRowSelected" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\'' . tep_href_link(FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page'] . '&cID=' . $cInfo->currencies_id . '&action=edit') . '\'">' . "\n";

} else {

echo ' <tr class="dataTableRow" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\'' . tep_href_link(FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page'] . '&cID=' . $currency['currencies_id']) . '\'">' . "\n";

}

 

if (DEFAULT_CURRENCY == $currency['code']) {

echo ' <td class="dataTableContent"><b>' . $currency['title'] . ' (' . TEXT_DEFAULT . ')</b></td>' . "\n";

} else {

echo ' <td class="dataTableContent">' . $currency['title'] . '</td>' . "\n";

}

?>

<td class="dataTableContent"><?php echo $currency['code']; ?></td>

<td class="dataTableContent" align="right"><?php echo number_format($currency['value'], 8); ?></td>

<td class="dataTableContent" align="right"><?php if (isset($cInfo) && is_object($cInfo) && ($currency['currencies_id'] == $cInfo->currencies_id) ) { echo tep_image(DIR_WS_IMAGES . 'icon_arrow_right.gif'); } else { echo '<a href="' . tep_href_link(FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page'] . '&cID=' . $currency['currencies_id']) . '">' . tep_image(DIR_WS_IMAGES . 'icon_info.gif', IMAGE_ICON_INFO) . '</a>'; } ?> </td>

</tr>

<?php

}

?>

<tr>

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

<tr>

<td class="smallText" valign="top"><?php echo $currency_split->display_count($currency_query_numrows, MAX_DISPLAY_SEARCH_RESULTS, $HTTP_GET_VARS['page'], TEXT_DISPLAY_NUMBER_OF_CURRENCIES); ?></td>

<td class="smallText" align="right"><?php echo $currency_split->display_links($currency_query_numrows, MAX_DISPLAY_SEARCH_RESULTS, MAX_DISPLAY_PAGE_LINKS, $HTTP_GET_VARS['page']); ?></td>

</tr>

<?php

if (empty($action)) {

?>

<tr>

<td><?php if (CURRENCY_SERVER_PRIMARY) { echo '<a href="' . tep_href_link(FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page'] . '&cID=' . $cInfo->currencies_id . '&action=update') . '">' . tep_image_button('button_update_currencies.gif', IMAGE_UPDATE_CURRENCIES) . '</a>'; } ?></td>

<td align="right"><?php echo '<a href="' . tep_href_link(FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page'] . '&cID=' . $cInfo->currencies_id . '&action=new') . '">' . tep_image_button('button_new_currency.gif', IMAGE_NEW_CURRENCY) . '</a>'; ?></td>

</tr>

<?php

}

?>

</table></td>

</tr>

</table></td>

<?php

$heading = array();

$contents = array();

 

switch ($action) {

case 'new':

$heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_NEW_CURRENCY . '</b>');

 

$contents = array('form' => tep_draw_form('currencies', FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page'] . (isset($cInfo) ? '&cID=' . $cInfo->currencies_id : '') . '&action=insert'));

$contents[] = array('text' => TEXT_INFO_INSERT_INTRO);

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_TITLE . '<br>' . tep_draw_input_field('title'));

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_CODE . '<br>' . tep_draw_input_field('code'));

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_SYMBOL_LEFT . '<br>' . tep_draw_input_field('symbol_left'));

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_SYMBOL_RIGHT . '<br>' . tep_draw_input_field('symbol_right'));

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_DECIMAL_POINT . '<br>' . tep_draw_input_field('decimal_point'));

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_THOUSANDS_POINT . '<br>' . tep_draw_input_field('thousands_point'));

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_DECIMAL_PLACES . '<br>' . tep_draw_input_field('decimal_places'));

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_VALUE . '<br>' . tep_draw_input_field('value'));

$contents[] = array('text' => '<br>' . tep_draw_checkbox_field('default') . ' ' . TEXT_INFO_SET_AS_DEFAULT);

$contents[] = array('align' => 'center', 'text' => '<br>' . tep_image_submit('button_insert.gif', IMAGE_INSERT) . ' <a href="' . tep_href_link(FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page'] . '&cID=' . $HTTP_GET_VARS['cID']) . '">' . tep_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');

break;

case 'edit':

$heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_EDIT_CURRENCY . '</b>');

 

$contents = array('form' => tep_draw_form('currencies', FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page'] . '&cID=' . $cInfo->currencies_id . '&action=save'));

$contents[] = array('text' => TEXT_INFO_EDIT_INTRO);

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_TITLE . '<br>' . tep_draw_input_field('title', $cInfo->title));

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_CODE . '<br>' . tep_draw_input_field('code', $cInfo->code));

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_SYMBOL_LEFT . '<br>' . tep_draw_input_field('symbol_left', $cInfo->symbol_left));

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_SYMBOL_RIGHT . '<br>' . tep_draw_input_field('symbol_right', $cInfo->symbol_right));

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_DECIMAL_POINT . '<br>' . tep_draw_input_field('decimal_point', $cInfo->decimal_point));

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_THOUSANDS_POINT . '<br>' . tep_draw_input_field('thousands_point', $cInfo->thousands_point));

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_DECIMAL_PLACES . '<br>' . tep_draw_input_field('decimal_places', $cInfo->decimal_places));

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_VALUE . '<br>' . tep_draw_input_field('value', $cInfo->value));

if (DEFAULT_CURRENCY != $cInfo->code) $contents[] = array('text' => '<br>' . tep_draw_checkbox_field('default') . ' ' . TEXT_INFO_SET_AS_DEFAULT);

$contents[] = array('align' => 'center', 'text' => '<br>' . tep_image_submit('button_update.gif', IMAGE_UPDATE) . ' <a href="' . tep_href_link(FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page'] . '&cID=' . $cInfo->currencies_id) . '">' . tep_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');

break;

case 'delete':

$heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_DELETE_CURRENCY . '</b>');

 

$contents[] = array('text' => TEXT_INFO_DELETE_INTRO);

$contents[] = array('text' => '<br><b>' . $cInfo->title . '</b>');

$contents[] = array('align' => 'center', 'text' => '<br>' . (($remove_currency) ? '<a href="' . tep_href_link(FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page'] . '&cID=' . $cInfo->currencies_id . '&action=deleteconfirm') . '">' . tep_image_button('button_delete.gif', IMAGE_DELETE) . '</a>' : '') . ' <a href="' . tep_href_link(FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page'] . '&cID=' . $cInfo->currencies_id) . '">' . tep_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');

break;

default:

if (is_object($cInfo)) {

$heading[] = array('text' => '<b>' . $cInfo->title . '</b>');

 

$contents[] = array('align' => 'center', 'text' => '<a href="' . tep_href_link(FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page'] . '&cID=' . $cInfo->currencies_id . '&action=edit') . '">' . tep_image_button('button_edit.gif', IMAGE_EDIT) . '</a> <a href="' . tep_href_link(FILENAME_CURRENCIES, 'page=' . $HTTP_GET_VARS['page'] . '&cID=' . $cInfo->currencies_id . '&action=delete') . '">' . tep_image_button('button_delete.gif', IMAGE_DELETE) . '</a>');

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_TITLE . ' ' . $cInfo->title);

$contents[] = array('text' => TEXT_INFO_CURRENCY_CODE . ' ' . $cInfo->code);

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_SYMBOL_LEFT . ' ' . $cInfo->symbol_left);

$contents[] = array('text' => TEXT_INFO_CURRENCY_SYMBOL_RIGHT . ' ' . $cInfo->symbol_right);

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_DECIMAL_POINT . ' ' . $cInfo->decimal_point);

$contents[] = array('text' => TEXT_INFO_CURRENCY_THOUSANDS_POINT . ' ' . $cInfo->thousands_point);

$contents[] = array('text' => TEXT_INFO_CURRENCY_DECIMAL_PLACES . ' ' . $cInfo->decimal_places);

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_LAST_UPDATED . ' ' . tep_date_short($cInfo->last_updated));

$contents[] = array('text' => TEXT_INFO_CURRENCY_VALUE . ' ' . number_format($cInfo->value, 8));

$contents[] = array('text' => '<br>' . TEXT_INFO_CURRENCY_EXAMPLE . '<br>' . $currencies->format('30', false, DEFAULT_CURRENCY) . ' = ' . $currencies->format('30', true, $cInfo->code));

}

break;

}

 

if ( (tep_not_null($heading)) && (tep_not_null($contents)) ) {

echo ' <td width="25%" valign="top">' . "\n";

 

$box = new box;

echo $box->infoBox($heading, $contents);

 

echo ' </td>' . "\n";

}

?>

</tr>

</table></td>

</tr>

</table></td>

<!-- body_text_eof //-->

</tr>

</table>

<!-- body_eof //-->

 

<!-- footer //-->

<?php require(DIR_WS_INCLUDES . 'footer.php'); ?>

<!-- footer_eof //-->

<br>

</body>

</html>

<?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>

Posted

Ok, that helps heaps.

 

I now have this error message, so I must be nearly there.

 

Parse error: syntax error, unexpected '/' in /home/*****/public_html/osCommerce/admin/currencies.php on line 13

 

What does Parse error: syntax error, unexpected '/' mean.

 

Sean

Posted

Here is the code on line 13

 

require(/home/*****/public_html/osCommerce/admin/includes/application_top.php');

 

what is missing.

 

Sean

Posted
Here is the code on line 13

 

require(/home/*****/public_html/osCommerce/admin/includes/application_top.php');

 

what is missing.

 

Sean

How did that code get into what was posted?

Posted

Well I was trying to see if there was a default currency some where as I was trying to add Aus dollars to my site, as all the prices went to '0'. I must of hit something by mistake, but now I don't know what the error is.

 

Sean

Posted
Well I was trying to see if there was a default currency some where as I was trying to add Aus dollars to my site, as all the prices went to '0'. I must of hit something by mistake, but now I don't know what the error is.

 

Sean

Just use the code from the file I posted.

 

How are you editing files and what program are you using.

 

Talk about the AUD when your site is working.

Posted

:D You are a legend Coopco!!!!!

 

Thanks for that, I finally sorted it out.

 

I am using dreamweaver as my editing program, but I now no what I did. Never click on update links as it changes the folder in which the site uses for the files. :blush:

 

As my site is all in NZD, how is the best way to add AUD as a secondry currency.

 

http://www.creativemusicproducts.co.nz

 

Cheers

again

 

Sean

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...