Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#1 2012-12-05 09:40:55

wet
Developer Emeritus
From: Schoerfling, Austria
Registered: 2005-06-06
Posts: 3,323
Website Mastodon

Feedback to: Textpattern CMS 4.5.4 released

Please provide any feedback related to Textpattern 4.5.4 released.

Sorry for the very abrupt update cycle this week ;)

Offline

#2 2012-12-05 09:47:33

gaekwad
Server grease monkey
From: People's Republic of Cornwall
Registered: 2005-11-19
Posts: 4,134
GitHub

Re: Feedback to: Textpattern CMS 4.5.4 released

I’ll walk through a bunch of 4.5.3 to 4.5.4 upgrades and report back. Thanks again, Robert.

Edit: 10x sites bumped from 4.5.3 to 4.5.4 without issue.

Last edited by gaekwad (2012-12-05 12:21:18)

Offline

#3 2012-12-05 11:49:20

trenc
Plugin Author
From: Amsterdam
Registered: 2008-02-27
Posts: 571
Website GitHub

Re: Feedback to: Textpattern CMS 4.5.4 released

It’s only the .gitignore file, isn’t it?
If so I will only remove (or leave) these files. To many sites to update.

Offline

#4 2012-12-05 12:47:05

Gocom
Developer Emeritus
From: Helsinki, Finland
Registered: 2006-07-14
Posts: 4,533
Website

Re: Feedback to: Textpattern CMS 4.5.4 released

trenc wrote:

It’s only the .gitignore file, isn’t it?
If so I will only remove (or leave) these files. To many sites to update.

The 4.5.3 packages where strange fusions of the 4.x (4.6.0-dev) and 4.5.x branches. The packages didn’t only contain 4.5.3, but any new file from 4.6.0-dev. These stranded files include (all which should/can be removed):

+./.gitignore
+./images/.gitignore
+./textpattern/.gitignore
+./textpattern/include/txp_lang.php
+./textpattern/lib/txplib_textfilter.php
+./textpattern/modernizr.js
+./textpattern/theme/classic/img
+./textpattern/theme/classic/img/arrow-up-down.gif
+./textpattern/theme/classic/img/arrow-up-down.svg
+./textpattern/theme/classic/img/expand-collapse.gif
+./textpattern/theme/classic/img/expand-collapse.svg
+./textpattern/theme/classic/img/spinner.gif
+./textpattern/theme/classic/img/spinner@2x.gif
+./textpattern/theme/classic/img/textpattern.png
+./textpattern/theme/classic/img/textpattern.svg
+./textpattern/theme/classic/img/view-html.png
+./textpattern/theme/classic/img/view-html.svg
+./textpattern/theme/classic/img/view-preview.png
+./textpattern/theme/classic/img/view-preview.svg
+./textpattern/theme/classic/img/view-text.png
+./textpattern/theme/classic/img/view-text.svg
+./textpattern/theme/hive/css/custom/hide_textfilter_group.css
+./textpattern/theme/hive/img/indicator.svg
+./textpattern/theme/hive/img/spinner@2x.gif
+./textpattern/theme/hive/img/textpattern-lrg.svg
+./textpattern/theme/hive/img/textpattern-sml.svg
+./textpattern/theme/hive/img/textpattern-xlrg.svg
+./textpattern/theme/hive/img/view-html.svg
+./textpattern/theme/hive/img/view-preview.svg
+./textpattern/theme/hive/img/view-text.svg
+./textpattern/theme/remora/img
+./textpattern/theme/remora/img/expand-collapse.gif
+./textpattern/theme/remora/img/expand-collapse.svg
+./textpattern/tmp/.gitignore
+./textpattern/update/_to_4.6.0.php

These files (combined with link expansion, or rather lack of) are also the reason why the packages were considerable larger in size than in 4.5.2. Thankfully no files where merged and Textpattern doesn’t use any automatic library loading, so there is no permanent damage done anywhere.

Offline

#5 2012-12-05 12:48:43

colak
Admin
From: Cyprus
Registered: 2004-11-20
Posts: 9,007
Website GitHub Mastodon Twitter

Re: Feedback to: Textpattern CMS 4.5.4 released

I get this previously unseen error on the imca site

<txp:php> -> Notice: Undefined index: submit while parsing form “None” on page “None”

There is also a problem with the footer which only appears in the “error page” when it should be appearing everywhere. I left the site on debug just in case anybody notices something

> Edited to add that both the default and the 404 page get the footer through a series of output forms

Last edited by colak (2013-05-09 08:51:31)


Yiannis
——————————
NeMe | hblack.art | EMAP | A Sea change | Toolkit of Care
I do my best editing after I click on the submit button.

