Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Follkes

Pioneers
  • Posts

    114
  • Joined

  • Last visited

Posts posted by Follkes

  1. Robert, when upgrading to Security Pro 2.0 ( r7 )

     

    When:

     

    Remove the database settings

     

    3) Run the below code using phpMyAdmin or your favoured method.

    DELETE FROM configuration WHERE configuration_key = 'FWR_SECURITY_PRO_ON';

    DELETE FROM configuration_GROUP WHERE configuration_group_title = 'FWR Security Pro';

    DELETE FROM configuration WHERE configuration_key = 'FWR_SECURITY_PRO_FILE_EXCLUSIONS_ON';

    DELETE FROM configuration WHERE configuration_key = 'FWR_SECURITY_PRO_FILE_EXCLUSIONS';

     

    I get

     

    DELETE FROM configuration_GROUP WHERE configuration_group_title = 'FWR Security Pro';

     

    MySQL

    #1146 - Table 'xxxxxxxx.configuration_GROUP' doesn't exist

     

    How should I proceed? Thank you

  2. Yes, I see that here too. There seems to be something overriding the default align left attribute. I tried making some basic changes, even edited the css class for admin, but it didn't help so I don't have an answer right now. I'll put this in the list of things to look at for the next version.

     

     

    Yep, upgraded to 5.2.5 and now I see canonical tag in main correctly.

     

    GREAT CONTRIBUTION!

  3. Hi Jack

     

    Thanks for such an easy to install add-on.

    My admin folder is renamed and under htaccess but in the sitemonitor options I left blank the fields Admin Directory:, Admin Username:, and Admin Password: because to tell you the truth I don't know what curl is...will still sitemonitor check my admin space?

     

    Thank you!

  4. Hi

     

    I can modify the configure to show only 1 / the canonical tag in index, but then all the categories urls are messed up (without it ), i copy the first part of my configure.

     

      define('HTTP_SERVER', 'http://www.hmsistemas.es');
     define('HTTPS_SERVER', 'http://www.hmsistemas.es');
     define('ENABLE_SSL', false);
     define('HTTP_COOKIE_DOMAIN', 'www.hmsistemas.es');
     define('HTTPS_COOKIE_DOMAIN', 'www.hmsistemas.es');
     define('HTTP_COOKIE_PATH', '/shop/catalog/');
     define('HTTPS_COOKIE_PATH', '/shop/catalog/');
     define('DIR_WS_HTTP_CATALOG', '/shop/catalog/');
     define('DIR_WS_HTTPS_CATALOG', '/shop/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/');
    
     define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
     define('DIR_FS_CATALOG', '/web/htdocs/www.hmsistemas.es/home/shop/catalog/');
     define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
     define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

     

    In case I copy&pasted an extra "/" somewhere any clue where to start to check?

     

    Thanks

  5. Then you've made a mistake in the installation and/or update.

     

    I will put an eye on that, in the meantime I disabled the cache and now all categories are showing a proper canoninal like <link rel="canonical" href="http://www.hmsistemas.es/shop/catalog/inversorescargadores-c-23.html" >

     

    The BUT is that in the index is still showing that double slash <link rel="canonical" href="http://www.hmsistemas.es/shop/catalog//" > and i think it was already seen in this thread of 237 pages....so could yo help me Jack?

     

    You can check it at http://www.hmsistemas.es/shop/catalog/index.php or try hmsistemas.es at google you will see the link with the //.

     

     

     

    Dali45 I have this contribution working 100% with Security Pro & Sam's Anti-hacker account mods, I don not know the first 1 ,sorry.

  6. This is odd, I updated to 3.2.3 and I still have "catalog//" in the index and the canonical seems to be in the categories the same "catalog//". First were a few wrong, with the time all went "//".

     

    If I clear de Tags SEO cache is ok until i return to the same category.

     

    Products and manufacturers are allways fine.

  7. The thing is that in my categories.php I have "hard"

     

    $category_htc_description_string .= '<br>' . tep_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']) . ' ' . tep_draw_textarea_field('categories_htc_description[' . $languages[$i]['id'] . ']', 'hard', 30, 5, tep_get_category_htc_description($cInfo->categories_id, $languages[$i]['id']));

     

     

    and in your instructions you say there sould be a "soft"

     

    FIND (around line 1126):

     

    $category_htc_description_string .= '<br>' . tep_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']) . ' ' . tep_draw_textarea_field('categories_htc_description[' . $languages[$i]['id'] . ']', 'soft', 30, 5, tep_get_category_htc_description($cInfo->categories_id, $languages[$i]['id']));

  8. Hello all

     

    When searching in categories.php this piece of code

     

    $category_htc_description_string .= '<br>' . tep_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']) . ' ' . tep_draw_textarea_field('categories_htc_description[' . $languages[$i]['id'] . ']', 'hard', 30, 5, tep_get_category_htc_description($cInfo->categories_id, $languages[$i]['id']));

     

    can not find it because my version has hard instead of soft (twice). I don´t know how would affect neither keeping my soft or the new hard.

     

    Any ideas?

     

    Thanks

  9. Hi Jack

     

    I am doing some rehearsals with wamp to update to last version of this incredible contribution.

     

    When trying to replace a piece of code in admin/categories.php

     

    FIND (around line 386):
    
    <?php // START tinyMCE Anywhere
    if (HEADER_TAGS_ENABLE_TINYMCE_META_DESC == 'true' || HEADER_TAGS_ENABLE_TINYMCE_CATEGORIES == 'true' || HEADER_TAGS_ENABLE_TINYMCE_PRODUCTS == 'true')
    {
    if ($action == 'new_product' || $action == 'new_category' || $action == 'edit_category') { // No need to put JS on all pages.
     $languages = tep_get_languages(); // Get all languages
    // Build list of textareas to convert

    ..........ETC ETC

     

    I can not find this code in my categories.php . I do not have any editor in the shop and the one that comes with OSC is erased due to security concerns.

     

    How i should proceed?

     

    Thank you.

  10. Hello Jack

     

    I am using 3.2.1 and trying the canonical tag. Now is ON and when checking code in a manufacturer page inside the shop I get www.site.es/shop/catalog// , all products and even categories are showing canonical correctly.

     

    Any ideas about this?

     

    Regards

  11. Perhaps you have your server set up oddly, of course windows is not the best type of server to use.

     

    You need to use the tep_to_hex function, the e-mail stuff is just for convenience. The sanitise is working as u have left that part in.

     

    Upload your files to a real server (linux) I bet you will find it all fine, or install linux onto your PC, the basic is a lot more strait forward than windows & it will install alongside your existing. I recomend Fedora 12.

     

    There are quite a number of areas within osC(add-ons) that wont work under windows most times.

     

    Indeed.

    I uploaded the wamp version to my linux server online, a kind of a shadow shop and once I modified the configure file i saw login.php without problem. There is the thin to adapt to spanish the languages files you provided.

     

    PD. I also use Opensuse 11.2 but no with lamp or similar...another think to do...

     

    Regards

  12. As far as i can see that piece of code in index.php triggers that firefox error, I am using all your files in the contribution.

     

    With this:

    // anti-hacker account
     require('includes/functions/account_secure.php');
    $password = tep_to_hex($_POST['password']);
     unset($_POST['password']);
    if (!isset($_POST['email_address'])) { 
    	$_POST['email_address'] = $_GET['email_address']; unset($_GET['email_address']);
    }
    $email_address = '';
    clean_post ();
    // EOF anti-hacker account

    I still get the error. No index.php is shown

     

     

    But with this

    // anti-hacker account
     require('includes/functions/account_secure.php');
    //$password = tep_to_hex($_POST['password']);
     //unset($_POST['password']);
    //if (!isset($_POST['email_address'])) { 
    	//$_POST['email_address'] = $_GET['email_address']; unset($_GET['email_address']);
    //}
    //$email_address = '';
    clean_post ();
    // EOF anti-hacker account

     

    Shows login.php, i can try [w](o)%3Cr%3Ek|i*n^g an i get "working"...... :huh:

×
×
  • Create New...