Page 14 of 23 FirstFirst ... 41213141516 ... LastLast
Results 131 to 140 of 225
  1. #131
    Join Date
    Apr 2006
    Posts
    413
    Plugin Contributions
    0

    Default Re: HTML tags show after upgrade to 1.3.9g

    kobra, Dr Byte: thanks, got it.

  2. #132
    Join Date
    Jul 2008
    Posts
    16
    Plugin Contributions
    0

    Default Re: HTML tags show after upgrade to 1.3.9g

    I've been through this thread and I can't find the answer to this question.

    I am upgrading my site to version g and when I tried to enter info to my main page define pages, it just shows the html.

    Here is the site link:

    http://www.kanawhaplayers.org/groupieg/

    It doesn't matter if I copy code from dreamweaver or use zen's editor.

    If this problem has been solved and posted, please point me to the post.

    Thanks in advance.

  3. #133
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: HTML tags show after upgrade to 1.3.9g

    Look at this post #52 in this thread:
    http://www.zen-cart.com/forum/showth...839#post941839

    and see if that doesn't resolve the problem ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  4. #134
    Join Date
    Oct 2010
    Posts
    61
    Plugin Contributions
    0

    Default Re: HTML tags show after upgrade to 1.3.9g

    Quote Originally Posted by Ajeh View Post
    The current release v1.3.9g was just released with the added Protection and, unfortunately, is too good ... so there is the need for the "white list" at this time ...

    This will all be addressed in the next release ...


    It takes two seconds to open a blank file and save it as:
    /admin/includes/extra_configures/extra_white_list.php

    You already have the directory:
    /admin/includes/extra_configures/

    You want to make a file called:
    extra_white_list.php

    and load it to the directory:
    /admin/includes/extra_configures/

    and in that file copy and paste the code posted in thread #52 ...

    What this code is doing is excluding certain parts of the code from the extra protection that has been added in v1.3.9g from being applied to certain areas of the Admin so that when you edit the data and enter the HTML code it is not getting this extra protection as it also is protecting you against HTML code that you need to enter in some areas of the Admin ...
    For ma part I have a problem that this extra-white-list.php couldn't resolve.

    For exemple I have a problem with the "Shipping & returns" file, then I created extra_white_list.php in /admin/includes/extra_configures/ and it didn't work.

    Inside i wrote:
    $my_whitelist = array('shippinginfo'); -> didn't work
    I tried with:
    $my_whitelist = array('shippinginfo.php'); -> didn't work
    then tried with:
    $my_whitelist = array('define_shippinginfo.php'); -> didn't work
    tried with:
    $my_whitelist = array('define_shippinginfo'); -> didn't work

    Then I read to do this with xss_whitelist.php instead of extra-white-list.php -> didn't work

    Sorry, may be I missed something?
    Could somebody help me?

  5. #135
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: HTML tags show after upgrade to 1.3.9g

    Create the file as in post #52 ...

    This line:
    Code:
    $my_whitelist  = array('file_contents', 'banners_html_text', 'pages_title', 'message_html');
    Hold the things that are "white listed" so that they work with the issues that are currently being cleaned by the security methods so that they do NOT get cleaned ...

    You cannot just make up things for this white list ... they have to be the proper values and the code has to be written properly for the white list to work ...

    First, try making the exact file listed in post #52 and then try to Edit the Shipping & Returns as you normally would and save it ... see if that doesn't correct the problem ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  6. #136
    Join Date
    Sep 2008
    Location
    Sweden
    Posts
    94
    Plugin Contributions
    4

    Default Re: HTML tags show after upgrade to 1.3.9g

    Quote Originally Posted by Ajeh View Post
    Create the file as in post #52 ...

    This line:
    Code:
    $my_whitelist  = array('file_contents', 'banners_html_text', 'pages_title', 'message_html');
    Hold the things that are "white listed" so that they work with the issues that are currently being cleaned by the security methods so that they do NOT get cleaned ...

    You cannot just make up things for this white list ... they have to be the proper values and the code has to be written properly for the white list to work ...

    First, try making the exact file listed in post #52 and then try to Edit the Shipping & Returns as you normally would and save it ... see if that doesn't correct the problem ...
    I wrote before but have been away for the weekend. And I didn't see that you asked me a question.

    My note was about this also have problem in Install SQL Patching.

    Frank also have that problem and DrByte has notice it.

    So can you update the fix to include the install sql patching?

    (I fix it by upload it in phpmyadmin but it's good for others before the 1.3.9h is ready).

  7. #137
    Join Date
    Oct 2010
    Posts
    61
    Plugin Contributions
    0

    Default Re: HTML tags show after upgrade to 1.3.9g

    Quote Originally Posted by Ajeh View Post
    Create the file as in post #52 ...

    This line:
    Code:
    $my_whitelist  = array('file_contents', 'banners_html_text', 'pages_title', 'message_html');
    Hold the things that are "white listed" so that they work with the issues that are currently being cleaned by the security methods so that they do NOT get cleaned ...

    You cannot just make up things for this white list ... they have to be the proper values and the code has to be written properly for the white list to work ...

    First, try making the exact file listed in post #52 and then try to Edit the Shipping & Returns as you normally would and save it ... see if that doesn't correct the problem ...

    WAAAHOUUU!!!!!!!!!!
    It works! Thank you very much.

  8. #138
    Join Date
    Feb 2010
    Location
    New South Wales, Australia
    Posts
    228
    Plugin Contributions
    0

    Default Re: HTML tags show after upgrade to 1.3.9g

    The newsletters are also showing the HTML tags.
    Will the fix also fix that.

  9. #139
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    81

    Default Re: HTML tags show after upgrade to 1.3.9g

    Yes it will. That was discussed earlier in the thread.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  10. #140
    Join Date
    Aug 2005
    Location
    Vic, Oz
    Posts
    1,905
    Plugin Contributions
    5

    Default Re: HTML tags show after upgrade to 1.3.9g

    Adding 'comments' to the white list for me fixed the problems with order updates showing on the order screen, and the emails that these send :)

 

 
Page 14 of 23 FirstFirst ... 41213141516 ... LastLast

Similar Threads

  1. Replies: 25
    Last Post: 15 May 2010, 06:20 AM
  2. Replies: 11
    Last Post: 23 Nov 2009, 02:57 AM
  3. Replies: 5
    Last Post: 22 Jan 2009, 10:23 AM
  4. Replies: 4
    Last Post: 7 Jul 2008, 12:04 AM
  5. No HTML Editor after 1.3.6 upgrade
    By KADesign in forum Upgrading from 1.3.x to 1.3.9
    Replies: 13
    Last Post: 8 Nov 2006, 04:24 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR