Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Parse error: syntax error, unexpected '}' in /home/manateeg/public_html/admin/includes/functions/html_output.php on line 147


cory88

Recommended Posts

Posted

For some reason, I have this error, and I put the code I originally had because i have adobe dreamweaver to edit it back, but it wont let me go into the admin's edit on the site. Please HelP!!!!!!!!!!!!!!!!

 

<?php

 

/*

 

$Id: html_output.php 1739 2007-12-20 00:52:16Z hpdl $

 

 

 

osCommerce, Open Source E-Commerce Solutions

 

http://www.oscommerce.com

 

 

 

Copyright © 2007 osCommerce

 

 

 

Released under the GNU General Public License

 

*/

 

 

 

////

 

// The HTML href link wrapper function

 

function tep_href_link($page = '', $parameters = '', $connection = 'NONSSL') {

 

if ($page == '') {

 

die('</td></tr></table></td></tr></table><br><br><font color="#ff0000"><b>Error!</b></font><br><br><b>Unable to determine the page link!<br><br>Function used:<br><br>tep_href_link(\'' . $page . '\', \'' . $parameters . '\', \'' . $connection . '\')</b>');

 

}

 

if ($connection == 'NONSSL') {

 

$link = HTTP_SERVER . DIR_WS_ADMIN;

 

} elseif ($connection == 'SSL') {

 

if (ENABLE_SSL == 'true') {

 

$link = HTTPS_SERVER . DIR_WS_ADMIN;

 

} else {

 

$link = HTTP_SERVER . DIR_WS_ADMIN;

 

}

 

} else {

 

die('</td></tr></table></td></tr></table><br><br><font color="#ff0000"><b>Error!</b></font><br><br><b>Unable to determine connection method on a link!<br><br>Known methods: NONSSL SSL<br><br>Function used:<br><br>tep_href_link(\'' . $page . '\', \'' . $parameters . '\', \'' . $connection . '\')</b>');

 

}

 

if ($parameters == '') {

 

$link = $link . $page . '?' . SID;

 

} else {

 

$link = $link . $page . '?' . $parameters . '&' . SID;

 

}

 

 

 

while ( (substr($link, -1) == '&') || (substr($link, -1) == '?') ) $link = substr($link, 0, -1);

 

 

 

return $link;

 

}

 

 

 

function tep_catalog_href_link($page = '', $parameters = '', $connection = 'NONSSL') {

 

if ($connection == 'NONSSL') {

 

$link = HTTP_CATALOG_SERVER . DIR_WS_CATALOG;

 

} elseif ($connection == 'SSL') {

 

if (ENABLE_SSL_CATALOG == 'true') {

 

$link = HTTPS_CATALOG_SERVER . DIR_WS_CATALOG;

 

} else {

 

$link = HTTP_CATALOG_SERVER . DIR_WS_CATALOG;

 

}

 

} else {

 

die('</td></tr></table></td></tr></table><br><br><font color="#ff0000"><b>Error!</b></font><br><br><b>Unable to determine connection method on a link!<br><br>Known methods: NONSSL SSL<br><br>Function used:<br><br>tep_href_link(\'' . $page . '\', \'' . $parameters . '\', \'' . $connection . '\')</b>');

 

}

 

if ($parameters == '') {

 

$link .= $page;

 

} else {

 

$link .= $page . '?' . $parameters;

 

}

 

 

 

while ( (substr($link, -1) == '&') || (substr($link, -1) == '?') ) $link = substr($link, 0, -1);

 

 

 

return $link;

 

}

 

 

 

////

 

// The HTML image wrapper function

 

// if no file exists display the 'no image' file

 

if (!is_file($src)) {

 

$src = "images/no_image.jpg";

 

}

 

// Set default image variable and code

 

$image = '<img src="' . $src . '"';

 

 

 

// Don't calculate if the image is set to a "%" width

 

if (strstr($width,'%') == false || strstr($height,'%') == false) {

 

$dont_calculate = 0;

 

} else {

 

$dont_calculate = 1;

 

}

 

 

 

