Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

spooks

Pioneers
  • Posts

    6,946
  • Joined

  • Last visited

  • Days Won

    18

Everything posted by spooks

  1. I Have'nt installed this yet either , but as you say I can see advantage of being able to set the password, if you need I`ll provide help in modifying this for that. B)
  2. Hi, nice contrib I`m getting an error if the file contains variables its not processed correctly ie if I have define('TEXT_SUCCESS', 'Your enquiry has been successfully sent to ' . STORE_NAME); define('ENTRY_NAME', 'Full Name:'); the STORE_NAME); is not seen as end of line, and it includes the define('ENTRY_NAME', 'Full Name:'); as part of previous define :)
  3. The error is in your sql query, you have included a variable that's an array, you need to find that to fix. Unless you can provide the code where the query is being made I can`t help further. ;)
  4. It does'nt just do product description, it can work anywhere you choose, I use it for admin emails, Newsletters, NewsDesk Articals, reviews & Create / Edit Pages, it can be used anywhere you want to input html content. :D
  5. Ok I think the problem is the module you`ve installed is causing the block, you`re vague, but I assume your talking about Administration Access Level Accounts 2.0, looking at the lates, which appears to be 2.2a it keeps a database of modules to allow or deny access, so you need to add total_configuration.php to the database, try applying this sql INSERT INTO admin_files VALUES (43, 'total_configuration.php', 1, 0, '1'); Then that modification you made to tools should work. Let me know how you get on. :)
  6. The only reason is in the tools is for conveniance, but all its doing is providing a link to the page you could put it anywhere ( I put one in the haeder for convenience. Try typing the url in your browser to see if you have an error with your install. in address window type www.mystore.com/catalog/admin/total_configuration.php :)
  7. Are you sure you followed it all? The install adds a new function to html_output.php called tep_draw_fckeditor then where ever you want to use the editor, you call that function, the install gives examples for categories.php and mail.php but the rule is simply where you have the call tep_draw_textarea_field you replace with tep_draw_fckeditor remebering to change the parameters sent to suit those are tep_draw_fckeditor ( forms_referance_id, width_of_window, height_of_window, existing_file_for_edit ) Hope that makes things clearer. B)
  8. What contribution?? Whatever it is its best to ask on that forum, as your problem is due to modified code it would be difficult to answerotherwise :rolleyes:
  9. I would advise upgrading to 2.6, as 2.5 does have bugs. I`m not sure what you have done to create this error as that call should not appear anywhere within your files, the only calls to fck should be in /html_output.php and they are: function tep_draw_fckeditor($name, $width, $height, $text) { $oFCKeditor = new FCKeditor($name); $oFCKeditor -> Width = $width; $oFCKeditor -> Height = $height; $oFCKeditor -> BasePath = 'fckeditor/'; $oFCKeditor -> Value = $text; $field = $oFCKeditor->Create($name); return $field; } As you see, your call is`nt there!!! :huh:
  10. What you want is Quantity for Product Attributes http://addons.oscommerce.com/info/3302 I have achieved almost exactly the same as what your after with this, though I have had to modify things & fix a number of bugs. B)
  11. Oh look, they're all php, I think google is prefering php pages over html as php are generally dynamic, whereas html mostly are'nt, and google likes page that provide users changing content. :)
  12. Hi, sorry, there`s a missing instruction, I`ll update the contrib when I get time, for now in advanced_search_result.php after the $select_str = "select distinct cd.categories_name, cd.categories_id"; add: $from_str = " from " . TABLE_CATEGORIES_DESCRIPTION . " cd left join " . TABLE_CATEGORIES . " c on cd.categories_id "; there`s also a couple of entries in the advanced_search language file missing from the instructions (Its is all there in the included files). At the end before the final ?> add: define('TEXT_SEARCH_CATEGORIES_ONLY', 'Search Categories Only'); define('HEADING_TITLE_3', 'Categories meeting the search criteria'); Cheers :blush:
  13. I see google has listed 134 pages from your site, all of which are php. I havent done the Ultimate SEO URLs and I`m not sure what`s the idea of converting the php extension to html, but on other sites where I have converted from html to php I have seen a clear improvment in ranking. So perhaps you`re right, you`ve taken a step too far. Of couse google keeps changing its rules, and often says one thing but does another. :o
  14. I though I`d start this new topic for this contribution as there does'nt appear to be one. This editor can be used to replace any input box and allows many functions normally only seen on commercial packages. It can be easily configured to take the site css files, plus you can add extra fonts, sizes etc. If you need its possible to change a editor instance background colour/image/styles post load. Contribution is at http://addons.oscommerce.com/info/2900.
  15. I Don't know tinymce, but I do have FCK which I`ve had no real problems with, plus its an easy install, find it at: http://addons.oscommerce.com/info/2900 If you do try it, I have a dead simple mod to increase fonts + font sizes. Cheers :)
  16. I did a 2.2 install with v1_1_2 by naresh (17 Dec 07) had no problems, did`nt do any other mods, apart from my re-styling. Cheers B)
  17. Hi Dave, If your from UK, I`ve done a simpler package at http://addons.oscommerce.com/info/5889 that might do for you. :thumbsup:
  18. Nice contribution obviously a massive amount of work, weel done. I did have trouble with the setup file which I got round, it would be nice though if the package included the sql, so you have the option. I have the following issues. If the link submitted has no image either a blank box is displayed, or missing image error, it would be better to display nothing instead. ie in /catalog/includes/boxes/links.php line 31, instead of: 'text' => '<a href="' . $link['links_url'] . '" target="_' . $openMode . '"><img src="' . $link['links_image_url'] . '"</a><br>' . $link['links_title']); it would be better to have: 'text' => '<a href="' . $link['links_url'] . '" target="_' . $openMode . '">' . (!empty($link['links_image_url']) ? '<img src="' . $link['links_image_url'] . '" width="60" border="0" ><br>' : '') . $link['links_title'] . '</a>'); In admin when the link is edited you are given an error if you don`t provide a reciprocal, as admin you should`nt have to, also there is a bug here, with no reciprocal your given error, plus told did`nt give category even if you did, and returned to insert link mode not update. The link to 'links' is via the infobox, but no instruction provided if site has no infobox . Cheers ;)
  19. Jist installing this but have a problem as the setup fails due to site restrictions. Does anyone have a copy of the sql for manual insertion. Cheers :huh:
  20. As far as I can see text-master is for editing the language files on your site, this is not same. I`m talking about full html pages (including pictures & other media) that can be included in the root, even if you do`nt have a root based site. :huh:
  21. I`m working on new pages for admin to enable a client to edit pages on thier site themselves, ie home page, about etc etc. If anyone would be interested in a contribution of this please let me know, also what features you would think be useful. Cheers B)
  22. There is an east solution to this that everyone seems to miss: At the very start of header.php add: <div id="content"> then at the very bottom of footer.php add: </div> the add to your css: #content { width: 900; margin: auto; border: 1px solid #999999; } To center add to the content css: text-align:center; Hope that helps :thumbsup:
  23. Hi, thats as I thought, clearly the newletter function has the same fault as did the mail function before I fixed it in the contribution, as we havent done any newsletters yet I hav`nt looked at that. When I get time I`ll take a look and let you know the fix. Cheers B)
  24. Have you followed the instal and done the change it mentiones: if using FCK or extra line feeds are a problem, change 'false' below to 'true' :huh:
  25. It depends what page your coming from, so I`m guessing, but this might do it: if ( (isset($HTTP_GET_VARS['products_id'])) && ($HTTP_GET_VARS['manufacturers_id'] == '6' || $HTTP_GET_VARS['filter_id'] == '6' ) ){ include(DIR_WS_BOXES . 'Guarantee_seal.php');} :-"
×
×
  • Create New...