Html Content Box not diplaying

Hello Everyone,

 

I would like to first say; Boonex is a wicked software with very cool community of developers and newbies alike.

 

 

I need help with my site, we have created pages within modules such as Store, Sites, Blogs and even the Html Content Box for site's Ads Banner Header (for all pages) content is not showing while in edit mode. Our hosting provider has cleared and turned off caching, we have turned off caching within Cloud Flare - (at the end) we even turned off Cloud Flare, cleared caching for all four ; Server, website, Cloud Flare and Browser with no success.

 

The content will display as a user with no problem but when going back to edit the page, everything else will show such as Title, Tags, and pictures thumbnail but not the content it self. I also toggle to see the HTML that should also be displayed but the page seems as if nothing was there. Even creating a new page, after saving and going back into edit mode; same issue, nothing will show.

 

Although we are working with highly adavnce developers and servers admins , It's been four days we're looking into it with no success.

 

We also have a second Boonex platform on an other server and that one has no issue and it is also using the same setting on Cloud Flare.

 

Does anyone have any idea what is going on, I will be very greatful: 

 

Thank you in advance!!!

 

Best Regard,

Steevens P.

Quote · 30 Aug 2017

The problem is in the following header:

X-XSS-Protection: 1; mode=block

It instructs the browser to totally block suspicious code. But different browsers still understand this instruction differently, for example, Chrome - totally removes the content of the textarea, and Safari - just removes all tags and leave a plain text.

This header is sent by your web-server or some intermediate part, like Cloudflare. You need to remove this header to make it work.

Rules → http://www.boonex.com/terms
Quote · 1 Sep 2017

Hello AlexT,

 

Thanks for taking the time to resolve this issue but I had a look with our Hosting Provider and the rules to the htaccess file was written but nothing changed.

 

Can you have a look at this because the issue is still ongoing...?

 

 

Hosting Provider

We would like to inform you that we have disabled the X-XSS-Protection for your domain by deploying the following rule in your .htaccess file:

<IfModule mod_headers.c>
Header set X-XSS-Protection "0; mode=block"
</IfModule>

Could you please test if the issue has been resolved and if it still persists please update us so we could assist you further.

Please, do not hesitate to update us if we can be of any further assistance.





Quote · 2 Sep 2017

Someone please help, it's been a week to this issue we're like six experts and no one got this except Alex T but Alex T we're not sure as we have set this as shown below. Keep in mind we have a duplication of the Boonex Platform on the same server using same domain/sub-domain and both have the same issue. We're looking to get CloudFlare into this also if the is on going over a week and it causing us a huge amount of expense.

htaccess:

<IfModule mod_deflate.c>

    SetOutputFilter DEFLATE

    <IfModule mod_setenvif.c>

        # Netscape 4.x has some problems...

        BrowserMatch ^Mozilla/4 gzip-only-text/html

 

        # Netscape 4.06-4.08 have some more problems

        BrowserMatch ^Mozilla/4\.0[678] no-gzip

 

        # MSIE masquerades as Netscape, but it is fine

        # BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

        # NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48

        # the above regex won't work. You can use the following

        # workaround to get the desired effect:

        BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html

        # Don't compress images

        SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary

    </IfModule>

    <IfModule mod_headers.c>

        # Make sure proxies don't deliver the wrong content

        Header append Vary User-Agent env=!dont-vary

    </IfModule>

</IfModule>

 

and in publicè_html folder


Options -MultiViews -Indexes

 

<IfModule mod_php4.c> 

    php_flag register_globals Off

</IfModule>

<IfModule mod_php5.c> 

    php_flag allow_url_include Off

    php_flag register_globals Off

</IfModule>

<IfModule mod_rewrite.c>

RewriteEngine on

RewriteRule ^blogs/{0,1}$   modules/boonex/blogs/blogs.php [QSA,L]

RewriteRule ^blogs/all/{0,1}$  modules/boonex/blogs/blogs.php?action=all  [QSA,L]

RewriteRule ^blogs/all/([0-9]+)/([0-9]+)/{0,1}$  modules/boonex/blogs/blogs.php?page=$2&per_page=$1  [QSA,L]

RewriteRule ^blogs/top/{0,1}$   modules/boonex/blogs/blogs.php?action=top_blogs [QSA,L]

