The following warnings occurred:
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message



GetSimple Support Forum
Error "can't open file" when saving edited theme files - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: General Questions and Problems (http://get-simple.info/forums/forumdisplay.php?fid=16)
+--- Thread: Error "can't open file" when saving edited theme files (/showthread.php?tid=17190)



Error "can't open file" when saving edited theme files - PaulR - 2024-02-21

We recently had this issue with all of our GetSimple sites.

If using the GetSimple admin interface to edit the theme files (i.e. template.php, home.php, etc) when the edited file is saved, the message "can't open file" is displayed, and the file is empty.

This happened with both GS 3.3.25 & 3.3.16, various themes and both php 7.0.33 & 7.4.33

I solved this issue, and wanted to post this so that it might help others.

The problem was with the depreciated function get_magic_quotes_gp

The solution is to edit line 57 in the file admim\theme-edit.php, changing the original line:

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

TO:

$FileContents = $_POST['content'];


Paul


RE: Error "can't open file" when saving edited theme files - islander - 2024-02-21

(2024-02-21, 10:46:06)PaulR Wrote: We recently had this issue with all of our GetSimple sites.

If using the GetSimple admin interface to edit the theme files (i.e. template.php, home.php, etc) when the edited file is saved, the message "can't open file" is displayed, and the file is empty.

This happened with both GS 3.3.25 & 3.3.16, various themes and both php 7.0.33 & 7.4.33

I solved this issue, and wanted to post this so that it might help others.

The problem was with the depreciated function get_magic_quotes_gp

The solution is to edit line 57 in the file admim\theme-edit.php, changing the original line:

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

TO:

$FileContents = $_POST['content'];


Paul

Thank you for sharing your info Paul.

As current development on this branch has been halted for the past 4 years with no info as to if it will resume, I would highly recommend updating to the "Community Edition" where this and many more bug & security fixes have already been applied, as well as new features and php8.x compatibility added.

On this new site, you will find links to an updated version (v3.3.19.1) and or patch for existing installs, along with a growing collection of php8.x compatible plugins.

Hope this helps.