Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

shadow007

Pioneers
  • Posts

    191
  • Joined

  • Last visited

About shadow007

  • Birthday 12/22/1982

Profile Information

  • Real Name
    Tank Wang
  • Gender
    Male
  • Location
    Suzhou, China

shadow007's Achievements

  1. Hi Jack, For pages like about_us.php, what's your suggestion for these checkbox? -- Stephen
  2. I checked the database, all tags are stored right there. -- Stephen
  3. I can't update tags for several pages, it always display the default tags instead of the tags I specific. and the file permission of /includes/header_tags is ok, as it is updated once I update tags for pages. any suggestions? -- Stephen
  4. Jack, thanks. I fixed it and it was because that I replaced the default "tep_image_submit" with another modified function.
  5. Hi Jack, I have transfered the site from one server to another, and other osc sites work well. Could you tell me something about the POST variable named "x", where it comes from? and how it works. I know the key points of this issue if this variable. Most appreciated. Stephen
  6. Thanks, Jack. Here is the result: Array ( [action] => update [new_files] => index.php [title_35_1] => Title For Index [desc_35_1] => Description For Index [keyword_35_1] => Keywords For Index [keyword_live_35_1] => on [keyword_live] => clicked [keyword_live_status_35_1] => checked [logo_35_1] => [logo_extra_text] => clicked [logo_extra_status_35_1] => [option_6_35_1] => on [sortoption_6_35_1] => 10 [option_7_35_1] => on [sortoption_7_35_1] => 1 [title_viewed] => [desc_viewed] => [keyword_viewed] => ) I selected index.php and enter some texts for Title, Keywords and Description, and click Update directly.
  7. Hi, I have re-installed it for several times, but still can't update the meta tags for index.php. I run the Test function, and there aren't any errors, just say I miss tags for index.php. I did some debug in the header_tags_seo.php, and find it stop here, about line 93: if (isset($_POST['action']) && $_POST['action'] == 'update') { if (isset($_POST['x'])) when I echo $_POST['x'], it just display nothing, so it won't update the database... Why the 'x' lost? I installed the lastest version. any help will be appreciated, I have tried it for lots for hours...
  8. I can't update tags for any pages in header_tags_seo.php, I check the header_tags_seo.php, it seems that the script stop here: if(isset($_POST['x'])) { ... I print the $_POST['x'], it returns null... I was studying this issue for hours, no lucky..
  9. Thanks, jack I know I can modify .htaccess to redirect these xx.php, but I want the seo.class.php can support more php pages, and more php pages can be re-named to xx.html by tep_href_link() function. Any suggestions? Tank
  10. Could somebody give me some code suggestion that make this contribution support more pages? I want to create static html url for pages like index.php to index.html, a.php to a.html, b.php to b.html. anyone can help? I know I must modify the seo.class.php and .htaccess file.
  11. I got an error when submit a label under Test Mode: ERROR: FedEx Return Error F834 : Shipper company name cannot exceed 35 characters Test Server: define('FEDEX_URI', 'https://gatewaybeta.fedex.com:443/GatewayDC', true); define('FEDEX_HOST', 'gatewaybeta.fedex.com/GatewayDC', true); Can anyone help me?
  12. You need to modify two files, includes/column_left.php and includes/column_right.php Backup at first! In includes/column_right.php,about line 13,find codes below: require(DIR_WS_BOXES . 'shopping_cart.php'); And move it to the includes/column_left.php, put it in any blank line between line 12 and line 28.
  13. something miss in the configure.php above: define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/home/tina/public_html/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
  14. configure.php: define('HTTP_SERVER', 'http://tina.bodait.com'); // eg, [url="http://localhost"]http://localhost[/url] - should not be empty for productive servers define('HTTPS_SERVER', ''); // eg, [url="https://localhost"]https://localhost[/url] - should not be empty for productive servers define('ENABLE_SSL', false); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'tina.bodait.com'); define('HTTPS_COOKIE_DOMAIN', ''); 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/'); .htaccess: <IfModule mod_setenvif.c> <IfDefine SSL> SetEnvIf User-Agent ".*MSIE.*" \ nokeepalive ssl-unclean-shutdown \ downgrade-1.0 force-response-1.0 </IfDefine> </IfModule> #-MS- SEO-G Added Options +FollowSymLinks RewriteEngine On # Next line must be changed to match your osCommerce folder - the relative path RewriteBase / RewriteRule ^(.*).html$ root.php?$1.html&%{QUERY_STRING} [R=301,L] #-MS- SEO-G Added EOM
×
×
  • Create New...