Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

dhooper

Members
  • Posts

    93
  • Joined

  • Last visited

Everything posted by dhooper

  1. I have been a customer for two years now and Multimixer is still answering questions, fixing small errors (from my attempts at learning php and css o:) ), and offering sound advice on projects that I think up. I have never had a problem with the function of the template itself and am so very grateful for the support! :thumbsup:
  2. Never mind... I found where to add the files in sitemap.class Thanks a bunch! :)
  3. Yes, that worked! :) Now, how do I add pages to exclude? It only has a true/false setting. I want to exclude conditions, privacy, password reset, and a few custom ones that I've created.
  4. No, that one is not there and I'd really like that one! :)
  5. I am attempting to add this contribution. When I ran the sql I received this error #1048 - Column 'set_function' cannot be null But, when I go to the admin all the options seem to be there. Do I need to change anything?
  6. I would be so lost without the contributors here!

    1. joli1811

      joli1811

      I get lost with them hahah

  7. This is the addon I am attempting to use: http://addons.oscommerce.com/info/5914 I have version 2.3.3 This is my error message: 1048 - Column 'set_function' cannot be null INSERT INTO configuration values(661,'Your Rescue Query string', 'LINUXUK_HTTP_RESCUE', '123', 'Your personal Rescue string to use for security, it will delete your IP from the Error table and the IP trap table Syntax of http://www.yoursite.com/?rescue=YOUR_TAG You can use anything you like, obviously not any password - something simple.', 490, 1,NULL,now(),NULL,NULL) I've found that the 'set_function' column is the last one. I've tried leaving the entry blank and adding a ' , but those attempts do not work. @@FIMBLE is the creator, but we have a bit of a time zone difference and I can't find a support thread for this. It seems to be a rather common database error, but I don't know how to fix it. Any help will be much appreciated!
  8. @@Jack_mcs I checked the red files (the others had green check marks and the note said that these were unlikely to have been hacked) and the files look good. Once I check the files, do I need to add them to the exclude list or do I simply ignore this list after checking?
  9. I just setup this contribution. When I click "Update" in the configuration control, a pink warning bar appears at the top. It doesn't say any thing. I tried ignoring it and going on to Admin and click the top button (delete reference file) and receive this error: Fatal error: Maximum execution time of 30 seconds exceeded in /home/essent8/public_html/backoffice/includes/functions/sitemonitor_functions.php on line 654 So, I went back and deleted it manually. Then, another pink warning bar appeared that said the sitemonitor_reference file can not be written to. That's because it was deleted, right? I ignored it and went on to the second button with no problems. The third button only listed four files even after five minutes. The last button listed this: Checked 685 directories containing a total of 2984 files. Skipped 2906 files. 384 suspected hacked files found. Lots of template and admin files were listed, along with sitemapProducts.xml Did I do something wrong? Did I not wait long enough for the manual execution? Do I run it again? What do I do with this list of possible hacked files?
  10. Perfect! That did it! Thank you very much! :D
  11. includes/header_tags has this for the information page // information.php case (basename($_SERVER['PHP_SELF']) === FILENAME_INFORMATION): if (! ReadCacheHeaderTags($header_tags_array, basename($_SERVER['PHP_SELF']), '')) { $header_tags_array = tep_header_tag_page(FILENAME_INFORMATION); WriteCacheHeaderTags($header_tags_array, basename($_SERVER['PHP_SELF']), ''); } break; the information page query says // Added for information pages if (!isset($_GET['info_id']) || !tep_not_null($_GET['info_id']) || !is_numeric($_GET['info_id'])) { $title = 'Sorry. Page Not Found.'; $breadcrumb->add($INFO_TITLE, tep_href_link(FILENAME_INFORMATION, 'info_id=' . $_GET['info_id'], 'NONSSL')); } else { $info_id = intval($_GET['info_id']); $information_query = tep_db_query("SELECT information_title, information_image, information_description FROM " . TABLE_INFORMATION . " WHERE visible='1' AND information_id='" . $info_id . "' AND language_id='" . (int)$languages_id ."'"); $information = tep_db_fetch_array($information_query); $title = stripslashes($information['information_title']); $page_description = stripslashes($information['information_description']); the template top is exactly like the directions say
  12. I just double checked... the root box is checked. I'm comparing product_info.php to information.php and I don't see any header tag information on information.php For example, product_info has /*** Begin Header Tags SEO ***/ if (tep_not_null($product_info['products_head_sub_text'])) { echo '<tr><td><table border="0" cellpadding="0"><tr><td class="hts_sub_text"><div>' . $product_info['products_head_sub_text'] . '</div></td></tr></table></td></tr>'; } if (HEADER_TAGS_DISPLAY_CURRENTLY_VIEWING == 'true') { echo '<div style="margin-top:5px;"><div style="text-align:center" class="smallText">' .TEXT_VIEWING . ' '; if (! tep_not_null($header_tags_array['title'])) $header_tags_array['title'] = $product_info['products_name']; echo '<a title="' . $header_tags_array['title'] . '" href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $product_info['products_id'], 'NONSSL') . '"/# ' . $header_tags_array['title'] . '">' . $header_tags_array['title'] . '</a>'; echo '</div></div>'; } /*** End Header Tags SEO ***/ but information only has $title = stripslashes($information['information_title']); would there need to be an additional call to change the title?
  13. @Jack_mcs Of course, I do have my own reason for being here... lol I have information pages. Under Page Control, in Pseudo Pages, I have added the files (example: information.php?info_id=9) and edited the titles (More Information). However, since I also have SEO URLs, the link name changes (more-information-i-9.html), so instead of getting the edited title, I get the Default information (Site name). Is there a way to get the tag to stick with the page? Thanks!
  14. @@Jack_mcs I think what shane h is asking is where to change the category meta tags. I believe this is done where you edit the categories. You do not have to have the index info in the category title/description.
  15. I'm going through and checking all the titles for pages on my site, but there are a few missing (basically, all the account and checkout files). Could you tell me what setting I am missing? I went to admin - header tags seo - page control - but the pages are not listed even after running Missing Pages I have Ultimate SEO Urls as well. I went to admin - configuration - seo urls - enable use Header Tags as name - true
  16. I found the problem! B) I had edited the "information.php" file and renamed the original one "information(original).php" Somehow, my editing software must have updated the header_tags file to reflect the new name instead of staying with the same filename. :D
  17. @@Jack_msc I don't know what I did (I've done quite a bit in the last couple of weeks) but I am now receiving this error when trying to access "Create Account" and "Login" Fatal error: Call to undefined function filename_information() in /home/essent8/public_html/includes/header_tags.php on line 499 Line 499 says if ($defaultTags['meta_noydir']) echo ' <meta name="slurp" content="noydir" >' . "\n"; This is one file I've never touched, so it must be referring to something else I've done.
  18. Yes, I do have a 2.3 shop. Thank you for letting me know! :)
  19. @@Jack_mcs Is information pages compatible with Sitemap SEO? I have Enable InfoPages checked in Settings control. Then, I went to Box Control. Down at Additional Link Control, I selected information.php and added information.php?info_id=10 with a display name of Frequently Asked Questions. But, when I go to the sitemap, I get this error (I had to exclude the box to get rid of the error): Warning: file(/home/essent8/public_html/includes/languages/english/modules/boxes/information.php) [function.file]: failed to open stream: No such file or directory in /home/essent8/public_html/includes/functions/sitemap.php on line 84 If I try using the Box Group Control for information.php or bm_info1.php I get this error: Warning: file(/home/essent8/public_html/includes/modules/boxes/Array) [function.file]: failed to open stream: No such file or directory in /home/essent8/public_html/backoffice/includes/functions/sitemap.php on line 203 Also, I've been through the installation directions three times to make sure I didn't miss any directions or files, but Sitemap SEO does not show up in the Configuration box. I have the Sitemap SEO box with the three control files, but not a Sitemap SEO link to change display settings.
  20. I am currently setting up a store using the Mini Template System. I am a novice with LOTS of questions (new to CSS, new to php, new to jQuery; but I do have a firm grasp of HTML basics and folder structure). The Mini Template System has allowed a novice such as I to have a professional looking shop complete with fly-out menus (I'm still tickled with that one! :D ) and custom colors without making adjustments to the CSS file. There has still been a large learning curve for me, but multimixer has been very helpful by responding to my questions in a timely fashion with thorough instructions for me to follow in order to do what I want (sometimes, even with a sample when I didn't understand! :thumbsup: ). I have also requested a custom job to be done and he preformed the work in the time he stated and was quite reasonable in the price. Altogether, I am quite happy with both the system and the creator. :)
  21. I disabled all of the seo settings and now I can see my pages. The urls do not work, but at least I can see my edits. I'll just have to be sure to double check all of my links when I move it online, but this will work for now. Thanks! :)
  22. Wow, there is a lot of information listed there! Here are the enabled Apache mods (rewrite is near the bottom): core mod_win32 mpm_winnt http_core mod_so mod_access_compat mod_actions mod_alias mod_allowmethods mod_asis mod_auth_basic mod_authn_core mod_authn_file mod_authz_core mod_authz_groupfile mod_authz_host mod_authz_user mod_autoindex mod_cgi mod_dir mod_env mod_include mod_isapi mod_log_config mod_mime mod_negotiation mod_rewrite mod_setenvif mod_php5 Is there another mod that should be enabled? I started to enable them all, but got an error message stating that it wouldn't work with the wamp server. When using the wamp server, I visit my store by pointing the browser to (this takes me to the front/index page): localhost/essential-oils-catalog/ So, in the htacess I have: RewriteBase /essential-oils-catalog/ When I comment out the line you suggested (# Options +FollowSymLinks), I still get 404 errors for categories, products, and information pages.
  23. I've been playing around with various settings and found that a dll file needed to be replaced. I am now able to access some pages and the admin with the htacess in place; however, I am still getting a 404 errors for category, product, and information pages. Frustrating.
  24. I don't know... I had the htaccess file there before the contribution and everything worked fine, but when I added the seo code it quit. What I'm running is wamp installed on my Windows 7 laptop. I just checked... Apache 2.4.2 is being used. Is there a specific module that needs to be on?
  25. I installed this contribution today. It works on my online shop, but I like to edit via a wamp windows server and I keep getting a 500 internal server error. I have figured out that it is the htaccess file causing the problem. When I delete the file, I can access the index page (localhost/essential-oils-catalog/), but none of the product pages. I get a 404 not found page errors with them. I really would like to get this working on the windows server if at all possible. Thank you. Here is my htaccess # $Id$ # # This is used with Apache WebServers # # For this to work, you must include the parameter 'Options' to # the AllowOverride configuration # # Example: # # # AllowOverride Options # # # 'All' with also work. (This configuration is in the # apache/conf/httpd.conf file) # The following makes adjustments to the SSL protocol for Internet # Explorer browsers # # # SetEnvIf User-Agent ".*MSIE.*" \ # nokeepalive ssl-unclean-shutdown \ # downgrade-1.0 force-response-1.0 # # # If Search Engine Friendly URLs do not work, try enabling the # following Apache configuration parameter # AcceptPathInfo On # Fix certain PHP values # (commented out by default to prevent errors occuring on certain # servers) # php_value session.use_trans_sid 0 # php_value register_globals 1 # Begin Ultimate SEO V2.2d Options +FollowSymLinks RewriteEngine On # RewriteBase instructions # Change RewriteBase dependent on how your shop is accessed as below. # http://www.mysite.com = RewriteBase / # http://www.mysite.com/catalog/ = RewriteBase /catalog/ # http://www.mysite.com/catalog/shop/ = RewriteBase /catalog/shop/ # Change the following line using the instructions above RewriteBase /essential-oils-catalog/ RewriteRule ^(.*)-p-(.*).html$ product_info.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-c-(.*).html$ index.php?cPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-m-(.*).html$ index.php?manufacturers_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pi-(.*).html$ popup_image.php?pID=$2&%{QUERY_STRING} RewriteRule ^(.*)-by-(.*).html$ all-products.php?fl=$2&%{QUERY_STRING} RewriteRule ^(.*)-t-(.*).html$ articles.php?tPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-a-(.*).html$ article_info.php?articles_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-au-(.*).html$ articles.php?authors_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pr-(.*).html$ product_reviews.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pri-(.*).html$ product_reviews_info.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-f-(.*).html$ faqdesk_info.php?faqdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-fc-(.*).html$ faqdesk_index.php?faqPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-fri-(.*).html$ faqdesk_reviews_info.php?faqdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-fra-(.*).html$ faqdesk_reviews_article.php?faqdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-i-(.*).html$ information.php?info_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-links-(.*).html$ links.php?lPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-pm-([0-9]+).html$ info_pages.php?pages_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-n-(.*).html$ newsdesk_info.php?newsdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-nc-(.*).html$ newsdesk_index.php?newsPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-nri-(.*).html$ newsdesk_reviews_info.php?newsdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-nra-(.*).html$ newsdesk_reviews_article.php?newsdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-po-([0-9]+).html$ pollbooth.php?pollid=$2&%{QUERY_STRING} # End Ultimate SEO V2.2d
×
×
  • Create New...