Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#1 2009-09-04 14:37:13

eritropel
Member
From: Hamburg
Registered: 2009-08-27
Posts: 26

TXP generates new directorys: section_name + nested dir article_name

Hi @all,

since a few days TXP (4.08 and now 4.20) generates new directories when the Site is in use.
The names are “objekte” (section_name) and the subdirectory “sternhochhaus” (article_name)

When the directory is available, TXP try to get the content from this directoriey and not from the DB. As result I got the error:

403 Forbidden
You don’t have permission to access /FMTest/objekte/ on this server.

It is difficult to locate the problem, because there is a time lag between the trigger and the generation of the new directory.
Has anyone an idea?

I’m looking foward for any little help.
Matthias

The Link

Offline

#2 2009-09-04 14:50:35

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

Re: TXP generates new directorys: section_name + nested dir article_name

Hi Matthias, txp does NOT generate ANY directories or subdirectories. Its clean urls mode emulate such structures. As such when you use txp it is advised to NOT have any real subdirectories sharing the same name as a txp section.

ps. You link returns a 404 from here, not a 403


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

Offline

#3 2009-09-04 15:35:00

eritropel
Member
From: Hamburg
Registered: 2009-08-27
Posts: 26

Re: TXP generates new directorys: section_name + nested dir article_name

Thank you for your fast reply

colak schrieb:
… txp does NOT generate ANY directories or subdirectories. Its clean urls mode emulate such structures. As such when you use txp it is advised to NOT have any real subdirectories sharing the same name as a txp section.

Mhhh… I beleve this, but again and again this directory generates itself(?) new – when I click through the site.
I’m helpless. Could it be a serverproblem…?

colak schrieb:
ps. You link returns a 404 from here, not a 403

Oops – this is the correct Link

Offline

#4 2009-09-04 16:13:26

ruud
Developer Emeritus
From: a galaxy far far away
Registered: 2006-06-04
Posts: 5,068
Website

Re: TXP generates new directorys: section_name + nested dir article_name

If you look at the files on your server, does the directory ‘objecte’ exist and does it contain any files? If not, then remove the directory.

Offline

#5 2009-09-04 17:01:20

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

Re: TXP generates new directorys: section_name + nested dir article_name

Please post your detailled diagnostics. Also: Are there any external (to Textpattern) caching measures in effect?

Offline

#6 2009-09-04 19:19:28

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

Re: TXP generates new directorys: section_name + nested dir article_name

Hi Matthias

Your server might not accept clean urls as the section is accessible here


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

Offline

#7 2009-09-04 19:34:47

ruud
Developer Emeritus
From: a galaxy far far away
Registered: 2006-06-04
Posts: 5,068
Website

Re: TXP generates new directorys: section_name + nested dir article_name

That’s not the problem, because the clean URL permalinks do work.

Offline

#8 2009-09-07 08:50:20

eritropel
Member
From: Hamburg
Registered: 2009-08-27
Posts: 26

Re: TXP generates new directorys: section_name + nested dir article_name

wet schrieb:

Please post your detailled diagnostics. Also: Are there any external (to Textpattern) caching measures in effect?

Hello @all,

thank you for your help!
I removed this directory about 20 times and it comes again and again…
How can I check, whether external caching measures are active?

Here the detailed diagnostics:

