Search found 695 matches

by wiz
Sun Oct 29, 2017 1:02 am
Forum: 2.x.x support
Topic: [SOLVED] Bad code in editable area - Problems after last update
Replies: 12
Views: 16472

Re: Bad code in editable area - Problems after last update

Thank you for your feedback. An easy trick for loading jQuery, Boostrap.css and Bootstrap.js is attached below. 1. Upload css/js folder into your theme. (Make sure you don't overwrite your style.css with the default one that's in the ZIP, inside the css folder.) 2. In the theme.php I changed <link r...
by wiz
Sat Oct 28, 2017 2:53 pm
Forum: 2.x.x support
Topic: [SOLVED] Bad code in editable area - Problems after last update
Replies: 12
Views: 16472

Re: Bad code in editable area - Problems after last update

Thanks for sharing! You mentioned in your post that now it seems to work without issues? This could of been an unclosed html tag in the editable area or something similar in your theme.php beforehand. If I misunderstood your post and you're still having issues, can you make a ZIP of your whole Wonde...
by wiz
Thu Oct 26, 2017 10:45 am
Forum: 2.x.x support
Topic: [SOLVED] Bad code in editable area - Problems after last update
Replies: 12
Views: 16472

Re: Bad code in editable area - Problems after last update

Can't wait for the train wreck! :D
by wiz
Thu Oct 26, 2017 12:00 am
Forum: 2.x.x support
Topic: [SOLVED] Bad code in editable area - Problems after last update
Replies: 12
Views: 16472

Re: Bad code in editable area - Problems after last update

For further reference, below is a list of changes from 2.3.1 to 2.3.2: - Additional ISSET checks to prevent PHP notices (errors). - Prettified code. - Header HTTP 1.0 to 1.1. - Updated theme and plugin links. - Minor text changes. - Removing forced converted case for page titles. I am going through ...
by wiz
Wed Oct 25, 2017 11:50 pm
Forum: 2.x.x support
Topic: [SOLVED] Bad code in editable area - Problems after last update
Replies: 12
Views: 16472

Re: Bad code in editable area - Problems after last update

Can you give me an example of code you are trying to paste? I am unable to replicate the issue with my samples of code.

Please put it in [ code ] [/ code ] tags.

EDIT: Additional question:
1. Is there anything in your server error logs?
by wiz
Wed Oct 25, 2017 6:43 pm
Forum: 2.x.x support
Topic: [SOLVED] Bad code in editable area - Problems after last update
Replies: 12
Views: 16472

Re: Bad code in editable area - Problems after last update

I've tested WonderCMS 2.3.2 with your theme.php (a bit modified), without any issues. <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title><?=wCMS::get('config','siteTitle')?> - <?=wCMS::page('title')?></title> <?php header("Vary: User-Agent, Accept"); ...
by wiz
Tue Oct 24, 2017 3:17 pm
Forum: 2.x.x support
Topic: [SOLUTION POSTED // unconfirmed] Installation problem
Replies: 12
Views: 16935

Re: Installation problem

Hi DesCod, for WonderCMS to work on NGINX, please see the following link: https://github.com/robiso/wondercms/wik ... ver-config - editing of your nginx.conf will be required, along with a server restart.
by wiz
Tue Oct 24, 2017 11:06 am
Forum: 2.x.x support
Topic: [SOLVED] Bad code in editable area - Problems after last update
Replies: 12
Views: 16472

Re: Bad code in editable area - Problems after last update

1. What was your version prior to the update? This usually happens when you have incorrectly nested or improperly closed <html> tags, it duplicates some of your content. Create a backup and try to simply remove the extra code, but this may not work as you will have to solve the improperly closed htm...
by wiz
Fri Oct 20, 2017 7:58 pm
Forum: 2.x.x support
Topic: [SOLUTION POSTED // unconfirmed] Installation problem
Replies: 12
Views: 16935

Re: Installation problem

Now https://wonder.bitstyl.ru/loginURL seems to work, but it's not perfect yet.

Code: Select all

location / {
	if (!-e $request_filename) {
		rewrite ^/(.+)$ https://wonder.bitstyl.ru/index.php?page=$1 last;
	}
}
I don't have a live NGINX server, so I can't test the above. It might take some trial and error.
by wiz
Thu Oct 19, 2017 9:42 pm
Forum: 2.x.x support
Topic: [SOLUTION POSTED // unconfirmed] Installation problem
Replies: 12
Views: 16935

Re: Installation problem

I'm not sure why it doesn't work as I don't have an NGINX server to test with. You can try with: location / { if (!-e $request_filename) { rewrite ^/(.+)$ https://bitstyl.ru/wonder/index.php?page=$1 last; } } And we can check if it works at: https://bitstyl.ru/wonder/ I have read some posts that the...