Offline

#6 2012-12-05 12:56:10

Gocom
Developer Emeritus
From: Helsinki, Finland
Registered: 2006-07-14
Posts: 4,533
Website

Re: Feedback to: Textpattern CMS 4.5.4 released

colak wrote:

<txp:php> -> Notice: Undefined index: submit while parsing form “None” on page “None”

The notice seems to come a PHP snippet you have in your page templates.

Offline

#7 2012-12-05 13:06:15

colak
Admin
From: Cyprus
Registered: 2004-11-20
Posts: 9,007
Website GitHub Mastodon Twitter

Re: Feedback to: Textpattern CMS 4.5.4 released

Thanks Jukka I’ll start deleting snippets one by one to check which one is the problematic one. Can anyone tell me why the pages stop before it reaches the footer?


Yiannis
——————————
NeMe | hblack.art | EMAP | A Sea change | Toolkit of Care
I do my best editing after I click on the submit button.

Offline

#8 2012-12-05 13:18:10

colak
Admin
From: Cyprus
Registered: 2004-11-20
Posts: 9,007
Website GitHub Mastodon Twitter

Re: Feedback to: Textpattern CMS 4.5.4 released

The php error comes from

<txp:php>
	if ($_POST['submit']) {
		$url = $_POST['site'].$_POST['terms'];
		if ($_POST['section'] && ($_POST['section'] != 'null')) $url = $url.'&s='.$_POST['section'];
		header('Location: '.$url);
	} else {
		header('content-type: text/html; charset=utf-8');
	}
</txp:php>

but even after deleting it the footer does not load for some reason

Solved. I had double quotes instead of single ones in one spot in the code. It seems that the latest version is less forgiving than 4.5.2

Last edited by colak (2012-12-05 15:22:55)


Yiannis
——————————
NeMe | hblack.art | EMAP | A Sea change | Toolkit of Care
I do my best editing after I click on the submit button.

Offline

#9 2013-01-23 08:41:43

rlube
New Member
Registered: 2010-02-10
Posts: 4

Re: Feedback to: Textpattern CMS 4.5.4 released

Seven years ago at least I ported my personal blog template from Blogger to TextPattern. It’s simple, not too ugly, and I have no plans to change it. It just works. A couple of years ago I upgraded to 4.4.1 without hassle, and today I’ve shifted up to 4.5.4. As far as I can tell, it’s flawless, with not a pixel out of place. Well done for staying on this product which has worked well for me for so long. Thanks again.

—RonL (www.deliberations.com.au)

Offline

#10 2013-05-13 13:13:10

quinceginger
Member
From: Romania
Registered: 2006-08-21
Posts: 29

Re: Feedback to: Textpattern CMS 4.5.4 released

I have upgrded and the Remora and Classic Admin Themes are aligned to the left. Botched. Hive appears ok.

The thumbnails on my first page are aligned left instead of floating right as before. Check out the website and its google cache version:

-mises.ro

-cached

I also do not see plugin statuses in any admin theme.

(Solved: deprecated align attribute removed) The admin side problems remain.

Last edited by quinceginger (2013-05-13 13:58:17)

Offline

#11 2013-05-14 10:38:13

quinceginger
Member
From: Romania
Registered: 2006-08-21
Posts: 29

Re: Feedback to: Textpattern CMS 4.5.4 released

The problem is serious. I cannot even modify published articles: after I push the publish button, the save button does not appear. If I understand the problem correctly, I have to decide between making a downgrade (down to which version?) and insisting for changes with the server adimins. Please help and advise.

Here are my diagnostics:

Textpattern version: 4.5.4 (r4919)
Last update: 2013-05-13 11:48:10/2013-05-13 11:38:07
Document root: /home/sites/mises.ro/public_html
$path_to_site: /home/sites/mises.ro/public_html
Textpattern path: /home/sites/mises.ro/public_html/textpattern
Permanent link mode: id_title
open_basedir: /home/sites/mises.ro/public_html:/home/sites/mises.ro:/usr/local/apache2/zooku-app:/home/sites/myhost-app/:/usr/local/php5217s-cgi/lib/php
upload_tmp_dir: /home/sites/mises.ro/tmp
Temporary directory path: tmp
Site URL: mises.ro
PHP version: 5.2.17
Register globals: 1
GD Graphics Library: bundled (2.0.34 compatible); supported formats: GIF, JPG, PNG.
Server TZ: Europe/Bucharest
Server local time: 2013-05-14 13:33:45
DST enabled?: 1
Automatically adjust DST setting?: 1
Time zone: Europe/Bucharest (7200)
MySQL: 5.1.59rel13.0-log
Locale: en_GB.UTF-8
Server: +
PHP server API: cgi-fcgi
RFC 2616 headers: 0
Server OS:
Active plugins: ako_nav-1.0, zem_contact_lang-4.0.3.6, zem_contact_reborn-4.0.3.20, zem_redirect-1.2, ajw_nofeed-0.1m, wet_commentmagic-0.5, wet_replace-0.1m, rss_auto_excerpt-0.5, rah_comment_spam-0.1.3, hak_tinymce-0.9.9m, upm_file-0.4.1, msd_minibar-0.4m
Admin-side theme: remora 4.5.4