---------------------------------------------------------------------------
Textpattern version: 4.2.0 (r3275)
Last Update: 2009-09-02 12:56:58/2009-09-02 12:53:57
Document root: /var/www/html/web284/html
$path_to_site: /var/www/html/web284/html/FMTest
Textpattern path: /var/www/html/web284/html/FMTest/textpattern
Permanent link mode: section_title
open_basedir: /var/www/html/web284:/tmp
upload_tmp_dir: /var/www/html/web284/phptmp/
Temporary directory path: /var/www/html/web284/html/FMTest/textpattern/tmp
Site URL: sternhochhaus.de/FMTest
PHP version: 5.2.6
Register globals: 1
GD Image Library: version bundled (2.0.34 compatible), supported formats: GIF, JPG, PNG
Server TZ: Europe/Berlin
Server Local Time: 2009-09-07 10:41:17
DST enabled?: 1
Automatically adjust DST setting?: 1
Time Zone: Europe/Berlin (3600)
MySQL: 5.0.45
Locale: en_US.UTF-8
Server: Apache/2.2.3 (Red Hat)
PHP Server API: cgi-fcgi
RFC 2616 headers: 0
Server OS: Linux 2.6.18-92.1.10.el5xen
Active plugins: rss_auto_excerpt-0.5, rss_google_map-0.5, zem_contact_reborn-4.0.3.20, zem_contact_lang-4.0.3.6m, soo_image-1.0.b.1, soo_plugin_prefs-0.2, rvm_if_this_article-0.1, stm_article_order-0.2, rss_admin_show_adv_opts-0.3, soo_txp_obj-1.0.b.1
Admin-side theme: classic 4.2.0

Pre-flight check: 
------------------------
Old placeholder file is in the way: /var/www/html/web284/html/FMTest/objekte
------------------------

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

#Options +FollowSymLinks
#Options -Indexes

<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

------------------------

Charset (default/config): latin1/utf8
character_set_client: utf8
character_set_connection: utf8
character_set_database: latin1
character_set_filesystem: binary
character_set_results: utf8
character_set_server: latin1
character_set_system: utf8
character_sets_dir: /usr/share/mysql/charsets/
17 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: libxml, xml, wddx, tokenizer/0.1, sysvshm, sysvsem, sysvmsg, session, pcre, SimpleXML/0.1, sockets, SPL/0.2, shmop, standard/5.2.6, Reflection/0.1, readline, pspell, posix, pcntl, iconv, hash/1.0, gmp, gettext, ftp, filter/0.11.0, exif/1.4 $Id: exif.c,v 1.173.2.5.2.25 2008/03/12 17:33:14 iliaa Exp $, date/5.2.6, curl, ctype, calendar, bz2, zlib/1.1, openssl, cgi-fcgi, bcmath, dbase, dom/20031129, gd, imap, json/1.2.1, ldap, mbstring, mcrypt, mysql/1.0, mysqli/0.1, odbc/1.0, PDO/1.0.4dev, pdo_mysql/1.0.2, PDO_ODBC/1.0.1, pdo_pgsql/1.0.2, pdo_sqlite/1.0.1, pgsql, SQLite/2.0-dev, xmlreader/0.1, xmlrpc/0.51, xmlwriter/0.1, xsl/0.1, zip/2.0.0, ionCube Loader, Zend Optimizer

/var/www/html/web284/html/FMTest/index.php: 
	r3189 (8becf5ea8d9ced7d05b2433dfbabf868)
/var/www/html/web284/html/FMTest/css.php: 
	r3189 (7a0cc56c9dc585e56aab80bc0fb22c53)
/var/www/html/web284/html/FMTest/textpattern/css.php: 
	r3189 (459137eeb00bb07136001528ce724192)
/var/www/html/web284/html/FMTest/textpattern/include/txp_admin.php: 
	r3203 (26c4f327450f66618fe82b06fb8b9e70)
/var/www/html/web284/html/FMTest/textpattern/include/txp_article.php: 
	r3246 (9211f37e8ba873c78b0c46186896d6b2)
/var/www/html/web284/html/FMTest/textpattern/include/txp_auth.php: 
	r3250 (6be154f05fca4e83c4a4947c8635afd7)
/var/www/html/web284/html/FMTest/textpattern/include/txp_category.php: 
	r3203 (2350c33b6acc663b56ba982bc479c920)
/var/www/html/web284/html/FMTest/textpattern/include/txp_css.php: 
	r3118 (bfd945a0b268c60f7b71b6535c06154e)
/var/www/html/web284/html/FMTest/textpattern/include/txp_diag.php: 
	r3267 (c03f4b7e28c2f8e5050924b6caf2f61f)
/var/www/html/web284/html/FMTest/textpattern/include/txp_discuss.php: 
	r3185 (9b08de9e4f2df7160105ff218134ec67)
