Search the website and IRC logs

#TYPO3 IRC log from : Wednesday 20 August 2008

Year: 2007 2008 2009 2010 2011 2012
Month: Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
00:30 adnc when i insert a flash file as multimedia content, can i define the size of it?
02:14 chefan yes
02:15 chefan take whatever site using flash as example, look at the page source
02:15 chefan width and height can be given as parameters
02:39 nhaskins I'm using RealURL and I can't get "defaultToHTMLsuffixOnPrev" to work, I'm getting a "speaking" url just the last part still looks like a folder. setup is as follows
02:40 nhaskins $TYPO3_CONF_VARS['EXTCONF']['realurl'] = array(
02:40 nhaskins '_DEFAULT' => array(
02:40 nhaskins 'pagePath' => array(
02:40 nhaskins 'type' => 'user',
02:40 nhaskins 'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
02:40 nhaskins 'rootpage_id' => 1
02:40 nhaskins ),
02:40 nhaskins ),
02:40 nhaskins 'evertonweekes.org' => array(
02:40 nhaskins 'pagePath' => array(
02:40 nhaskins 'type' => 'user',
02:40 nhaskins 'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
02:40 nhaskins 'rootpage_id' => 1
02:40 nhaskins ),
02:40 nhaskins ),
02:40 nhaskins 'fileName' => array (
02:40 nhaskins 'defaultToHTMLsuffixOnPrev' => 1
02:40 nhaskins ),
02:40 nhaskins );
02:40 xsebi (ô_o)
03:15 ries How do you like this as a scripting language?? http://pastebin.com/d26985b9a
03:17 chefan looks like ecma
03:18 chefan apart from the java imports *g*
03:20 ries hehehe
03:20 ries never heard of ecma...
03:20 ries chefan: Working on some ideas for a better scripting language
03:21 ries idea is to make it extensible, simple and truly scritable
03:22 chefan ecma is javascript formalized so to say
03:22 chefan ries: looks a lot like jsp actually
03:23 ries it's not javascript... it's actually pnuts
03:23 ries it's scripting language for sure...
03:24 chefan at first glance i would say it should be fairly easy to convert it to jsp with sort of a precompiler
03:24 chefan pnuts, never heard that before
03:25 ries The idea is much like typoscript to control page behaviour.. But unlike typoscript this is a real scripting language
03:25 ries it will also be very extensible by custom extensions
03:25 chefan hmmmmm
03:25 chefan what makes me suspicious is that on the one hand it stays VERY close to java
03:26 ries idea is to keep it close to core classes to keep it speedy
03:26 chefan but on the other hand just seems to wipe away the overhead as if it didn't exist
03:26 chefan which appears a bit like flirting with desaster to me
03:27 ries I have been thinking about that.. and indeed it's more sensitive to mistakes...But it does make the scripting a lot easer... can be checked for syntax errors (can function FooBar be called at all)
03:28 chefan yep, sure
03:28 ries basic part of teh template part already works...
03:28 chefan i am not sure though if it's a gain in the end, taking all options into account
03:28 ries just fooling around with some ideas
03:28 ries I think it's a huge gain...
03:29 ries because you can solve a lot of things in this language rather then writing yet a other extension
03:29 chefan consider a good ide with a precompiler and good prototypes
03:30 ries teh code will be checked when saved in the database
03:30 chefan i am working with java server sided and openlaszlo client sided at the moment
03:30 ries and will be cached so it doesn't have to be re-compiled on each page load
03:30 chefan that's quite productive too after a couple of interfacing solutions
03:30 ries I tired open lazlo.... couldn't get my head around it really... we are using Flex now
03:31 chefan matter of taste maybe
03:31 ries do you create dhtm from open lazlo?
03:31 XiXora hmm
03:31 XiXora ok
03:31 ries I think the lack of IDE pulled the team off totally...
03:33 chefan depends on the use, ries
03:33 chefan the support became complete just lately
03:33 ries when we where evaluating it they where working on that function I remember
03:34 chefan and i didn't have much time to bet on things that might work ;)
03:34 ries that was the reason we didn't use it in the end...
03:34 chefan the latest release is considered to fully support dhtml
03:35 chefan and there is an ide for it done by a swiss company
03:35 chefan though i haven't tried it yet
03:35 chefan i heard there are eclipse plugins too now
03:36 chefan i use vim and scite for it though ;)
03:37 ries I like the ide so I can concentrate on the business rather then on how to make the UI work :)
03:39 XiXora hey guys, have any of you tried to have a non admin be user add fe users?
03:39 XiXora i am trying but they cannot add them to usergroups
03:39 XiXora but an admin can
03:40 ries That's correct
03:42 XiXora it is?
03:42 chefan ries: lets just make uml turing complete :)
03:42 XiXora well i let the non admin be user do it but just cant see the user groups :s
03:43 ries Hmmm so a non admin user can add fe users?
03:44 XiXora yer
03:44 XiXora hes just a super user kinda
03:44 xsebi i want to save data in utf-8 format in my ext db , so i set it to utf-8 + i set the field i want to save to utf-8 too but it still saves in some weird chars , did i miss something ?
03:44 XiXora be user still
03:44 XiXora just not an admin
03:46 xsebi rest of my install is latin
03:47 ries XiXora: sorry I cannot remember how that worked with typo3 anymore...
03:48 XiXora ooh ok thnx
04:12 xsebi well i figured out the problem kinda , when i use t3lib_div::writeFile($filename,$content); the filename aint being saved in utf-8 format
04:19 xsebi somebody can tell me how i get t3lib_div::writeFile in utf8 format ?
04:31 chefan utf8_encode($filename) how about that?
04:34 xsebi hey that function really exists , ill try
04:38 chefan *g*
04:39 chefan hey, i didn't write the typo3 docs, i don't make up functions that don't exist *g*
04:50 xsebi well it doesnt help anyway
04:50 xsebi the problem is the file that is written to the hd
04:51 xsebi my output surely shows all in utf-8
04:55 xsebi gives me a link like this : blabla/öpöo.html
04:55 xsebi but the filename is screwed like this : öpöo
04:55 xsebi maybe im too stupid and its like 5 o clock in the morning now but ..
05:03 chefan erm
05:03 chefan i see both the same
05:04 chefan ok, that could be because i have iso as fallback decoding *g*
05:05 XiXora hi, any of you use tt_news?
05:06 XiXora ries: fixed that prob
05:06 XiXora just permissions on usergroup folder ;)
05:06 XiXora one more left i think
05:31 xsebi wow
05:33 xsebi wb : )
05:37 xsebi well thx chefan , i got it going now
05:37 xsebi has to look like this : $filename = utf8_decode($filename);
05:46 trac Greetings, anyone can help with jscookmenu setup?
05:48 trac Anyone knows of a Javascript menu that is easy to be installed in typo3
06:28 Gypsy Testing.
06:28 Gypsy seems to move pretty quickly.
06:57 Nav hi
06:57 Nav i want to include the header and footer in an HTML template as php files in typo3
06:58 Nav i have used php_script for that pupose
06:58 Nav but the problem is that in that php_script there is a div which acts as a placeholder for the menu which is being developed by typoscript
06:59 Nav which the page is rendered, the menu is not generated in that div which is contained in the php script
06:59 Nav it seems there is an issue rendering such sort of cases
06:59 Nav anybody got a solution for that?
07:01 Nav does typoscript renders first or the php_script?
07:31 Nav anybody here?
07:32 xsebi nav : yes
07:32 Nav xsebi, have u looked at my question?
07:34 xsebi maybe u can place your div in via ts
07:35 xsebi set a marker in your php and then render the ts after the php has passed
07:51 Nav hmmm..
07:52 Nav actually the whole template is an HTML file
07:52 Nav how can i set a particular div from that template in typoscript
08:45 dinsdale07 good morning - I have an annoying problem with the installtool.
08:46 dinsdale07 the login from hostname/subfolder/typo3/install works,
08:47 dinsdale07 the login from subdomain.domain.tld/subfolder/typo3/install doesn't. It sort of accepts the password but returns the login mask with an error. This is with typo3 4.2.1. Any ideas?
08:49 dinsdale07 I think the problem is the subdomain part which is not www.
08:52 m4rtijn hi all
08:53 xsebi dinsdale : maybe your vhost conf / dokument root aint confed ?
08:55 dinsdale07 :xsebi - good point, I'm using aliases for my virtual hosts, the document root is defined for another page without the /subfolder/ part.
09:06 m4rtijn humpapa
09:08 dinsdale07 ok, now I changed the DocumentRoot to the folder of the typo3 installation - same problem. berlingot.domain.tld/typo3/install
09:09 dinsdale07 from my internal network the same link is hostname/typo3/install and it works flawlessly
09:09 m4rtijn tetere
09:11 dinsdale07 :m4erijn sounds like bavarian folk music
09:18 hellooo hi everyone!!
09:18 hellooo is anybody here?
09:19 hellooo need some help with the extention bm_tablesort
09:19 hellooo the tap for sorting in a content typ table won't show up
09:19 hellooo any ideas?
09:21 m4rtijn I dont know that extension
09:21 m4rtijn hellooo - did u enable secondary option palette?
09:22 hellooo yes i did
09:22 hellooo i also added the static temlate too
09:24 m4rtijn then maybe its not compatible with the typo3 version ure using
09:24 hellooo oh
09:25 hellooo i am using typo3 ver. 4.2
09:25 hellooo have chosen the original css in the constant editor as well
09:26 m4rtijn what does it say in the extension description.. which typo3 version it requires?
09:26 hellooo constant editor: PLUGIN.SORTABLE TABLES
09:26 dinsdale07 :hellooo that's only to display in the frontend
09:26 hellooo do I have to make any TS setups?
09:26 hellooo there is nothing mentioned in the ext. documentation
09:27 hellooo it says: just install the ext. with the extention manager
09:27 dinsdale07 :hellooo usually not. As far as I understand TS setup and your forms/tabs in the backend are seperate
09:28 dinsdale07 are you using templavoila or marker substitution?
09:28 hellooo yes i am
09:29 hellooo I can't find the list of compatible typo3 versions for this extension either...
09:29 dinsdale07 I guess that means templavoila?
09:30 dinsdale07 that's usually included in the info page of the extension - check in extension manager. if the auther didn't fill in the field, well you gotta play around a bit with it.
09:32 hellooo I just checked the extention man.
09:33 hellooo no such infos...
09:33 hellooo the developer sayas it's an initial release....
09:33 hellooo last update was 12.2007
09:34 hellooo sorry guys for these questions, but i'm kinda new in typo3... :)
09:35 m4rtijn hehe.. thats why we're all here.. no need to apologize
09:35 dinsdale07 :hellooo I don't think the author created this extension with the kickstarter so he probably omitted the information.
09:35 m4rtijn we all hve questions and hopefully also some answers.. ;)
09:36 dinsdale07 12.2007 - what was the stable Version back then, already 4.2 branch?
09:37 hellooo i use the seminars extension as well, and it has sortable tables too, works just fine..
09:37 hellooo but i just need to create a simple table with sort functionality...
09:37 hellooo without the whole seminar manager stuff..
09:38 hellooo aare there any other ways to enable sorting in the tables content typ?
09:40 dinsdale07 no - 12.2007 was definately 4.1 branch. helloo you might want to try to install typo3 4.1.7 if it works there.
09:41 hellooo oh no! does that mean that i have to downgrade my whole typo3 sit to 4.1 just for this extention to work?
09:41 dinsdale07 what do you mean by enabeling sorting?
09:42 m4rtijn hellooo - its not rly much work to downgrade :p
09:43 hellooo :dinsdale07 - like when you click on the colums title it would sort the tble content...
09:43 m4rtijn hellooo - use jquery
09:43 hellooo but what about the other stuf that works only with 4.2?
09:43 dinsdale07 yes - I just read the extension manual - looks promising...
09:44 dinsdale07 downgrade just as a test (change the symlink in your installation). If it is the Version you can at least inform the author
09:44 m4rtijn http://tablesorter.com/docs/
09:45 dinsdale07 all clientside jquery :m4rtijn?
09:45 m4rtijn yes
09:45 m4rtijn javascript
09:45 hellooo :m4rtijn - wow thanks, i didn't know that site...
09:45 m4rtijn np yw
09:45 m4rtijn its very easy to implement
09:45 dinsdale07 jesch - I gotta get into that stuff... heard lots about jquery already.
09:45 m4rtijn like 2 lines of code
09:46 hellooo now i just have to figure out to make this work in typo3?
09:46 m4rtijn very easy hellooo
09:46 m4rtijn download jquery.js
09:46 m4rtijn add: seite.headerData.10.value = <script type="text/javascript" language="javascript" src="fileadmin/templates/jquery.js"></script>
09:46 m4rtijn or smth like that into the template
09:47 m4rtijn thats about it.. then u only need to do the stuff from the url i just send
09:48 hellooo :m4rtijn - seite... are you german?
09:48 m4rtijn hehe, no... I live in germany though
09:49 hellooo hehe me too...
09:50 hellooo is there somthing like a jquery lib for typo3?
09:50 m4rtijn nope
09:50 hellooo or an ext.?
09:50 m4rtijn neither
09:50 m4rtijn but I think thats ok.. jquery is still changing fast
09:50 m4rtijn i think it had 2 versions in 2 weeks
09:51 hellooo wow
09:51 m4rtijn as soon as it settles down.. I guess there will be
09:51 m4rtijn i'll defenetly write some extensions ;)
09:51 dinsdale07 http://typo3.org/extensions/repository/view/jquery/1.2.2/
09:51 dinsdale07 no?
09:51 m4rtijn aha?
09:51 m4rtijn cool
09:52 dinsdale07 but older - feb 2008 I think
09:52 hellooo thanks..
09:52 m4rtijn yes still.. I wouldn't use it
09:52 m4rtijn its like one line of code to implement it manually
09:52 m4rtijn I had some code which didnt work yesterday with an 1 week older version of jquery
09:53 dinsdale07 ok,
09:53 m4rtijn after re-downloading it worked fine
09:53 hellooo i'm not too familiar with jquery, but i'll defently give it a try...
09:54 hellooo the link you sent me is very very nice... :))
09:55 m4rtijn can only recommend it.. if u need some help /join #jquery
09:56 HardPhuck hey
09:56 HardPhuck Deny you here?
09:57 hellooo :m4rtijn - do you do some custom development work too?
09:57 m4rtijn hm?
09:57 m4rtijn how do u mean
09:57 hellooo i have a couple of projects and I'mm willing to pay for your help...
09:58 hellooo you know, like a freelancer...
09:58 m4rtijn sure
09:59 hellooo how can we get in contact?
09:59 hellooo I'm from cologne, germany...
09:59 m4rtijn did u get my private message?
10:01 hellooo yes, thanks...
10:02 hellooo i work as an IT and Media/Audio engineer...
10:02 hellooo i just started out with typo3...
10:03 hellooo i'll take a look at the jquery stuff, and I'm liking it already :))
10:03 m4rtijn hehe.. its quite exciting yes...
10:04 m4rtijn very little code - very interesting results :)
10:04 hellooo yes in deed, thank you very much...
10:05 m4rtijn yw :)
10:07 hellooo thanks guys, and keep up the good work :)))
10:07 hellooo have a nice day...
10:08 PanTerra hi
10:13 PanTerra does any one have experience with backend user creation ?
10:15 PanTerra when I try to create a user and give access rights to the complete web module the page tree for this user isn`t showed
10:15 PanTerra what do I forget :D
10:15 dinsdale07 Panterra - check in permissions that the page or tree belongs to a user group
10:16 m4rtijn yes - "access" in the web-module
10:17 PanTerra it is only to user admin
10:17 PanTerra so I first have to create a group
10:17 dinsdale07 correct
10:17 m4rtijn yop
10:18 PanTerra where can I create this group ?
10:18 m4rtijn in the user-creation window
10:18 m4rtijn where it says group.. theres a +
10:19 PanTerra found it :D
10:19 dinsdale07 or listview - globe in the pagetree :-)
10:21 m4rtijn hmrrmmmhmmrm
10:21 m4rtijn darn special = browse thingiemabob isnt working
10:22 dinsdale07 oh lucky you, at least you can access your typo3 website - I'm stuck before the install tool.
10:22 m4rtijn hehe
10:22 m4rtijn whats up?
10:22 PanTerra :D it worked
10:22 dinsdale07 debuging init.php now ...
10:22 typo3user hello people ive got a question about the indexed search. ive read that the indexed search only indexes cached pages, but when i search for something, the indexed search finds something but the cache is disabled. the cache_pages table is empty ;-)
10:23 m4rtijn maybe ur'e a very lucky typo3user
10:23 PanTerra or the cache is cached :p
10:23 dinsdale07 :m4rtijn I can't access the installtool from berlingot.homeip.net/typo3/install but only from my internal network hostname/typo3/install
10:24 dinsdale07 unfortunately I'm not in my internal network right now :-( - my guess is typo3 doesn't like the subdomain....
10:24 PanTerra @dinsdale07 do you have shell access ?
10:24 m4rtijn dinsdale07: theres also an option in the configuration which can be set to only allow internal network IP's..
10:25 PanTerra I thought there was a setting
10:25 dinsdale07 hm - shouldn't be active by default though ... no?
10:26 PanTerra default is only internal
10:26 m4rtijn gmmm.. im not sure about that being default PanTerra
10:26 dinsdale07 ok - this is an option in the localconf.php?
10:26 m4rtijn I never change this setting and always access BE remotly
10:27 m4rtijn check - [BE][IPmaskList]
10:27 PanTerra BE and install tool is different
10:27 dinsdale07 what would be an example address. do you always have www as subdomain "m4rtijn
10:27 PanTerra the install tool is much more secured i thought
10:29 m4rtijn dinsdale07 - im not sure about the server setup .. though no matter what subdomain I used... it always worked
10:29 typo3user from which tables does the indexed search search for words?
10:30 typo3user all my cache_tables are empty.
10:30 dinsdale07 echo $TYPO3_CONF_VARS['BE']['IPmaskList']; doesn't return anything ...
10:31 PanTerra m4rtijn your right, not default
10:31 m4rtijn yay.. I WAS RIGHT
10:32 m4rtijn hehe ;)
10:32 PanTerra enjoy it as long as it takes :p
10:32 m4rtijn i am..
10:32 PanTerra you should
10:32 m4rtijn whatever that means..
10:32 dinsdale07 do you have virtual hosts on your setup @m4rtijn
10:33 m4rtijn like I said dinsdale07 - im not that good with server setup - but im quite sure it with virtual hosts
10:33 PanTerra @dinsdale
10:34 PanTerra i m in your install tool
10:34 m4rtijn lol
10:34 dinsdale07 how did you do it?
10:34 PanTerra http://berlingot.homeip.net/typo3/install/index.php?TYPO3_INSTALL[type]=about
10:34 dinsdale07 that's fine - it's the development server - but please don't mess around :-)
10:34 PanTerra you ve got my garanty
10:34 PanTerra no probs mate
10:35 dinsdale07 you see - I can't ... what browser are you using?
10:35 m4rtijn psst PanTerra - set the BE IPMask to my IP: 213.12.13.4
10:35 PanTerra ie 7
10:35 PanTerra help me throuh please
10:36 dinsdale07 hm, I'm on firefox 3.0.0.1 on linux ...
10:36 dinsdale07 let me test on windows ...
10:36 PanTerra ok
10:38 PanTerra [BE][IPmaskList] =
10:38 PanTerra you want me to put in your ip ?
10:38 PanTerra 213.12.13.4
10:38 m4rtijn hehe
10:40 dinsdale07 I'll bite my own butt off !!! it works from IE7...
10:41 m4rtijn hehe
10:41 m4rtijn you want some salt and pepper with that?
10:42 m4rtijn or some sprayonaise
10:42 dinsdale07 erkk - what's that? like cheezwheez?
10:43 m4rtijn its mayonaise.. but in a spraying can
10:43 m4rtijn hehe.. its from a movie
10:43 PanTerra ok I get out of your site :D
10:43 dinsdale07 actually thinking about it I do prefer sitting on it :-)
10:44 dinsdale07 that was acutally not the first iregularity I saw with typo3 and firefox.
10:44 m4rtijn its the first I ever heard of.. never had problems with typo3 and im using it since its out
10:44 m4rtijn apart from the navigation bug at the very start
10:44 dinsdale07 http://www.avecstyle.ca/index.php?id=97
10:45 m4rtijn -using ff3 since its out - is what i meant
10:45 dinsdale07 has anyone FF3 for windows?
10:45 m4rtijn yes
10:45 dinsdale07 can you check the link above pls
10:45 m4rtijn Fatal error: Call to a member function getTSConfig() on a non-object in /var/www/typo3_src-4.2.1/t3lib/class.t3lib_befunc.php on line 2549
10:45 dinsdale07 exactly, I can see it on FF3 on linux.
10:45 m4rtijn hehe
10:46 dinsdale07 strange - isn't it?
10:46 PanTerra with ff2 it just works
10:46 dinsdale07 m4rtijn, could you please test the install tool too
10:46 dinsdale07 berlingot.homeip.net/typo3/install
10:46 dinsdale07 pass joh316
10:46 m4rtijn works fine
10:47 dinsdale07 something smells fishy ...
10:48 dinsdale07 somthings work on FF3 on linux but not on windows and vica versa ... strange,
10:48 RoyalKnight is there any possibility to show one special news-teaser on a page?
10:48 m4rtijn phpinfo() looks fine
10:49 dinsdale07 Panterra FF2 you are on linux or windows?
10:49 PanTerra are there any do`s and dont`s with the user security ?
10:49 PanTerra windows
10:50 m4rtijn PanTerra - what do you mean?
10:50 foool none know of a utility that can help to troubleshhot why a page loads slowly?
10:50 dinsdale07 ok, I think i'll make a table and post it to the list - let's see if it's just me.
10:50 dinsdale07 :fool check out firebug for firefox
10:50 m4rtijn foool - tracert ?
10:51 m4rtijn foool - ping
10:51 m4rtijn foool - DDOS attack ?
10:51 m4rtijn :p
10:51 foool hehe
10:51 m4rtijn but honestly try tracert
10:51 PanTerra I m working on a intranet here for about 50 persons
10:52 PanTerra @fool is it just 1 page or the site ?
10:52 PanTerra I need to put in this 50 users and create a security structure
10:53 dinsdale07 :fool - if you're still on your 256MB VPS server ... well, you know.
10:53 PanTerra I only want 10 persons to edit in the backend the others should use the frontend
10:54 PanTerra @dinsdale uhh I ve got a dual xeondual core 3.0 here and some pages are also slow
10:55 Fish3y3 hi
10:55 dinsdale07 any particular plugins used on these pages?
10:55 PanTerra uhh yep
10:55 PanTerra 3 or 4
10:55 PanTerra smooth gallery
10:56 PanTerra poll
10:56 PanTerra news
10:56 PanTerra weather pannel
10:56 dinsdale07 smooth gallery takes lots of ressources from my experience.
10:56 PanTerra and a reconfigured news module
10:57 PanTerra but it looks cool
10:57 PanTerra :D
10:57 dinsdale07 and cal - both
10:57 PanTerra cal ???
10:57 m4rtijn PanTerra - check the jquery galleries .. they look like smoothgal and have like .. 1/100 th of the code :p
10:57 PanTerra thanks :d
10:58 dinsdale07 I love smoothgallery. Only downside, you cannot use the GIFBUILDER for tt_news records ... still looking for a solution there.
10:58 dinsdale07 m4rtijn loves jquery :-)
10:58 m4rtijn yay
10:58 m4rtijn hehe
10:58 Phlogi m4rtijn: hihi
10:58 m4rtijn im just used my special = browse thingie.. and suddenly I have 2 extra .css files... html.css and ua.css
10:59 m4rtijn anyone know where those come from
10:59 dinsdale07 I had a 256 VPS with smoothgallery and cal and the page would just stop loading and time out. 512MB the problem went away.
11:00 PanTerra I have 1 gb of memory
11:00 PanTerra maybe i should by 4 gb
11:00 PanTerra :D
11:00 m4rtijn dinsdale07 - r u french?
11:00 Fish3y3 does anyone of you know an easy way to disable rte in the frontend?
11:01 PanTerra if 200 euro`s will make it faster :p
11:01 m4rtijn or anyone for that matter speak french here?
11:01 dinsdale07 m4rtijn no german - but I live in quebec
11:02 tagtic Hi guys.
11:02 PanTerra why french ?
11:02 m4rtijn can u tell me what matieu is saying here?
11:02 m4rtijn http://www.developpez.net/forums/d143355/webmasters-developpement-web/css/css-internt-explore-firefox/#post925219
11:02 HardPhuck anyone tried to add a class to tt_news image in singleview?
11:02 dinsdale07 :Panterra check with free -m if it's swapping. apache doesn't like swapping.
11:02 tagtic I'm wondering where i can change the mysql password in a configuration file..
11:02 dinsdale07 :PanTerra quebec is the french province in Canada
11:02 PanTerra is this linux code or windows ?
11:03 tagtic i can't find it in the localconf.php
11:03 foool PanTerra the site, think I need to change something, but I want to see what is causing it to slow down - images or?
11:03 tagtic CSS? i guess?
11:03 Fish3y3 does anyone of you know an easy way to disable rte in the frontend...especially in combination with newsfeedit?
11:04 tagtic I would please like to change the mysql (user) password in a configuration file, but i can't find it somehow.
11:04 tagtic Anyone?
11:04 m4rtijn tagtic - localconf.php
11:04 m4rtijn http://webtool.1und1.de/analyze/?ladezeit
11:04 m4rtijn http://www.ladezeit.info/
11:04 m4rtijn http://www.websiteoptimization.com/services/analyze/index.html
11:04 PanTerra @tagtic the mysql server password or the password to login?
11:04 m4rtijn fool - those links are for you
11:05 tagtic The mysql server password actually.
11:05 dinsdale07 https://addons.mozilla.org/en-US/firefox/addon/1843
11:05 tagtic Is it encrypted in the localconf.php page?
11:05 PanTerra you can`t
11:05 dinsdale07 this too :fool
11:05 PanTerra this is encoded in the database itself
11:05 dinsdale07 check out the net tab in firebug
11:06 foool thanls martijn
11:06 m4rtijn yw
11:06 tagtic But how is it possible to setup a connection to the database, while the password resists in the database?
11:06 PanTerra @tagtic look for phpmyadmin
11:06 tagtic Alright.. will try that..
11:07 PanTerra @ tagtic http://www.cyberciti.biz/faq/mysql-change-root-password/
11:08 tagtic Thanks but thats actually not what i am looking for, i would like to change the password in a configuration file. It must be somewhere hidden?
11:09 tagtic We've got the $typo_db_username
11:09 tagtic and so on the host, the typo_db but somehow no myqsl password
11:10 PanTerra it should be in localconf.php then
11:10 PanTerra free -m Mem: 1010 988 21 0 116 399
11:10 Phlogi tagtic: its in plaintext in localconf.php
11:11 PanTerra I think I will by some more ram then
11:11 PanTerra 21 mb free is not much
11:12 tagtic Thanks! I've found it.. stupid me it was just not their anymore. Now i've added $typo_db_password='SECRET'; and now it's working
11:12 tagtic Thanks you guys for helping me out!
11:12 dinsdale07 :PanTerra, check also after a reboot - as long as there is memory it will be used. As long as it is not swapping extensivly it should be alright
11:12 tagtic Have a nice day! Peace!
11:12 PanTerra reboot is not an option
11:12 tagtic exit
11:13 PanTerra it is a production server
11:13 dinsdale07 ok, prod system :-)
11:13 dinsdale07 something else on it apart from Typo3?
11:13 PanTerra yeah
11:13 PanTerra samba domain
11:13 PanTerra squid
11:13 m4rtijn hehe
11:13 PanTerra clamav
11:13 m4rtijn mp3 live stream
11:13 dinsdale07 how many users does it serv, I mean apache?
11:13 m4rtijn and kino.to
11:14 PanTerra 50
11:14 PanTerra there are 3 or 4 sites on it
11:14 PanTerra all localy
11:15 dinsdale07 ok, so the defaults of apache are probably right with the spare listening servers. I reduced mine for low traffic webpages and my 512MB VPS is fine for about 10-15 typo3 installations.
11:15 PanTerra for how many users ?
11:16 dinsdale07 depends - as I said low traffic websites in the open. maybe a few hits per hour.
11:16 PanTerra ok
11:17 dinsdale07 I do reboot it regularly though as well - I have clamAV two which crashes often...
11:17 dinsdale07 /stwo/too
11:17 PanTerra I`m working on the moment on this new intranet and I need to put in a search engine like lucene
11:17 PanTerra no crashes here from clamav
11:17 PanTerra a had a uptime of 200 days
11:18 PanTerra now it is 3 days
11:18 PanTerra buck ups failed
11:18 dinsdale07 I had all these defunc processes running ocupieng memory. they were from clamav,
11:18 PanTerra :s
11:19 HardPhuck is it possible to add a custom class to tt_news image?
11:20 m4rtijn sure
11:20 HardPhuck where
11:20 m4rtijn in the template
11:20 HardPhuck i mean in the singleview
11:20 m4rtijn yes
11:21 m4rtijn just add some <span> or <div> to the template
11:21 HardPhuck to the <img> tag not the wrapped <div> tag
11:21 PanTerra for the users on this intranet I have to create a security model. I want as litle configuration as possible an almost maintenance free :D
11:21 m4rtijn why ?
11:21 m4rtijn u could just use .myclass img { blablablaba }
11:22 HardPhuck because i want clean html
11:22 HardPhuck no extra divs if not absolutely necessary
11:22 XiXora anyone had a problem with tt_news archive before. I need to display ALL my news
11:22 XiXora (or preferably all my news except two latest ones)
11:22 _the_p is there any mechanism in typo3 which generates authenticity of the messages a user sends to typo3?
11:22 XiXora atm i get no news :p
11:23 m4rtijn HardPhuck - then use somethign else to get the img something like .singleview img { {
11:24 HardPhuck can't because i have different types of images
11:24 HardPhuck and the only div wraps them all
11:24 m4rtijn I guess u could change the stdwrap of singleview images..
11:24 m4rtijn check the constant editor
11:24 m4rtijn erm.. object browser I mean
11:25 HardPhuck i'll check it out
11:28 HardPhuck i can get to plugin.tt_news.displaySingle.image
11:29 HardPhuck but if i do this plugin.tt_news.displaySingle.image.typolink.ATagParams = class="test" that doesnt work
11:29 HardPhuck according to manual this is the right syntax
11:30 m4rtijn did u try googling it?
11:30 HardPhuck yes, no luck yet, still searching
11:30 m4rtijn imageLinkWrap ?
11:30 m4rtijn plugin.tt_news.displaySingle.image.imageLinkWrap
11:32 HardPhuck tried that also
11:33 HardPhuck i have even a bigger impossibility here :)
11:33 HardPhuck try adding a class to the back link in the single view of tt_news :)
11:33 HardPhuck simply cant be done :)
11:33 HardPhuck without wrapping
11:34 Zimmo I was trying to update the WysiwygPlugin got this error: Read error on tarfile (missing data) 'data/TWiki/WysiwygPlugin.txt' at offset unknown at tools/extender.pl line 684
11:35 Zimmo Any sugestions
11:39 PanTerra have to go
11:39 PanTerra bye
11:40 dinsdale07 cu
11:49 Zimmo I have a nubi quiestion. Where do i set the TWikiVariable if i want a setting to be global?
11:50 Zimmo ups. wrong forum. Sorry.
12:03 Phlogi m4rtijn: you bought a book about jquery?
12:04 Denyerec Hey Phlogi, void, martijn
12:04 Phlogi hi Denyerec
12:05 void hi Denyerec
12:05 Phlogi hi void
12:25 XiXora ooh
12:35 XiXora suppose best to keep asking at different times a day :p
12:35 XiXora anyone know hwo to get archive to list all news items (tt_news)
12:51 Denyerec XiXora if i wasn't being hassled by the same people I'd take it apart and fix it :(
12:52 XiXora lol :p
12:52 XiXora what you gots to do?
13:15 Denyerec the radio site's got some bugs in the request system
13:17 XiXora ahh i see
13:20 sledgeas hello
13:32 sledgeas i cannot find what exactly should i add to my template for the login form to work: now it simply reloads the login form, no matter the password correct or not
13:33 sledgeas because the link from here http://typo3.org/documentation/document-library/tutorials/doc_tut_quickstart/0.1.0/view/1/5/#id3973469 to "(please see the Template section on constants for important information on configuring the storage page id "http://typo3.org/doc.0.html?&tx_extrepmgm_pi1[extUid]=491&tx_extrepmgm_pi1[tocEl]=1363&cHash=2c41424565" for the login form)"
13:33 sledgeas the second link does not work
13:43 sledgeas ok i got that (needed only constant for template: setting styles.content.loginform.pid = 16)
13:43 sledgeas but login form still reloads itself and no login happens
13:43 sledgeas all /var/log/apache2|mysql are empty for that..
13:50 sledgeas ok, i did it (i had to go through constants editor in template, and not pasting into constants that line, strange..)
13:51 ries morning
14:00 LrdWr Hi
14:02 LrdWr I would like to add an directory after the domain like www.domain.com/test/ , but a typo3 shows up. I've already changed the .htaccess file. But still no differents.
14:02 LrdWr What to do?
14:03 adamspi you need to call some file in this directory, without which typo3 will get into action...
14:04 LrdWr Ok, thanks i will give it a try
14:06 LrdWr Adamspi, do you also know where i can find a manual to insert a php page manually? It should be possible, i've read it once. but i can't recall it
14:16 adamspi manually?
14:16 adamspi How exactly uou would like to insert?
14:19 LrdWr Yeah like this; if i add a page normally you only could insert plain text instead of that i would like to add something like <? somephpcode ?>
14:19 LrdWr So i can add some home written php to a site in typo3
14:20 adamspi see if you can use config.includeLibrary
14:21 adamspi this is available in tsref... in casestory section...
14:21 LrdWr Thanks, i will give a search on that specific subject. At least i've got a start now.
14:25 Phlogi LrdWr: or use php content extension
14:25 LrdWr That sounds great.. an php extension :)
14:25 LrdWr Give it a go..
14:27 LrdWr Can i help you guys with something?
14:52 HardPhuck guys, how can i access the backtolist link in TS
14:57 HardPhuck plugin.tt_news.hscBackLink.stdWrap.substring = 10
14:57 HardPhuck this does not work
15:59 adamspi How do I display user's image after they login using new_loginbox ?
15:59 adamspi I have sr_feuser_register which has image field...
16:13 HardPhuck this ATagParams never works :D
16:14 HardPhuck anyone has experience with HTMLparser?
16:33 HardPhuck plugin.tt_news.newsFiles.stdWrap.HTMLparser.tags.a.fixAttrib.class.set = test
16:33 HardPhuck this deletes me the anchor tag instead giving it a class
17:44 jochenh (obscured mail address) have a question: how could I stop generating page after an error?
17:47 chefan error trapping with die()
17:47 chefan you should be careful though to check in the error trapping where you have the error
17:48 chefan there might be things you want to finish first before having the script die
17:49 jochenh I have a die() in this script after a refresh it generates this page new
17:49 chefan jochenh: check out set_error_handler
17:53 jochenh is set_error_handler an typo3 or an php3 configuration?
17:54 chefan that's a php function
17:54 chefan enabling you to define error handling functions
17:56 jochenh i think my problem is in typo3.It shows me an "Page is being generated.If this message does not disappear within 30 seconds, please reload. " screen and i dont want it to do this.
17:58 chefan so you get an error in a plugin/extension and a die() at that point is too late since part of the page gets generated anyway?
17:59 chefan you could try set up an error handling function causing the script to die in an early stage using a hook
18:00 chefan if that still doesn't work, you could create an outputbuffer in an early hook and release it later. if you ge an error in between, you let the error handling silently drop the buffer and die in peace
18:01 chefan on the other hand, why would you want to hide the fact that there was an error? it is more manly to take errors like they occur
18:03 jochenh I really dont get an error i make an print() in a extension,sorry.
18:05 jochenh After print() i have die().When I do a refresh fast after it then i get this "Page is being generated.If this message does not disappear within 30 seconds, please reload." message.
18:06 chefan what kind of extension?
18:07 chefan it is quite weird using direct print()ing and echo()ing in typo3. usually you pass content to the typo3 and leave the output to the rendering process
18:14 jochenh yes i want to do a ajax request within the same Extension.
18:15 jochenh When I dont do a print and die it loads all content of the page, but i dont need any other content.
18:16 chefan i advise you to check out the frontend rendering process explained
18:16 chefan graphical documentation about how typo3 renders a page
18:16 chefan might help you to understand why direct outputting is generally a bad idea
18:18 jochenh do you understand why I have to do direct outputting?
18:22 chefan well
18:22 chefan i think i understand why you think you have to use direct output
18:23 chefan i am not sure though if you really do
18:23 chefan you want to use the output of that particular page as ajax result set?
18:24 jochenh yes
18:26 chefan tried out xajax?
18:27 jochenh Why do you think xajax is solving this problem?
18:33 chefan afaik (i am not 100% sure) it has documented tools to integrate the server side of the ajax communication
18:34 chefan as i said, check out the frontend rendering process
18:34 chefan if you go through all that crap just to spit out a bit of json or xml data, you get horrible performance and use all the benefits of ajax
18:35 jochenh yes this is my problem...
18:36 chefan what do you need from typo3 for the data result?
18:38 jochenh DB,Paths
18:38 jochenh evt. others
18:41 chefan well
18:41 chefan if you don't find anything usefull in the xajax extension doc, you might consider this way:
18:42 chefan check out the frontend rendering process, and look for the minimum data you need, let typo3 fetch it
18:42 chefan then get the earliest hook in the process you can find and insert your ajax functionality there
18:43 chefan after outputting your result, let the script die
18:43 jochenh could i do all this within a extension?
18:43 chefan before even beginning to rendering all the stuff you don't need
18:44 chefan you would do that in a class you hook into the typo3 rendering process
18:44 chefan yes, you can
18:44 jochenh how can a put this class into this processß
18:44 jochenh ?
18:45 chefan read the documentation about hooks
18:45 chefan there are a couple of access points to typo3
18:45 chefan you can configure typo3 to call user functions there
18:46 chefan technically, that makes typo3 interrupt the rendering process, execute the user function and thereafter continue it's work
18:46 chefan obviously you can interrupt the process there too
18:49 chefan but before doing that, you might want to check out xajax_tutor
18:50 chefan an example extension using (x)ajax
18:52 jochenh okay, thank you for your support and sorry about my bad english :-)
18:58 chefan jochenh: no problem
18:58 chefan it's not so bad, if you don't get anything, ask me in german, but use the query in that case ;) some don't take non english too wel in here
18:58 chefan well
19:00 jochenh yes I think they only want to read everything to get more good knowledge ;-)
19:02 jochenh i'm afk, i write if I have any problems, thanks up to this point.
19:38 rodi_ hi there, I want to generate a link using the typolink function within a userFunc, getting a normal realurl processed link. I have to initialize a local cObj and I am wondering why there is no realurl support at this point. What do I have to initialize additional to the local cObj?
22:10 trac Hi, i need help with the installation of jscookmenu ext for typo. The menu does not show up. Anyone can help?

Technologies


R. van Twisk 2004-2010 R. van Twisk / Avenida Diego de Almagro No: 22-47 y Juan Severino / Quito Ecuador
callto://r.vanTwisk | Support: +1 (803) 4263350

© 2012 R. van Twisk. All Rights Reserved.