Pre-flight check:
————————————
Clean URLs are only supported on Apache, use at your own risk.
The following PHP functions (which may be necessary to run Textpattern) are disabled on your server: pcntl_exec, pcntl_fork, pfsockopen, openlog, syslog, readlink, symlink, link, leak, escapeshellcmd, phpinfo, php_uname, ignore_user_abort
————————————

.htaccess file contents:
————————————
#DirectoryIndex index.php index.html

#Options +FollowSymLinks
#Options -Indexes
#ErrorDocument 403 default

<IfModule mod_rewrite.c> RewriteEngine On #RewriteBase /relative/web/path/

RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^(.+) – [PT,L]

RewriteCond %{REQUEST_URI} !=/favicon.ico RewriteRule ^(.*) index.php

RewriteCond %{HTTP:Authorization} !^$ RewriteRule .* – [E=REMOTE_USER:%{HTTP:Authorization}]
</IfModule>

#php_value register_globals 0

  1. SVG
    AddType image/svg+xml svg svgz
    AddEncoding gzip svgz

————————————

Charset (default/config): latin1/utf8
character_set_client: utf8
character_set_connection: utf8
character_set_database: utf8
character_set_filesystem: binary
character_set_results: utf8
character_set_server: latin1
character_set_system: utf8
character_sets_dir: /usr/local/Percona-Server-5.1.59-rel13.0-325.Linux.x86_64/share/mysql/charsets/
18 Tables: OK

10 Custom fields: custom_1, custom_2, custom_3, custom_4, custom_5, custom_6, custom_7, custom_8, custom_9, custom_10 (10)

PHP extensions: date/5.2.17, libxml, openssl, pcre, zlib/1.1, bcmath, bz2, calendar, ctype, curl, dom/20031129, hash/1.0, filter/0.11.0, ftp, gd, gettext, session, iconv, standard/5.2.17, json/1.2.1, mbstring, mcrypt, mhash, mysql/1.0, SimpleXML/0.1, pcntl, SPL/0.2, PDO/1.0.4dev, pdo_mysql/1.0.2, pdo_sqlite/1.0.1, posix, readline, Reflection/0.1, imap, mysqli/0.1, soap, sockets, SQLite/2.0-dev, exif/1.4 $Id: exif.c 293036 2010-01-03 09:23:27Z sebastian $, sysvsem, sysvshm, tidy/2.0, tokenizer/0.1, xml, xmlreader/0.1, xmlwriter/0.1, xsl/0.1, zip/1.8.11, cgi-fcgi, turbo_realpath/1.2.1, suhosin/0.9.31