/var/www/html/web284/html/FMTest/textpattern/include/txp_file.php: 
	r3200 (dc26e8f4cbb1821c466c14926c8a10ca)
/var/www/html/web284/html/FMTest/textpattern/include/txp_form.php: 
	r3260 (6ad789075a6a1811d027f5e4043b845d)
/var/www/html/web284/html/FMTest/textpattern/include/txp_image.php: 
	r3267 (814b6421cb2e2df073d0d6bf05c252bf)
/var/www/html/web284/html/FMTest/textpattern/include/txp_import.php: 
	r3203 (fb18d629321a93472674dbd4abbfc63c)
/var/www/html/web284/html/FMTest/textpattern/include/txp_link.php: 
	r3203 (7dee2f899aa22712e4f5f1005c6853b0)
/var/www/html/web284/html/FMTest/textpattern/include/txp_list.php: 
	r3203 (2dd80b98cb76b0532133f6d7c2bcccb9)
/var/www/html/web284/html/FMTest/textpattern/include/txp_log.php: 
	r3203 (a97af8e5ed62605ab0111e45266300cb)
/var/www/html/web284/html/FMTest/textpattern/include/txp_page.php: 
	r3260 (ef00267f34445a33ce0f2e453c3a20db)
/var/www/html/web284/html/FMTest/textpattern/include/txp_plugin.php: 
	r3203 (8c1691e89ccfc8a8f9160e66efce2b09)
/var/www/html/web284/html/FMTest/textpattern/include/txp_prefs.php: 
	r3235 (9833b1a7cbd01def4ceb40f8cdf01a3b)
/var/www/html/web284/html/FMTest/textpattern/include/txp_preview.php: 
	r1238 (cc7d08574508c8ec1e4c5281d534d6e3)
/var/www/html/web284/html/FMTest/textpattern/include/txp_section.php: 
	r3203 (1c7eec911a015b72e42d5cea903be426)
/var/www/html/web284/html/FMTest/textpattern/include/txp_tag.php: 
	r3195 (280f0fd2e6f50e6a0f13490ea5dfc1f4)
/var/www/html/web284/html/FMTest/textpattern/index.php: 
	r3275 (6e259f5394d65617809d25e4823de174)
/var/www/html/web284/html/FMTest/textpattern/jquery.js: 
	unknown (bb381e2d19d8eace86b34d20759491a5)
/var/www/html/web284/html/FMTest/textpattern/lib/IXRClass.php: 
	r2932 (6c533bb271087338aa19ca0b78b1810f)
/var/www/html/web284/html/FMTest/textpattern/lib/admin_config.php: 
	r3202 (524b829d7c73e5db26415633e799e350)
/var/www/html/web284/html/FMTest/textpattern/lib/class.thumb.php: 
	r3107 (0e3f7b9da4b0c77f9b75263142598902)
/var/www/html/web284/html/FMTest/textpattern/lib/classTextile.php: 
	r2812 (b3e4cd9bd5fb469fabdebb2c0376f7e7)
/var/www/html/web284/html/FMTest/textpattern/lib/constants.php: 
	r3133 (b296756aedaf98b6f9420359dd07abdb)
/var/www/html/web284/html/FMTest/textpattern/lib/taglib.php: 
	r2868 (a0662fa399fb16e837e8852f044dade9)
/var/www/html/web284/html/FMTest/textpattern/lib/txplib_admin.php: 
	r3047 (54de3f807984122ebe9b8b955e5189f4)
/var/www/html/web284/html/FMTest/textpattern/lib/txplib_db.php: 
	r3250 (c29e316100ae6ed42d6ec51506388b5f)
/var/www/html/web284/html/FMTest/textpattern/lib/txplib_forms.php: 
	r3256 (2623d94099735edc0e7a51309c26665d)
/var/www/html/web284/html/FMTest/textpattern/lib/txplib_head.php: 
	r3265 (4492de4935f8352357f0809d9d89516f)
/var/www/html/web284/html/FMTest/textpattern/lib/txplib_html.php: 
	r3255 (adb712630ad3bbe59c5f716befa33f0a)