// Dont calculate if a pixel image is being passed (hope you dont have pixels for sale)

 

if (!strstr($image, 'pixel')) {

 

$dont_calculate = 0;

 

} else {

 

$dont_calculate = 1;

 

}

 

 

 

// Do we calculate the image size?

 

if (CONFIG_CALCULATE_IMAGE_SIZE == "true" && !$dont_calculate) {

 

 

 

// Get the image's information

 

if ($image_size = @getimagesize($src)) {

 

 

 

$ratio = $image_size[1] / $image_size[0];

 

 

 

// Set the width and height to the proper ratio

 

if (!$width && $height) {

 

$ratio = $height / $image_size[1];

 

$width = intval($image_size[0] * $ratio);

 

} elseif ($width && !$height) {

 

$ratio = $width / $image_size[0];

 

$height = intval($image_size[1] * $ratio);

 

} elseif (!$width && !$height) {

 

$width = $image_size[0];

 

$height = $image_size[1];

 

}

 

 

 

// Scale the image if not the original size

 

if ($image_size[0] != $width || $image_size[1] != $height) {

 

$rx = $image_size[0] / $width;

 

$ry = $image_size[1] / $height;

 

 

 

if ($rx < $ry) {

 

$width = intval($height / $ratio);

 

} else {

 

$height = intval($width * $ratio);

 

}

 

 

 

$image = '<img src="product_thumb.php?img=' . $src . '&w=' .

 

tep_output_string($width) . '&h=' . tep_output_string($height) . '"';

 

}

 

 

 

} elseif (IMAGE_REQUIRED == 'false') {

 

return '';

 

}

 

}

 

 

 

// Add remaining image parameters if they exist

 

if ($width) {

 

$image .= ' width="' . tep_output_string($width) . '"';

 

}

 

 

 

if ($height) {

 

$image .= ' height="' . tep_output_string($height) . '"';

 

}

 

 

 

if (tep_not_null($params)) $image .= ' ' . $params;

 

 

 

$image .= ' border="0" alt="' . tep_output_string($alt) . '"';

 

 

 

if (tep_not_null($alt)) {

 

$image .= ' title="' . tep_output_string($alt) . '"';

 

}

 

 

 

$image .= '>';

 

 

 

return $image;

 

}

 

 

 

 

 

////

 

// The HTML form submit button wrapper function

 

// Outputs a button in the selected language

 

function tep_image_submit($image, $alt = '', $parameters = '') {

 

global $language;

 

 

 

$image_submit = '<input type="image" src="' . tep_output_string(DIR_WS_LANGUAGES . $language . '/images/buttons/' . $image) . '" border="0" alt="' . tep_output_string($alt) . '"';

 

 

 

if (tep_not_null($alt)) $image_submit .= ' title=" ' . tep_output_string($alt) . ' "';

 

 

 

if (tep_not_null($parameters)) $image_submit .= ' ' . $parameters;

 

 

 

$image_submit .= '>';

 

 

 

return $image_submit;

 

}

 

 

 

////

 

// Draw a 1 pixel black line

 

function tep_black_line() {

 

return tep_image(DIR_WS_IMAGES . 'pixel_black.gif', '', '100%', '1');

 

}

 

 

 

////

 

// Output a separator either through whitespace, or with an image

 

function tep_draw_separator($image = 'pixel_black.gif', $width = '100%', $height = '1') {

 

return tep_image(DIR_WS_IMAGES . $image, '', $width, $height);

 

}

 

 

 

////

 

// Output a function button in the selected language

 

function tep_image_button($image, $alt = '', $params = '') {

 

global $language;

 

 

 

return tep_image(DIR_WS_LANGUAGES . $language . '/images/buttons/' . $image, $alt, '', '', $params);

 

}

 

 

 

////

 

// javascript to dynamically update the states/provinces list when the country is changed

 

// TABLES: zones

 

