GetSimple Support Forum

Full Version: GetSimple 3.1 RC #2
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
... has been posted. Download and test

Things that got fixed in this release:
  • caching now updates after ftp change of files
  • i18n characters now parsed properly in header file
  • ids were added to all subnav list items. This is for plugins to show/hide them easy via JS
  • Blackslashes are not stripped from theme-edit.php
  • email problem fixed where some emails were being sent as raw plaintext instead of html

Things that still need attention before we release 3.1:
  • stripping of control characters from content to prevent xml corruption. issue
  • fix the national character encoding problems. issue #1, issue #2
Anyone that wants to help & submit patches for the two outstanding issues above can either post them here or in their respective issue's on Google Code. I would really appreciate the help.

Make sure that everything still works for backwards compatibility when submitting a patch. People will upgrade their 2.x/3.0 installs with 3.1 and we need to be sure that what we change wont break anything.
Chris,

I noticed that I have one question all the time long, but forgot to ask:

is the upgrade procedure the same as before, as described in the wiki:
http://get-simple.info/wiki/installation:upgrade?s[]=update

or do we have to take care of some new points?
I must admit, until now I always did a new install not an update with the Beta-Releases
it's going to be exactly the same... thanks for checking though.
Hello,

In the page plugin, I have the error :
Code:
Notice: Undefined variable: updatelink in /mnt/.../gs/admin/plugins.php on line 69
$updatelink is not declare if $api_data->status is not successful !
I run into a hard problem:

I did a fresh install:
GetSimple: 3.1.Br625
PHP Version 5.2.6-1+lenny10 - OK
cURL Module installiert - OK
GD Library installiert - OK
ZipArchive installiert - OK
SimpleXML Module installiert - OK
Apache Mod Rewrite installiert - OK

everything is green... so no problems, but:

after editing a template, all " are escaped ;=)

before:
Code:
<body id="<?php get_page_slug(); ?>" >
<div class="container header" id="top">
    <div class="row">
        <div class="twelvecol last">
            <a id="sitename" href="http://www.domain.tld/index.php">Text</a>
        </div>
after:
Code:
<body id=\"<?php get_page_slug(); ?>\" >
<div class=\"container header\" id=\"top\">
    <div class=\"row\">
        <div class=\"twelvecol last\">
            <a id=\"sitename\" href=\"http://www.domain.tld/index.php\">Text</a>
        </div>
@Connie

Please try this. Edit admin/theme-edit.php, change line 49:

Code:
$FileContents = $_POST['content'];

to:

Code:
$FileContents = get_magic_quotes_gpc() ? stripslashes($_POST['content']) : $_POST['content'];

and let us know if templates are properly saved now.

(It seems your server has magic quotes enabled. This patch should fix this issue.)
@madvic, Connie & Carlos.

Both of these should be fixed in the latest SVN version...
Carlos Wrote:and let us know if templates are properly saved now.

(It seems your server has magic quotes enabled. This patch should fix this issue.)

yes, it is fixed now

phpinfo tells:
Code:
magic_quotes_gpc    On    On
magic_quotes_runtime    Off    Off
magic_quotes_sybase    Off    Off

but I had other installations before, GS 3.0, and did not run into that problem (krisendichte.de is GS 3.1, zweiterblick.de is GS 3.0)
new problem:

translation is not done completely:

I run german language file, de_DE.php
BACK_TO_WEBSITE => zur Webseite

the snippets from the login are not translated, the login dialogue is showing: "Back to Website "

not translated:
USERNAME
PASSWORT
BACK_TO_WEBSITE
FORGOT_PWD
LOGIN_FAILED

etc.
Connie Wrote:but I had other installations before, GS 3.0, and did not run into that problem (krisendichte.de is GS 3.1, zweiterblick.de is GS 3.0)

My fault. I suggested a patch to fix an issue with backslashes in theme files when magic quotes disabled, but that broke the thing for those like you having them enabled. :-)

PS Could you please check this? http://get-simple.info/forum/post/21742/#p21742
Connie - i am seeing these strings translated: http://code.google.com/p/get-simple-cms/...dex.php#22

Connie Wrote:new problem:

translation is not done completely:

I run german language file, de_DE.php
BACK_TO_WEBSITE => zur Webseite

the snippets from the login are not translated, the login dialogue is showing: "Back to Website "

not translated:
USERNAME
PASSWORT
BACK_TO_WEBSITE
FORGOT_PWD
LOGIN_FAILED

etc.
now I am confused. I will test tomorrow with a modified theme_functions.php and an original one
now it's too late and I feel like getting a flu

cheers, Connie
When do you estimate the full release of 3.1 "production stable" will be available?
GS 3.1 r646 has been updated for download on the SVN.

Please test and report any issues.

Thanks, Mike.
Getting an error now on this version (646)?

Code:
Notice: Undefined variable: load in /buscat/admin/inc/plugin_functions.php on line 371

Notice: Undefined variable: load in /buscat/admin/inc/plugin_functions.php on line 371

Notice: Undefined variable: load in /buscat/admin/inc/plugin_functions.php on line 371

Notice: Undefined variable: load in /buscat/admin/inc/plugin_functions.php on line 371

Notice: Undefined variable: load in /buscat/admin/inc/plugin_functions.php on line 371

5 error lines across the top of my site page and also in the Admin screens

UPDATE: it appears when I click on "Edit Theme" option
Don't know if its related to the above but I am getting this error in the Files area on the sidebar?

Code:
Notice: Use of undefined constant GSDEBUG - assumed 'GSDEBUG' in /buscat/admin/template/sidebar-files.php on line 22

Line states the following:

Code:
$debug = (GSDEBUG == 1) ? 'true' : 'false';
Anyone got a suggetion to fix the above two issues?
I've fixed both of those issues. Although I'm not getting the errors on my install which is weird.

I've updated them on the latest SVN version