/var/www/html/web284/html/FMTest/textpattern/lib/txplib_misc.php: 
	r3271 (68d443f0f20acec5e86857a823c2b4e2)
/var/www/html/web284/html/FMTest/textpattern/lib/txplib_theme.php: 
	r3269 (83bcbeffa883bed5f0af951dda7be2fb)
/var/www/html/web284/html/FMTest/textpattern/lib/txplib_update.php: 
	r2812 (5e6821f06aeafe50b54e5a273423384f)
/var/www/html/web284/html/FMTest/textpattern/lib/txplib_wrapper.php: 
	r2931 (1c1b260a13c67657f1678d72559583bc)
/var/www/html/web284/html/FMTest/textpattern/publish.php: 
	r3258 (bc931a3406370c1ea4139ef957e95e38)
/var/www/html/web284/html/FMTest/textpattern/publish/atom.php: 
	r3029 (f8cc6dbfb5a5f2b39ec480589b2d59c3)
/var/www/html/web284/html/FMTest/textpattern/publish/comment.php: 
	r3266 (815df18aa4d451246ee70dd0502a8484)
/var/www/html/web284/html/FMTest/textpattern/publish/log.php: 
	r3247 (1c047309f6f13883b29a943d1cddec3a)
/var/www/html/web284/html/FMTest/textpattern/publish/rss.php: 
	r3029 (c39570953c1bd8347e456d750317b815)
/var/www/html/web284/html/FMTest/textpattern/publish/search.php: 
	r2812 (29a315e2435b73fe3d3a4d83fe84ba19)
/var/www/html/web284/html/FMTest/textpattern/publish/taghandlers.php: 
	r3256 (a40dce2989737477b1147d2104bba326)
/var/www/html/web284/html/FMTest/rpc/index.php: 
	r2998 (682e18cb9bdd6e9442a9ac23db1a591f)
/var/www/html/web284/html/FMTest/rpc/TXP_RPCServer.php: 
	r3250 (84ff888bf577670c897fdc27ad580c0f)
/var/www/html/web284/html/FMTest/textpattern/theme/classic/classic.php: 
	r3191 (722c6c7f2c8dbfee5c6cede0af2cd689)
/var/www/html/web284/html/FMTest/textpattern/update/_to_1.0.0.php: 
	r3047 (cbd20d275bf74184b1112569c2e77f76)
/var/www/html/web284/html/FMTest/textpattern/update/_to_4.0.2.php: 
	r3047 (4c9f8cd5c16bf19ff191ab35f0354e0f)
/var/www/html/web284/html/FMTest/textpattern/update/_to_4.0.3.php: 
	r3047 (6a4af33a23caf950c05faca0e8b4c93b)
/var/www/html/web284/html/FMTest/textpattern/update/_to_4.0.4.php: 
	r3047 (b235e2a27a6e79652ef078f62f73eb21)
/var/www/html/web284/html/FMTest/textpattern/update/_to_4.0.5.php: 
	r2894 (d17a02f48b79dbe6b3b0cf6eb779aadb)
/var/www/html/web284/html/FMTest/textpattern/update/_to_4.0.6.php: 
	r3047 (4d7b21635fbf46058cc539a0eec00561)
/var/www/html/web284/html/FMTest/textpattern/update/_to_4.0.7.php: 
	r3014 (e8ba7dc2892b81ce89b62775e2f5ea17)
/var/www/html/web284/html/FMTest/textpattern/update/_to_4.0.8.php: 
	r3057 (d699021db8e7c9f7d32f3ad3631caebc)
/var/www/html/web284/html/FMTest/textpattern/update/_to_4.2.0.php: 
	r3233 (aec6e4aafa98dbafe75506efd7f85816)
/var/www/html/web284/html/FMTest/textpattern/update/_update.php: 
	r3275 (e9085d568d49ff7910ffd4eb49bbe293)

------------------------

Best regards – Matthias

Last edited by wet (2009-09-07 08:57:51)

Offline

Board footer

Powered by FluxBB