function tep_js_zone_list($country, $form, $field) {

 

$countries_query = tep_db_query("select distinct zone_country_id from " . TABLE_ZONES . " order by zone_country_id");

 

$num_country = 1;

 

$output_string = '';

 

while ($countries = tep_db_fetch_array($countries_query)) {

 

if ($num_country == 1) {

 

$output_string .= ' if (' . $country . ' == "' . $countries['zone_country_id'] . '") {' . "\n";

 

} else {

 

$output_string .= ' } else if (' . $country . ' == "' . $countries['zone_country_id'] . '") {' . "\n";

 

}

 

 

 

$states_query = tep_db_query("select zone_name, zone_id from " . TABLE_ZONES . " where zone_country_id = '" . $countries['zone_country_id'] . "' order by zone_name");

 

 

 

$num_state = 1;

 

while ($states = tep_db_fetch_array($states_query)) {

 

if ($num_state == '1') $output_string .= ' ' . $form . '.' . $field . '.options[0] = new Option("' . PLEASE_SELECT . '", "");' . "\n";

 

$output_string .= ' ' . $form . '.' . $field . '.options[' . $num_state . '] = new Option("' . $states['zone_name'] . '", "' . $states['zone_id'] . '");' . "\n";

 

$num_state++;

 

}

 

$num_country++;

 

}

 

$output_string .= ' } else {' . "\n" .

 

' ' . $form . '.' . $field . '.options[0] = new Option("' . TYPE_BELOW . '", "");' . "\n" .

 

' }' . "\n";

 

 

 

return $output_string;

 

}

 

 

 

////

 

// Output a form

 

function tep_draw_form($name, $action, $parameters = '', $method = 'post', $params = '') {

 

$form = '<form name="' . tep_output_string($name) . '" action="';

 

if (tep_not_null($parameters)) {

 

$form .= tep_href_link($action, $parameters);

 

} else {

 

$form .= tep_href_link($action);

 

}

 

$form .= '" method="' . tep_output_string($method) . '"';

 

if (tep_not_null($params)) {

 

$form .= ' ' . $params;

 

}

 

$form .= '>';

 

 

 

return $form;

 

}

 

 

 

////

 

// Output a form input field

 

function tep_draw_input_field($name, $value = '', $parameters = '', $required = false, $type = 'text', $reinsert_value = true) {

 

global $HTTP_GET_VARS, $HTTP_POST_VARS;

 

 

 

$field = '<input type="' . tep_output_string($type) . '" name="' . tep_output_string($name) . '"';

 

 

 

if ( ($reinsert_value == true) && ( (isset($HTTP_GET_VARS[$name]) && is_string($HTTP_GET_VARS[$name])) || (isset($HTTP_POST_VARS[$name]) && is_string($HTTP_POST_VARS[$name])) ) ) {

 

if (isset($HTTP_GET_VARS[$name]) && is_string($HTTP_GET_VARS[$name])) {

 

$value = stripslashes($HTTP_GET_VARS[$name]);

 

} elseif (isset($HTTP_POST_VARS[$name]) && is_string($HTTP_POST_VARS[$name])) {

 

$value = stripslashes($HTTP_POST_VARS[$name]);

 

}

 

}

 

 

 

if (tep_not_null($value)) {

 

$field .= ' value="' . tep_output_string($value) . '"';

 

}

 

 

 

if (tep_not_null($parameters)) $field .= ' ' . $parameters;

 

 

 

$field .= '>';

 

 

 

if ($required == true) $field .= TEXT_FIELD_REQUIRED;

 

 

 

return $field;

 

}

 

 

 

////

 

// Output a form password field

 

function tep_draw_password_field($name, $value = '', $required = false) {

 

$field = tep_draw_input_field($name, $value, 'maxlength="40"', $required, 'password', false);

 

 

 

return $field;

 

}

 

 

 

////

 

// Output a form filefield

 