/home/sites/mises.ro/public_html/index.php: r4086 (1cacaf70cbd9defaa6e21f44a4a823df)
/home/sites/mises.ro/public_html/css.php: r4086 (c8b264911e6ad82a71588066c133f7b6)
/home/sites/mises.ro/public_html/textpattern/css.php: r3189 (d2b173a93393ba06195d315de47f7b62)
/home/sites/mises.ro/public_html/textpattern/include/import/import_b2.php: r3997 (0b219807adeed43500ae73d50dc9c43e)
/home/sites/mises.ro/public_html/textpattern/include/import/import_blogger.php: r3901 (3c5ab5b884ccd3ee713f018112143b60)
/home/sites/mises.ro/public_html/textpattern/include/import/import_mt.php: r3446 (e175e6a3ffa57c3ed21721a33c2a7ccc)
/home/sites/mises.ro/public_html/textpattern/include/import/import_mtdb.php: r3997 (43104a7df70524f5b64305f4d05284ed)
/home/sites/mises.ro/public_html/textpattern/include/import/import_wp.php: r3997 (f4b1d8914f7041682cee5857fc4da4a2)
/home/sites/mises.ro/public_html/textpattern/include/txp_admin.php: r4092 (c5a5b7d863afa56bb10b59554b1791b4)
/home/sites/mises.ro/public_html/textpattern/include/txp_article.php: r4270 (05ef282938604e3fe403beffb7e667c6)
/home/sites/mises.ro/public_html/textpattern/include/txp_auth.php: r3964 (117a841ec286ef82644b664aa1591e44)
/home/sites/mises.ro/public_html/textpattern/include/txp_category.php: r4089 (9c0715b38872290d9dcc6097e4247a05)
/home/sites/mises.ro/public_html/textpattern/include/txp_css.php: r4090 (98363a3352a545c5c79b7c2368e1a4c6)
/home/sites/mises.ro/public_html/textpattern/include/txp_diag.php: r4192 (e14d3b00084b2a74587e0c309b169e23)
/home/sites/mises.ro/public_html/textpattern/include/txp_discuss.php: r4089 (9326426b24abcc5422403e2e9fff48e2)
/home/sites/mises.ro/public_html/textpattern/include/txp_file.php: r4089 (56a9db44164ec37b8a0d1899c6fb1e5c)
/home/sites/mises.ro/public_html/textpattern/include/txp_form.php: r4156 (306e46a796f1093fdffc675a5484adda)
/home/sites/mises.ro/public_html/textpattern/include/txp_image.php: r4089 (56fc01f0efac7654a2deb891af251085)
/home/sites/mises.ro/public_html/textpattern/include/txp_import.php: r3997 (29d60777dad6d2c25df2ccf51d64ed9f)
/home/sites/mises.ro/public_html/textpattern/include/txp_link.php: r4089 (561afab2d5e3627bc32f9f3f64d455d1)
/home/sites/mises.ro/public_html/textpattern/include/txp_list.php: r4089 (1be0b2b868e73992b078c94ab8681088)
/home/sites/mises.ro/public_html/textpattern/include/txp_log.php: r4062 (aaccee1f6e803b10425b45d91f84d0e1)
/home/sites/mises.ro/public_html/textpattern/include/txp_page.php: r4873 (1681cd54d9297d554c6e61322bf7895b)
/home/sites/mises.ro/public_html/textpattern/include/txp_plugin.php: r4062 (51761ef37ef637b7fa57d3a58e1681a7)
/home/sites/mises.ro/public_html/textpattern/include/txp_prefs.php: r4062 (7d8fd18d1ec95b0b5a715f7c425a553e)
/home/sites/mises.ro/public_html/textpattern/include/txp_section.php: r4089 (d64d4d8fc9d69b50817dac59c4588bbc)
/home/sites/mises.ro/public_html/textpattern/include/txp_tag.php: r4095 (d7c064d2076dcad78735c1858c8b2bb8)
/home/sites/mises.ro/public_html/textpattern/index.php: r4916 (7b72f5976df392022490a80042dd9a3c)
/home/sites/mises.ro/public_html/textpattern/jquery.js: unknown (b8d64d0bc142b3f670cc0611b0aebcae)
/home/sites/mises.ro/public_html/textpattern/lib/IXRClass.php: r3394 (40f7d5f34686ecd9d259b35006a6042d)
/home/sites/mises.ro/public_html/textpattern/lib/admin_config.php: r3896 (3b3da76b1c304cd8f72cc2292f737113)
/home/sites/mises.ro/public_html/textpattern/lib/class.thumb.php: r3733 (d9a8fad9eb15619c6acf6438e02b4fa2)
/home/sites/mises.ro/public_html/textpattern/lib/classTextile.php: r4096 (2e201db32675f78f0eda37ebc85cb6e8)
/home/sites/mises.ro/public_html/textpattern/lib/constants.php: r4060 (99d81fec07cfef75e66a3a50f599ccda)
/home/sites/mises.ro/public_html/textpattern/lib/taglib.php: r2868 (286eac5e382bfa77ecc7953f019ea88b)
/home/sites/mises.ro/public_html/textpattern/lib/txplib_admin.php: r3818 (52ffa8633e95f442ec00a1a652cb2124)
/home/sites/mises.ro/public_html/textpattern/lib/txplib_db.php: r3752 (df0b9ae0199fbe8a6148c02ad3ad53b0)
/home/sites/mises.ro/public_html/textpattern/lib/txplib_forms.php: r4872 (c2ab15d7473a18ef4b55e91c879ad7a6)
/home/sites/mises.ro/public_html/textpattern/lib/txplib_head.php: r3989 (3f910c8f20cf421ce7b14965a88f90b0)
/home/sites/mises.ro/public_html/textpattern/lib/txplib_html.php: r4163 (69349d370870489aad691e993a3df20e)
/home/sites/mises.ro/public_html/textpattern/lib/txplib_misc.php: r4816 (b2931b48f632a6036d86d369b76ece3f)
/home/sites/mises.ro/public_html/textpattern/lib/txplib_publish.php: r4461 (ea3fbc11514faf38ce9027221b3db31e)
/home/sites/mises.ro/public_html/textpattern/lib/txplib_theme.php: r3944 (5b2e74350182e012fb05688bbf8ffd29)
/home/sites/mises.ro/public_html/textpattern/lib/txplib_update.php: r4020 (b71d3ecc7d549b309b1d217b87493331)
/home/sites/mises.ro/public_html/textpattern/lib/txplib_validator.php: r3802 (e78ec0330390a90cc6c1782af901e77f)
/home/sites/mises.ro/public_html/textpattern/lib/txplib_wrapper.php: r2931 (ecbe1b28c8a1d897d44a4a099a15e2f9)
/home/sites/mises.ro/public_html/textpattern/publish.php: r4461 (79818b49d8875dc42a9551ccfc0545a5)
/home/sites/mises.ro/public_html/textpattern/publish/atom.php: r4011 (937d52579e3c46c5ecf66d3240826c9d)
/home/sites/mises.ro/public_html/textpattern/publish/comment.php: r4058 (aa88c15e827c5eeb61c880f6e4052658)
/home/sites/mises.ro/public_html/textpattern/publish/log.php: r3505 (b4fa399a00c6dd321fc198181e6fce4a)
/home/sites/mises.ro/public_html/textpattern/publish/rss.php: r4011 (7dc2f4065bb1a01b936e35cbfe1029df)
/home/sites/mises.ro/public_html/textpattern/publish/search.php: r2812 (093e236da60feda207545d45b79a11b0)
/home/sites/mises.ro/public_html/textpattern/publish/taghandlers.php: r4058 (8b46584619b1d30dd75c79a9e4c8f627)
/home/sites/mises.ro/public_html/textpattern/textpattern.js: r4057 (bc03389e8771a1a052de955081514079)
/home/sites/mises.ro/public_html/textpattern/theme/classic/classic.php: r4055 (362612183fb3e4e6e33bf646a2617ca2)
/home/sites/mises.ro/public_html/textpattern/update/_to_1.0.0.php: r4011 (8fb6bf221628bee9f5d0834643ea5077)
/home/sites/mises.ro/public_html/textpattern/update/_to_4.0.2.php: r4011 (af1f41698c76adca0eb88af3e2f97001)
/home/sites/mises.ro/public_html/textpattern/update/_to_4.0.3.php: r4011 (7ef2e0b60d4a82c53283d0959e6c3105)
/home/sites/mises.ro/public_html/textpattern/update/_to_4.0.4.php: r4011 (b8bb1964b610af251f832ace40200743)
/home/sites/mises.ro/public_html/textpattern/update/_to_4.0.5.php: r4011 (92610d1ce1eab53871a93287e5589e0c)
/home/sites/mises.ro/public_html/textpattern/update/_to_4.0.6.php: r4011 (639c3164eb1bed0ee5740f4b5f7bc1f1)
/home/sites/mises.ro/public_html/textpattern/update/_to_4.0.7.php: r4011 (f21a18372d7f1263b7bb540cecc3e9a2)
/home/sites/mises.ro/public_html/textpattern/update/_to_4.0.8.php: r3057 (e4e88113d4b0ab6fd003ab62a3c29675)
/home/sites/mises.ro/public_html/textpattern/update/_to_4.2.0.php: r4011 (43397d2c07e7e54d7b69e0651bc50bc5)
/home/sites/mises.ro/public_html/textpattern/update/_to_4.3.0.php: r4011 (24accd9fb2688208d02d380b176b3989)
/home/sites/mises.ro/public_html/textpattern/update/_to_4.4.0.php: r4011 (d30851758fe93cb98ecd998a80fd41f7)
/home/sites/mises.ro/public_html/textpattern/update/_to_4.4.1.php: r4011 (ceadb82db0c5b238159e3f95937d3c56)
/home/sites/mises.ro/public_html/textpattern/update/_to_4.5.0.php: r4020 (2ef4d4505566b6a74ec2f1c9948c7ab5)
/home/sites/mises.ro/public_html/textpattern/update/_update.php: r4919 (683a9a82f055e7fc750cae16a9619eea)

————————————

Offline

#12 2013-05-14 10:40:14

wet
Developer Emeritus
From: Schoerfling, Austria
Registered: 2005-06-06
Posts: 3,323
Website Mastodon

Re: Feedback to: Textpattern CMS 4.5.4 released

Looks like you are using a stale copy of textpattern.js. Clear your browser cache. Check your proxy settings.

Offline

Board footer

Powered by FluxBB