RewriteRule ^blogs/top/([0-9]+)/([0-9]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=top_blogs&page=$2&per_page=$1 [QSA,L]

RewriteRule ^blogs/top_posts/{0,1}$   modules/boonex/blogs/blogs.php?action=top_posts [QSA,L]

RewriteRule ^blogs/top_posts/([0-9]+)/([0-9]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=top_posts&page=$2&per_page=$1 [QSA,L]

RewriteRule ^blogs/tag/([^/.]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=search_by_tag&tagKey=$1 [QSA,L]

RewriteRule ^blogs/tag/{0,1}$   modules/boonex/blogs/blogs.php?action=search_by_tag&tagKey= [QSA,L]

RewriteRule ^blogs/posts/([^/.]+)/tag/([^/.]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=search_by_tag&tagKey=$2&blogOwnerName=$1 [QSA,L]

RewriteRule ^blogs/posts/([^/.]+)/category/([^/.]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=show_member_blog&blogOwnerName=$1&categoryUri=$2 [QSA,L]

RewriteRule ^blogs/entry/([^/.]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=show_member_post&postUri=$1 [QSA,L]

RewriteRule ^blogs/entry/{0,1}$    modules/boonex/blogs/blogs.php?action=show_member_post&postUri= [QSA,L]

RewriteRule ^blogs/posts/([^/.]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=show_member_blog&blogOwnerName=$1 [QSA,L]

RewriteRule ^blogs/posts/{0,1}$   modules/boonex/blogs/blogs.php?action=show_member_blog&blogOwnerName= [QSA,L]

RewriteRule ^blogs/posts/([^/.]+)/([0-9]+)/([0-9]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=show_member_blog&blogOwnerName=$1&page=$3&per_page=$2 [QSA,L]

RewriteRule ^blogs/posts/([^/.]+)/category/([^/.]+)/([0-9]+)/([0-9]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=show_member_blog&blogOwnerName=$1&categoryUri=$2&page=$4&per_page=$3 [QSA,L]

RewriteRule ^blogs/home/{0,1}$   modules/boonex/blogs/blogs.php?action=home [QSA,L]

RewriteRule ^blogs/all_posts/{0,1}$   modules/boonex/blogs/blogs.php?action=all_posts [QSA,L]

RewriteRule ^blogs/all_posts/([0-9]+)/([0-9]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=all_posts&page=$2&per_page=$1 [QSA,L]

RewriteRule ^blogs/popular_posts/{0,1}$   modules/boonex/blogs/blogs.php?action=popular_posts [QSA,L]

RewriteRule ^blogs/popular_posts/([0-9]+)/([0-9]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=popular_posts&page=$2&per_page=$1 [QSA,L]

RewriteRule ^blogs/featured_posts/{0,1}$   modules/boonex/blogs/blogs.php?action=featured_posts [QSA,L]

RewriteRule ^blogs/tags/{0,1}$   modules/boonex/blogs/blogs.php?action=tags [QSA,L]

RewriteRule ^blogs/show_calendar/{0,1}$   modules/boonex/blogs/blogs.php?action=show_calendar [QSA,L]

RewriteRule ^blogs/my_page/{0,1}$   modules/boonex/blogs/blogs.php?action=my_page&mode=main [QSA,L]

RewriteRule ^blogs/my_page/add/{0,1}$   modules/boonex/blogs/blogs.php?action=my_page&mode=add [QSA,L]

RewriteRule ^blogs/my_page/manage/{0,1}$   modules/boonex/blogs/blogs.php?action=my_page&mode=manage [QSA,L]

RewriteRule ^blogs/my_page/pending/{0,1}$   modules/boonex/blogs/blogs.php?action=my_page&mode=pending [QSA,L]

RewriteRule ^blogs/my_page/edit/([0-9]+)/{0,1}$  modules/boonex/blogs/blogs.php?action=edit_post&EditPostID=$1 [QSA,L]

RewriteRule ^blogs/member_posts/([0-9]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=show_member_blog&ownerID=$1 [QSA,L]

RewriteRule ^blogs/category/([^/.]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=category&uri=$1 [QSA,L]

RewriteRule ^ads/{0,1}$  modules/boonex/ads/classifieds.php?Browse=1 [QSA,L]

RewriteRule ^ads/my_page/{0,1}$  modules/boonex/ads/classifieds.php?action=my_page [QSA,L]

RewriteRule ^ads/my_page/add/{0,1}$  modules/boonex/ads/classifieds.php?action=my_page&mode=add [QSA,L]

RewriteRule ^ads/my_page/edit/([0-9]+)/{0,1}$  modules/boonex/ads/classifieds.php?action=my_page&mode=add&EditPostID=$1 [QSA,L]

RewriteRule ^ads/my_page/edit/([0-9]+)/dimg/([0-9]+)/{0,1}$  modules/boonex/ads/classifieds.php?action=my_page&mode=add&EditPostID=$1&dimg=$2 [QSA,L]

RewriteRule ^ads/my_page/manage/{0,1}$  modules/boonex/ads/classifieds.php?action=my_page&mode=manage [QSA,L]

RewriteRule ^ads/my_page/pending/{0,1}$  modules/boonex/ads/classifieds.php?action=my_page&mode=pending [QSA,L]

RewriteRule ^ads/my_page/expired/{0,1}$  modules/boonex/ads/classifieds.php?action=my_page&mode=expired [QSA,L]

RewriteRule ^ads/my_page/disapproved/{0,1}$  modules/boonex/ads/classifieds.php?action=my_page&mode=disapproved [QSA,L]

RewriteRule ^ads/cat/([^/.]+)/{0,1}$  modules/boonex/ads/classifieds.php?catUri=$1 [QSA,L]

RewriteRule ^ads/all/cat/([0-9]+)/([0-9]+)/([^/.]+)/{0,1}$  modules/boonex/ads/classifieds.php?catUri=$3&page=$2&per_page=$1 [QSA,L]

RewriteRule ^ads/subcat/([^/.]+)/{0,1}$  modules/boonex/ads/classifieds.php?scatUri=$1 [QSA,L]

RewriteRule ^ads/all/subcat/([0-9]+)/([0-9]+)/([^/.]+)/{0,1}$  modules/boonex/ads/classifieds.php?scatUri=$3&page=$2&per_page=$1 [QSA,L]

RewriteRule ^ads/entry/([^/.]+)/{0,1}$  modules/boonex/ads/classifieds.php?entryUri=$1 [QSA,L]

RewriteRule ^ads/tag/([^/.]+)/{0,1}$  modules/boonex/ads/classifieds_tags.php?tag=$1 [QSA,L]

RewriteRule ^ads/calendar/{0,1}$  modules/boonex/ads/classifieds.php?action=show_calendar [QSA,L]

RewriteRule ^ads/categories/{0,1}$  modules/boonex/ads/classifieds.php?action=show_categories [QSA,L]

RewriteRule ^ads/tags/{0,1}$  modules/boonex/ads/classifieds.php?action=tags [QSA,L]

RewriteRule ^ads/all_ads/{0,1}$  modules/boonex/ads/classifieds.php?action=show_all_ads [QSA,L]

RewriteRule ^ads/top_ads/{0,1}$  modules/boonex/ads/classifieds.php?action=show_top_rated [QSA,L]

RewriteRule ^ads/popular_ads/{0,1}$  modules/boonex/ads/classifieds.php?action=show_popular [QSA,L]

RewriteRule ^ads/featured_ads/{0,1}$  modules/boonex/ads/classifieds.php?action=show_featured [QSA,L]

RewriteRule ^ads/member_ads/([0-9]+)/{0,1}$  modules/boonex/ads/classifieds.php?UsersOtherListing=1&IDProfile=$1 [QSA,L]

RewriteRule ^search/tag/([^/.]+)/{0,1}$  search.php?Tags=$1 [QSA,L]

RewriteRule ^browse/([^/.]+)/([^/.]+)/([^/.]+)$ browse.php?sex=$1&age=$2&country=$3 [QSA,L]

RewriteRule ^m/(.*)$  modules/index.php?r=$1 [QSA,L]

RewriteRule ^forum/groups/(.*)$  modules/boonex/forum/$1?orca_integration=groups [QSA,L]

RewriteRule ^forum/events/(.*)$  modules/boonex/forum/$1?orca_integration=events [QSA,L]

RewriteRule ^forum/store/(.*)$  modules/boonex/forum/$1?orca_integration=store [QSA,L]

RewriteRule ^forum/$  modules/boonex/forum/index.php [QSA,L]

RewriteRule ^forum/(.*)$  modules/boonex/forum/$1 [QSA,L]

RewriteRule ^page/(.*)$  viewPage.php?ID=$1 [QSA,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]

RewriteCond %{REQUEST_FILENAME} -d

RewriteRule .+ - [L]

RewriteRule ^([^/]+)$ profile.php?ID=$1 [QSA,L]

 

</IfModule>

AddType application/vnd.adobe.air-application-installer-package+zip .air

AddType application/x-shockwave-flash .swf

<IfModule mod_headers.c> 

  Header set X-XSS-Protection "0; mode=block" 

</IfModule>

# php -- BEGIN cPanel-generated handler, do not edit

# Set the “ea-php56” package as the default “PHP” programming language.

<IfModule mime_module>

  AddType application/x-httpd-ea-php56 .php .php5 .phtml

</IfModule>

# php -- END cPanel-generated handler, do not edit

Quote · 2 Sep 2017

One of the first things you may want to try doing is to install a default version of dolphin and see if the html content box problem is still happening.

Test the install and load it into different computers. This may reveal that it could be related to virus protection software installed on some computers.

Test on different browsers. 

Do the above for a default install.

Failing that, ensure you have the requirements for a dolphin install checked off. You can check via your admin under Tools > Host Tools

Another things is that it's difficult to troubleshoot without actually seeing the install and files. 

Updating my BoonexNerd.net site.
Quote · 2 Sep 2017

The header is still there, moreover, there are duplicate values there in this header now:

I would suggest the following:

1) Check your CloudFlare settings if there are any options related to this (it maybe it'

s better ask their support if they have such setting)

2) If 1) failed, then disable CloudFlare

3) If after 2) the problem still persists - then the problem in is your hosting, ask your hosting, they should do something to remove this header.

Please let us know if 1,2 or 3 helped you or not.

Rules → http://www.boonex.com/terms
Quote · 2 Sep 2017

Hello Everyone,

 

 

Many thanks for your interst, Boonex Community is full of Bad ass developers. This platform is great!

 

The issus was resolve and it was due to CloudFlare, I simply switch off every apps and restarted CloudFlare, cleared caching on all server, site and browser. Everything was back, not sure which application cause this as we another Boonex platform on an other server with CloudFlare is working perfectly.

 

Many thanks to you all and we hope to be one of Boonex's hosting provider. Thanks Alex T, AntonLV, JTadeo!!

 

Best Regards,

Steevens P.

Quote · 2 Sep 2017
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.