Re: HTML tags show after upgrade to 1.3.9g
Quote:
Originally Posted by
Ajeh
Try using for the extra_white_list.php file:
/admin/includes/extra_configures/extra_white_list.php
and put into that file the code:
Code:
<?php
$global_xss_whitelist = isset($global_xss_whitelist) ? $global_xss_whitelist : array();
$my_whitelist = array('file_contents', 'banners_html_text', 'pages_title', 'message_html', 'manufacturers_name', 'symbol_left', 'symbol_right');
$global_xss_whitelist = array_merge($my_whitelist, $global_xss_whitelist);
and then try to edit the
Define Page or
Banner HTML or
EZPage Title or
Send Email once more and save it to see if this displays correctly ...
NOTE: the file
/admin/includes/extra_configures/extra_white_list.php
is a file that you create for this code ...
NOTE: Updated for
Manufactuers Name,
Currencies Left Symbol and
Currencies Right Symbols
did not recover my euro or gbp symbol. just so you know. :)
Re: HTML tags show after upgrade to 1.3.9g
Did you go back and edit the currencies and put back the proper settings and save them? :unsure:
Re: HTML tags show after upgrade to 1.3.9g
The extra_white page you said in post #52 doesnt exist on my server, when i go to edit the main page it shows html, here is the link (http://www.epsonto711.com/shop/) any help would be appreciated
Re: HTML tags show after upgrade to 1.3.9g
You have to make a file called:
/includes/extra_configures/extra_white_list.php
Paste into that file the code posted in post #52 ...
Load that file to your server ...
Now edit the things that are broken and save them ...
NOTE: on occaision you may need to clean up the content before saving, but usually just saving the information again will fix it ...
Re: HTML tags show after upgrade to 1.3.9g
Quote:
Originally Posted by
Ajeh
You have to make a file called:
/includes/extra_configures/extra_white_list.php
Paste into that file the code posted in post #52 ...
Load that file to your server ...
Now edit the things that are broken and save them ...
NOTE: on occasion you may need to clean up the content before saving, but usually just saving the information again will fix it ...
I found out what I did wrong after all that with the currencies, it was more of a not enough sleep type of misunderstanding (missing info in instructions and not enough will power to think it through)
You must go to admin>Localization>Currencies
Edit the currency you are having the problem with. Change Euro which should appear now as"&euro;" to just "€" without quotes of course .:oops:
Re: HTML tags show after upgrade to 1.3.9g
Quote:
Originally Posted by
Ajeh
You have to make a file called:
/includes/extra_configures/extra_white_list.php
Paste into that file the code posted in post #52 ...
Load that file to your server ...
Now edit the things that are broken and save them ...
NOTE: on occaision you may need to clean up the content before saving, but usually just saving the information again will fix it ...
Hi thanks for the quick response, i am a bit of a noob when it comes to thsi, i created a new php file in dreamweaver and entered the code as you have posted in #52, saved the file and uploaded it into , includes/extra_configures/file name.php (being extra_white of course), then gone to the define pages editor and entered my text in the main page, clicked save and it still shows the html, have i done something wrong? please do speak to me as if im stupid also btw, as im really lost with this.
Re: HTML tags show after upgrade to 1.3.9g
Quote:
Originally Posted by ashjones86
created a new php file in dreamweaver and entered the code as you have posted in #52, saved the file and uploaded it
NEVER use dreamweaver to create or edit a php file
Use a PLAIN text editor like notepad, or a code editor
Some Free ones
ConText
Crimson editor
Notepad++
Upload with a good FTP client
Re: HTML tags show after upgrade to 1.3.9g
:smile:
Brilliant - how come this is missing from the upgrade to 1.3.9g?
Re: HTML tags show after upgrade to 1.3.9g
Quote:
Originally Posted by
brianinhungerford
:smile:
Brilliant - how come this is missing from the upgrade to 1.3.9g?
It will be updated in 1.3.9h version to come.
Re: HTML tags show after upgrade to 1.3.9g
Quote:
Originally Posted by
kobra
NEVER use dreamweaver to create or edit a php file
Why? What's wrong with Dreamweaver?