function tep_draw_file_field($name, $required = false) {

 

$field = tep_draw_input_field($name, '', '', $required, 'file');

 

 

 

return $field;

 

}

 

 

 

////

 

// Output a selection field - alias function for tep_draw_checkbox_field() and tep_draw_radio_field()

 

function tep_draw_selection_field($name, $type, $value = '', $checked = false, $compare = '') {

 

global $HTTP_GET_VARS, $HTTP_POST_VARS;

 

 

 

$selection = '<input type="' . tep_output_string($type) . '" name="' . tep_output_string($name) . '"';

 

 

 

if (tep_not_null($value)) $selection .= ' value="' . tep_output_string($value) . '"';

 

 

 

if ( ($checked == true) || (isset($HTTP_GET_VARS[$name]) && is_string($HTTP_GET_VARS[$name]) && (($HTTP_GET_VARS[$name] == 'on') || (stripslashes($HTTP_GET_VARS[$name]) == $value))) || (isset($HTTP_POST_VARS[$name]) && is_string($HTTP_POST_VARS[$name]) && (($HTTP_POST_VARS[$name] == 'on') || (stripslashes($HTTP_POST_VARS[$name]) == $value))) || (tep_not_null($compare) && ($value == $compare)) ) {

 

$selection .= ' CHECKED';

 

}

 

 

 

$selection .= '>';

 

 

 

return $selection;

 

}

 

 

 

////

 

// Output a form checkbox field

 

function tep_draw_checkbox_field($name, $value = '', $checked = false, $compare = '') {

 

return tep_draw_selection_field($name, 'checkbox', $value, $checked, $compare);

 

}

 

 

 

////

 

// Output a form radio field

 

function tep_draw_radio_field($name, $value = '', $checked = false, $compare = '') {

 

return tep_draw_selection_field($name, 'radio', $value, $checked, $compare);

 

}

 

 

 

////

 

// Output a form textarea field

 

function tep_draw_textarea_field($name, $wrap, $width, $height, $text = '', $parameters = '', $reinsert_value = true) {

 

global $HTTP_GET_VARS, $HTTP_POST_VARS;

 

 

 

$field = '<textarea name="' . tep_output_string($name) . '" wrap="' . tep_output_string($wrap) . '" cols="' . tep_output_string($width) . '" rows="' . tep_output_string($height) . '"';

 

 

 

if (tep_not_null($parameters)) $field .= ' ' . $parameters;

 

 

 

$field .= '>';

 

 

 

if ( ($reinsert_value == true) && ( (isset($HTTP_GET_VARS[$name]) && is_string($HTTP_GET_VARS[$name])) || (isset($HTTP_POST_VARS[$name]) && is_string($HTTP_POST_VARS[$name])) ) ) {

 

if (isset($HTTP_GET_VARS[$name]) && is_string($HTTP_GET_VARS[$name])) {

 

$field .= tep_output_string_protected(stripslashes($HTTP_GET_VARS[$name]));

 

} elseif (isset($HTTP_POST_VARS[$name]) && is_string($HTTP_POST_VARS[$name])) {

 

$field .= tep_output_string_protected(stripslashes($HTTP_POST_VARS[$name]));

 

}

 

} elseif (tep_not_null($text)) {

 

$field .= tep_output_string_protected($text);

 

}

 

 

 

$field .= '</textarea>';

 

 

 

return $field;

 

}

 

 

 

////

 

// Output a form hidden field

 

function tep_draw_hidden_field($name, $value = '', $parameters = '') {

 

global $HTTP_GET_VARS, $HTTP_POST_VARS;

 

 

 

$field = '<input type="hidden" name="' . tep_output_string($name) . '"';

 

 

 

if (tep_not_null($value)) {

 

$field .= ' value="' . tep_output_string($value) . '"';

 

} elseif ( (isset($HTTP_GET_VARS[$name]) && is_string($HTTP_GET_VARS[$name])) || (isset($HTTP_POST_VARS[$name]) && is_string($HTTP_POST_VARS[$name])) ) {

 

if ( (isset($HTTP_GET_VARS[$name]) && is_string($HTTP_GET_VARS[$name])) ) {

 

$field .= ' value="' . tep_output_string(stripslashes($HTTP_GET_VARS[$name])) . '"';

 

} elseif ( (isset($HTTP_POST_VARS[$name]) && is_string($HTTP_POST_VARS[$name])) ) {

 

$field .= ' value="' . tep_output_string(stripslashes($HTTP_POST_VARS[$name])) . '"';

 

}

 

}

 

 

 

if (tep_not_null($parameters)) $field .= ' ' . $parameters;

 

 

 

$field .= '>';

 

 

 

return $field;

 

}

 

 

 

////

 

// Hide form elements

 

function tep_hide_session_id() {

 

$string = '';

 

 

 

if (defined('SID') && tep_not_null(SID)) {

 

$string = tep_draw_hidden_field(tep_session_name(), tep_session_id());

 

}

 

 

 

return $string;

 

}

 

 

 

////

 

// Output a form pull down menu

 

function tep_draw_pull_down_menu($name, $values, $default = '', $parameters = '', $required = false) {

 

global $HTTP_GET_VARS, $HTTP_POST_VARS;

 

 

 

$field = '<select name="' . tep_output_string($name) . '"';

 

 

 

if (tep_not_null($parameters)) $field .= ' ' . $parameters;

 

 

 

$field .= '>';

 

 

 

if (empty($default) && ( (isset($HTTP_GET_VARS[$name]) && is_string($HTTP_GET_VARS[$name])) || (isset($HTTP_POST_VARS[$name]) && is_string($HTTP_POST_VARS[$name])) ) ) {

 

if (isset($HTTP_GET_VARS[$name]) && is_string($HTTP_GET_VARS[$name])) {

 

$default = stripslashes($HTTP_GET_VARS[$name]);

 

} elseif (isset($HTTP_POST_VARS[$name]) && is_string($HTTP_POST_VARS[$name])) {

 

$default = stripslashes($HTTP_POST_VARS[$name]);

 

}

 

}

 

 

 

for ($i=0, $n=sizeof($values); $i<$n; $i++) {

 

$field .= '<option value="' . tep_output_string($values[$i]['id']) . '"';

 

if ($default == $values[$i]['id']) {

 

$field .= ' SELECTED';

 

}

 

 

 

$field .= '>' . tep_output_string($values[$i]['text'], array('"' => '"', '\'' => ''', '<' => '<', '>' => '>')) . '</option>';

 

}

 

$field .= '</select>';

 

 

 

if ($required == true) $field .= TEXT_FIELD_REQUIRED;

 

 

 

return $field;

 

}

 

?>

Posted

BACKUP WHAT YOU HAVE NOW.

 

Change this code:

 

////

// The HTML image wrapper function

// if no file exists display the 'no image' file

 if (!is_file($src)) {
$src = "images/no_image.jpg";
 }

To

 

////

// The HTML image wrapper function
 function tep_image($src, $alt = '', $width = '', $height = '', $parameters = '') {

// if no file exists display the 'no image' file

 if (!is_file($src)) {
$src = "images/no_image.jpg";
 }

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

ok i did that now its giving me this error

 

Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/manateeg/public_html/admin/includes/functions/html_output.php on line 792

Posted

I'm not playing "pin the tail on the donkey".

 

Find out what osC version you have and download a "virgin" copy of the file.

 

Ever hear of making a backup BEFORE you edit anything?

:unsure:

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

yes i made my own copy, and for some reason i'm getting this error. I did what you told me, I just dont understand why i'm getting this error.........

Posted

Obviously this statement isn't altogether true:

 

and I put the code I originally had because i have adobe dreamweaver to edit it back

If it was back the way it was "originally", it would work.

 

I still saying downloading your store's version of the file is the quickest way.

 

Unless you still have some mod's to this file you aren't mentioning.

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Archived

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

×
×
  • Create New...