Search the website and IRC logs

#TYPO3 IRC log from : Tuesday 9 October 2007

Year: 2007 2008 2009 2010 2011 2012
Month: 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
01:44 num000 voidus still here?
01:44 voidus =CK
01:44 voidus yes
01:45 Denyerec PEW PEW LAZERS!
01:46 voidus what?
01:46 Denyerec Nevermind.
01:46 Denyerec :)
01:47 voidus is "pew" a onomatopoeia ? :)
01:48 voidus (yes, i did copy that word ^^ from a vocabulary)
01:49 Denyerec Hehe
01:49 Denyerec yes it is
01:50 Denyerec and I think "dictionary" is a better word for the thing you looked it up in.
01:50 Denyerec Dare I ask...
01:50 Denyerec What is "onomatopoeia" in russian? :D
01:50 voidus 72C:>?>4@060=85
01:51 voidus (zwukopodrazhanie)
01:51 Denyerec ROOOOOOOFL
01:51 Denyerec I have *NO* idea how to start pronouncing that :D
01:51 Denyerec Unless what you write in brackets is a guide
01:52 Denyerec Do you have a cyrillic keyboard?
01:52 voidus yes
01:52 Denyerec wow
01:52 voidus isn't it strange? :)
01:52 Denyerec Hehe, that seems to strange to me, yet to you QWERTY is probably odd :)
01:53 voidus any key have 2 means
01:53 Denyerec That's cool
01:53 voidus q = 9, w = F, etc
01:53 Denyerec ah I see
01:53 Denyerec you have a few more letters though
01:53 Denyerec Where do you hide those? :)
01:54 voidus where you have [];'\,.
01:55 voidus digits also have 2 means depending on language..
01:55 Denyerec Yikes.
01:55 Denyerec The more I learn about Russian, Polish and Mandarin...
01:55 Denyerec ...the easier English seems :D
01:55 voidus hm.. i have a question)
01:56 voidus how do you program on english and don't get crazy?
01:56 voidus you speak and write programs on the same language...
01:56 Denyerec I would hardly call Typoscript english! ;)
01:57 Denyerec I don't know really... I have never thought about it.
01:57 voidus anyway... <textarea>.. config., page = PAGE..
01:58 voidus we have some programming languages that use cyrillic as symbols. and it's awful and unusable
01:58 Denyerec But hard for the CIA to read ;)
01:58 voidus haha...
01:59 voidus now it's popular in the it-world in russia to speak an "albanian" language :)
02:00 voidus it's not really albanian, but distorted russian
02:00 voidus if it was english, it would be something like...
02:00 Denyerec I suppose that is like american kids speaking "gangsta" :)
02:01 Denyerec or perhaps a Frenchman speaking Swiss french ?
02:01 num000 how can i ask if a post is doine
02:01 num000 in my extension?
02:01 voidus Denyerec: dunno. the rule is to change all letters and still be understandible
02:02 voidus Denyerec: hm.. i think we should introduce #typo3-offtopic :)
02:02 Denyerec Heheh true :)
02:02 Denyerec or #LearnRussian
02:02 Denyerec ;)
02:02 voidus it exist :) just #russian :)
02:03 Denyerec Wow there's an #english too
02:03 voidus num000: is done?
02:04 voidus Denyerec: i see)
02:04 num000 no
02:04 num000 i'm looking for something like postvars['submitted']
02:04 num000 which i can ask if the page has been submittet
02:05 num000 something like submittet == 1
02:05 num000 or whatever
02:05 num000 documentation ;(
02:05 voidus you just should do it yourself
02:05 num000 yes, but i don't know which variable i could ask for this?
02:06 voidus any. introduce new <input type="hidden" or make <input type="submit" name="submitted"
02:06 num000 ahh
02:06 voidus or, better, name="tx_yourapp[submitted]"
02:12 voidus Denyerec: i forget example of albanian) documentation = "dogumindation", "typoscript" = "typoscibt", etc)
02:12 num000 i've already a submit button, can i ask this for it
02:12 voidus num000: yes. just set a name of it proberly
02:12 num000 is it returning a 1 when submittet?
02:13 voidus num000: no, it's returning it's value
02:13 num000 the submit button?
02:13 voidus yes
02:13 num000 what value can it return?
02:14 num000 the value field?
02:14 voidus it's name... string "submit" or what in it's attribute "value"
02:15 num000 will this work then
02:15 num000 if( $this->piVars['submittet'] == 'Send SMS' )
02:17 num000 this unfortunately doesn't work
02:17 voidus i think, if ($this->piVars['submittet']) is enough
02:18 num000 but then it needs to return a bool variable like 1 or 0
02:18 num000 which you sait it wouldn't, it returns his value
02:19 voidus no
02:19 num000 both do not work
02:19 voidus if () argument can be anything
02:19 voidus cause php is not statically typed lang
02:20 num000 i see, so anything returned is ok.
02:20 voidus yes
02:20 num000 but unfortunately i can not get this value again
02:20 voidus it's also useful if you have several languages..
02:20 voidus num000: re-check input name
02:21 num000 yes i'll
02:21 num000 ;)
02:22 num000 of course again pi1 problem
02:23 num000 strange, the date i get is always the unix time beginning 1970
02:23 num000 when i call time()
02:23 num000 what does it give me, the unixtime since 1970
02:24 voidus yes
02:24 num000 so the actual time
02:24 num000 the time now it is?
02:24 voidus you need to get a string?
02:24 num000 i would like to write it into the database
02:24 num000 'tstamp'=>time(),
02:24 num000 which i do like this
02:24 num000 ve_guestbook does it aswell
02:24 voidus there is unix time stored in db
02:25 voidus all is ok :)
02:25 num000 but unfortunately when i read it again out, it gives me the time 1970 01:00
02:25 num000 ;)
02:25 voidus how do you read it?
02:25 num000 date('d/m/Y H:i', $row["sdate"] );
02:26 num000 ohh
02:26 num000 sdate is not the field i was writing to
02:26 num000 god
02:28 num000 voidus is there a way how to have database selected fields sort by date?
02:28 voidus num000: ORDER BY $date_field DESC
02:29 num000 ok
02:29 num000 thank you voidus
02:29 voidus exec_SELECTquery also have an argument $orderby
02:30 num000 is there a documentation to exec_SELECTquery?
02:31 voidus yes... if you install extdeveval
02:31 num000 ohh, what is this extdeveval
02:31 Denyerec Goodnight gents!
02:31 num000 Denyerec good night
02:31 voidus good night denyed erec :)
02:32 voidus *also = always
02:32 Denyerec well
02:33 Denyerec you've seen my girlfriend, right ?
02:33 Denyerec ;)
02:33 voidus no
02:33 voidus i didn't )
02:33 Denyerec http://www.denyerec.co.uk/gallery.php?pic=PertButt
02:34 voidus hm.. could you show another side ? :)
02:35 Denyerec http://www.denyerec.co.uk/gallery.php?pic=JekyllHyde
02:35 Denyerec She has many sides... some not so friendly :)
02:35 voidus :)
02:36 voidus now i am convinced )
02:36 Denyerec Well, I'm off to pay her a visit :)
02:36 Denyerec Gnight chaps!
07:20 tsrepadmin good morning #typo3!!!
09:38 bauschan hi all
09:49 silithlas hi, I need help configuring a printable version of my pages, anybody can help? Thanks :)
09:50 silithlas I have this in my template : http://pastebin.com/m699f1ac3
09:51 silithlas but then I have the text "this is the printable version", but after the horizontal ruler, nothing, as if styles.content.get returns nothing
09:51 silithlas sorry the good pastebin is : http://pastebin.com/m58b1d42e
10:06 drindt someone knows how i can use a label field with the name from the foreign table? for example 'label' => 'uidfe_group', but he should not print the id e.g. 2 instead the name of them.,, thanks
10:12 silithlas how comes I do not have plugin.alt.print as available in my template?
10:15 do3mca you didnt install the proper plugin via ext manager?
10:16 silithlas what plugin? according to what I read alt.print is supposed to be included with the core
10:19 do3mca ?
10:19 do3mca i only know it from tx_make_printlink
10:19 do3mca the name "plugin.alt.print" doesnt suggest either that its core
10:20 do3mca http://typo3.org/extensions/repository/view/make_printlink/1.5.2/
10:25 silithlas even by installing make_printlink extension I do not have plugin.alt.print in the static of my templates. I have nothing in static window
10:28 do3mca you need to include it in statics
10:28 do3mca template >> edit all >> one of the two select boxes
10:29 do3mca where you find the templates and can click them to the left box
10:30 do3mca "You will still need to either add plugin.alt.print (98) to ?Include static? in your template or create a special template for the print version. "
10:32 do3mca look at this image, maybe you see what i mean
10:32 do3mca http://typo3.org/typo3temp/tx_terdoc/documentscache/d/o/doc_tut_quickstart-0.1.0/docbook/pictures/10000000000001EE0000019308D2B706.png
10:32 silithlas in fact I saw on the web that this plugin is not anymore in static because it is deprecated
10:32 do3mca oh
10:33 do3mca you dont need to use alt.plugin print
10:33 majkinetor hello
10:33 silithlas my problem now is I'm unable to create a printable version of my page... I put in my template : http://pastebin.com/m6c619ba8
10:33 silithlas but then I just have a blank page, as if styles.content.get returns nothing
10:34 do3mca mom
10:37 majkinetor I have a really small and stupid problem.with installation. I hope some quick tip can help me. I installed on my personal server typo3, did 1,2,3 wizard etc... then when it comes to backend administraton username and password, I enter "admin" and "password" but nothing happens, it constantly repeats that user/pass is wrong. Cookies and JS are enabled. What can I do to reset password or anything else...
10:38 do3mca silithlas: where does plugin.alt.print play there?
10:38 elbart majkinetor, sure that it is this combination?
10:39 elbart joh316 was the password i thought
10:39 do3mca thats the install password
10:39 majkinetor i tried that too
10:39 do3mca not the backend one
10:39 silithlas don't bother with plugin.alt.print stuff, this is deprecated, I'm talking of the other issue I have :)
10:39 majkinetor saw it in conf somewhere
10:39 do3mca silithlas: ah!
10:39 elbart ahh.. sure... sry :)
10:39 majkinetor it seems to me that is default Tool pass..
10:39 do3mca majkinetor: did you actually create a user in the 123 frontend?
10:39 majkinetor there is nothing like that
10:40 majkinetor just db
10:40 do3mca majkinetor: there is.
10:40 majkinetor then it says
10:40 majkinetor after that
10:40 majkinetor wait , I will paste
10:40 do3mca please use pastebin
10:40 majkinetor Go to the backend login (username may be: admin, password may be: password.)
10:40 do3mca oh
10:40 majkinetor this is from 1-2-3-GO , go part
10:40 do3mca majkinetor: again, did you create a backend user?
10:40 do3mca or
10:40 do3mca better yet
10:40 majkinetor again, no
10:40 majkinetor i have db inof on 1
10:41 do3mca go to the install tool again
10:41 do3mca disable 123 mode
10:41 majkinetor if to create new db or use old one on 2
10:41 majkinetor import on 3
10:41 do3mca and in menu 1 or 2 you will find something like compare db
10:41 majkinetor then Go said to log in with admin and password
10:41 do3mca theres a point which will allow you to add a backend user
10:41 majkinetor ill check now, just a sec
10:42 do3mca silithlas: back to you
10:42 do3mca iam unsure what the problem is
10:42 do3mca do you see the text in 10.?
10:43 majkinetor listen
10:43 majkinetor i install typo3 first time, db is empy,
10:44 silithlas do3mca, yes I see the text in 10
10:44 majkinetor i start browser
10:44 do3mca silithlas: okay, so 20. is the problem. mh.
10:44 majkinetor pasting first message
10:44 majkinetor Username: Password: Host:
10:44 do3mca thats the *database* login
10:44 majkinetor You have two options: 1: Select an existing EMPTY database: Any existing tables which are used by TYPO3 will be overwritten in Step 3. So make sure this database is empty: [ SELECT DATABASE ]information_schemamysqlpunbbtxptypo3typo31wordpress 2: Create new database (recommended): Enter the desired name of the database here:
10:44 majkinetor 3. Import database
10:44 majkinetor and thats it
10:44 majkinetor where do I create backend user
10:45 majkinetor and if so
10:45 majkinetor why does it say this then:
10:45 majkinetor Apparently you have completed the basic setup of the TYPO3 database.
10:45 majkinetor Now you can choose between these options:
10:45 majkinetor - Go to the frontend pages
10:45 majkinetor - Go to the backend login (username may be: admin, password may be: password.)
10:45 do3mca majkinetor: please *disable* the 123 mode
10:45 majkinetor ok
10:46 majkinetor where to go now ?
10:46 majkinetor 1-10
10:46 do3mca thatll bring you into a large screen which has 1-10 menupoints
10:46 majkinetor ok
10:46 do3mca one of menu 1-3 will allow you to configure the database data. directly below it you will find something name "Compare DB"
10:47 do3mca (and please forgive me, iam remembering this off the top of my head)
10:47 elbart it's point 2
10:47 majkinetor i see compare
10:47 majkinetor it lists tables
10:47 majkinetor that is
10:47 majkinetor sqls to create them\
10:47 majkinetor and there is button Write to database
10:47 elbart and under point 2 is a link: Create "admin" user
10:48 majkinetor aha....
10:48 majkinetor i see it
10:48 majkinetor thx guys a lot
10:48 elbart thanks go to do3mca
10:48 elbart ^^
10:48 majkinetor kind a stupid to be all the way in there...
10:49 elbart but i think if you install typo3 for the first time, a standard user is created
10:49 majkinetor especialy after 1,2,3 wizard where generaly admin account should be set
10:49 do3mca only if you imported the database
10:49 elbart yes
10:49 do3mca the default one from dummy
10:49 do3mca and i think this is not the case, so even if he can login this might not be fun, mh... havent thought of that
10:49 majkinetor i wonder why it doesn't ask for a username and pass like all other CMSs...
10:49 majkinetor in start wizard
10:50 do3mca it does. for the database. :-P
10:50 majkinetor its pretty hard to find it there...\
10:50 elbart :D
10:50 majkinetor I even used search before i came here, for admin, pass and similar
10:50 majkinetor lol
10:51 elbart i was using the dummy package also, thats why i never hat these problems
10:51 elbart *had
10:52 do3mca ah
10:52 do3mca silithlas: try to use 20 < styles.content.get
10:52 do3mca styles.content.get is a CONTENT by itself
10:53 do3mca or: remove 20 = CONTENT
10:54 silithlas do3mca, still does not work :)
10:55 do3mca odd.
10:55 silithlas I tried both 20.content < styles.content.get and 20 < styles.content.get
10:55 do3mca http://argabuthon.ukeer.de/typo3/?type=98
10:56 silithlas strange because styles.content.get works, I have it in my template
10:56 Phlogi num000: ping
10:56 silithlas my page is there for example : http://www.mindenice.fr/index.php?id=10&type=98
10:56 do3mca silithlas: did you include something which overwrites typenum=98 for you?
10:57 silithlas do3mca, don't think so, as I can read the 10 value text
10:57 do3mca point
10:58 silithlas how can I test if I can put field values there?
10:58 do3mca when you go into template view, theres a little select box in the upper right corner which says "info/modify"
10:59 do3mca make it "typoscript object browser"
10:59 do3mca thatll inflate the TS tree as is for this page
10:59 do3mca browse: setup; OL: ALL
11:00 majkinetor damn
11:00 majkinetor it wont log again
11:00 majkinetor with new user and pass i just created
11:00 majkinetor and I swear that JS and cookies are ON
11:00 majkinetor not from opera and IE
11:00 do3mca that should give you page_print = PAGE with typenum = 98 and 20 should show table/select as childs
11:03 silithlas do3mca, so, my print_page = PAGE has the 10 as TEXT, and the 20 as CONTENT with table = tt_content, select orderby = sorting, where colpos = 0 languagefield = sys_language_uid and typenum=98
11:03 silithlas colpos = 0 ? Is this normal?
11:04 do3mca thats the "Normal" Column
11:04 do3mca i think
11:04 do3mca yes
11:04 majkinetor i just accessed be_users table from mysql client
11:04 majkinetor and did select *
11:04 majkinetor and it shows 0 rows...
11:04 silithlas yes I just checked tt_content and all rows have 0 colpos
11:05 majkinetor whyle the tool shows that user is created...
11:09 pulponair hi
11:09 pulponair there
11:09 pulponair dudes
11:09 silithlas I should say that in my url if I replace type=98 by type=123, the pdf is generated with a blank page, as if it cannot find the content
11:10 do3mca iam mildly irritated
11:10 silithlas oh? :)
11:12 do3mca the behaviour you describe doesnt make sense :)
11:14 majkinetor hmh....
11:14 majkinetor it seems that problem is that be_users is constantly empty
11:14 majkinetor although tool said that it creates user... really strange
11:15 majkinetor can anybody give me be_users row, that can insert manualy ?
11:15 majkinetor since most of the fields are not nullable
11:16 Fanty anyway to make a conditional based on a data field in TS? " temp.data = levelfield:-2,doktype " and only want the typoscript executed if temp = 4
11:38 Fanty cant anyone point me in a direction with this? :/
13:09 janand Hi all
13:10 janand Can anyone tell how to change frontend language?
13:33 alexwx how to get mySQL error?
14:50 pulponair anyone got a snippet arround to rendere a tt_content tuple from within ones own extension?
14:58 pulponair hmm no one?
15:02 Denyerec ?
15:02 Denyerec i just got here, wassup
15:04 wilz hi
15:04 wilz how can I check if an extension is available in another extension ?
15:07 Denyerec at install time ?
15:07 Denyerec or runtime
15:07 num000 hi all
15:08 wilz runtime
15:20 num000 if i wanted to have the database selects ordered in ascending form (date field)
15:20 num000 how do i pass this to exec_SELECTquery
15:21 num000 oder by cdate ASC?
15:22 teppi|work ORDER BY crdate ASC
15:24 num000 $GLOBALS["TYPO3_DB"]->exec_SELECTquery("*", "user_adsms_sentlist", "deleted = 0 AND hidden = 0 AND userid = '$username' ", "ORDER BY crdate ASC");
15:24 num000 this form doesn't work
15:24 Denyerec Anyone done much work with Commerce yet?
15:24 num000 hi Denyerec
15:25 Denyerec hey num
15:46 num000 http://pastebin.com/d63fd8875
15:47 num000 can someone have a look here, i can not get the value for $sms_credits display decremented when a submit has been done
15:48 CocoPops hi I'm having a bit of trouble with the '123' installation. It can't create the typo3 database and I'm sure my connection settings are correct
16:05 CocoPops are there any known issues with the installation tool not using config settings?
16:11 voidus CocoPops: yes
16:11 voidus CocoPops: check that your mysql user have enough rights :)
16:11 CocoPops the user I'm using has all priveleges
16:12 CocoPops i just can't connect to the database through the installation tool
16:12 CocoPops i have phpmyadmin up and running and that connects fine
16:12 CocoPops same username and password
16:15 voidus CocoPops: re-check all...
16:15 num000 voidus hi
16:15 Shaq Hello
16:16 CocoPops would php5 be the problem?
16:16 Shaq Are there some people from the Netherlands who can translate me a few sentances from english oder german in dutch ?
16:16 voidus CocoPops: no.
16:16 voidus num000: hi
16:17 CocoPops voidus: when i first entered the user/pass/host it said the localconf.php file wasn't writeable. So I made it writeable but even then the install tool doen't write anything to it
16:18 voidus CocoPops: it should... read INSTALL.txt and set needed rights. then re-enter 123 wizard
16:19 voidus Shaq: there was... anyway, you can ask on #dutch, i think :)
16:19 CocoPops voidus: I have done everything in INSTALL.txt as well, other directories writeable, changed symbolic link
16:20 Shaq voidus i will try
16:26 num000 can someone have a look into this http://pastebin.com/d63fd8875 the variable $sms_credits is decremented but the decremented value is not shown when this page is submittet, i need to reload the page in order to have it shown correctly
16:31 ries num000: you decrement after the marker has been added, I think you need to do it before...
16:32 num000 ries mhh
16:35 num000 ries i think there is no other way then having it with this problem
16:35 daBONDi Hi i have a Problem , IIS + NTLM + SSL, the Admin Panel shows typo3 cannot find some files "fileadmin/template/main.css" is not a file (non-uploads/.. resource, did not exist).
16:35 num000 if i place it above the marker, then it will be decremented in anyway
16:36 ries num000: why? just decrement before you assign?
16:36 daBONDi PHP 4.6 typo3 4.1.2
16:36 num000 but i want it to be decremented only if the page was submittet
16:37 ries num000: first process your data, then assign it to markers...
16:37 ries so first process your submit..
16:37 ries then assign data to markers
16:37 daBONDi the file exists, i tripplecheck the ntfssecurity since 2 Days, i use also ntfilmone to check it, typo3 backend works, when i open the main.css manualy over browser and over the webserver with the same security it opens normaly
16:37 num000 ries, ahh i see,
16:38 ries daBcheck user permissions on the file?
16:40 pulponair i just wonder if there is an easier way to access a certain flexform field from within an itemProcFunc execpt for traversing $config['row']['piflexform']
16:40 daBONDi yeah did it
16:41 daBONDi since 2 Days :D
16:41 daBONDi i can open the File over Browser with the same Security Token from typo3 bzw. with the same User where it now works
16:42 daBONDi im searching with ntfilemon for accses denied, don't become anything
16:42 daBONDi it looks like with the user Security it don't look for the file
16:43 daBONDi upps
16:43 daBONDi my english sucks :D
16:43 daBONDi it seems typo3 don't look or accses the template files with the user
16:43 daBONDi with Higher rights it looks for the file
16:44 daBONDi try also to kill all ntfs securty with "All Users" Full Right
16:44 daBONDi its possilbe to see if the php isapi Module try to accses the file ?
16:45 daBONDi i got also other erros
16:45 daBONDi typo3/sysext/cms/tslib/media/scripts/tmenu_layers.php" is not a file (non-uploads/.. resource, did not exist).
16:45 daBONDi typo3/sysext/css_styled_content/pi1/class.tx_cssstyledcontent_pi1.php" is not a file (non-uploads/.. resource, did not exist
16:46 daBONDi and the main.css and main.html as template
16:46 daBONDi Backend works with the same user
16:46 daBONDi ohh i have php version 4.4.4.4.
16:47 daBONDi w2k3 + sp2 iis 6.0
16:47 daBONDi try it with a complete new site
16:47 daBONDi same thing
16:47 daBONDi issue with Basic + NTLM + SSL Auth ?
16:48 daBONDi and when i surf it with Higer Rights, the site got cached and i can view it with lower rights correctly because of cache
16:49 daBONDi cache = typo3 site cache :D
16:49 daBONDi not the browser one, tripple checked this also
16:51 ries daBONDi: can you upgrade from w2k3 to Linux ? :D
16:51 ries just kidding...
16:51 daBONDi :D
16:51 daBONDi sorry :D
16:51 daBONDi no
16:51 ries may be the tool reports it wrong?
16:51 daBONDi but with the lower rights user the site goes white
16:51 daBONDi with higher rights it works
16:52 daBONDi looks like it doesn't render it
16:52 daBONDi i checked php security also
16:52 daBONDi a simple hello world template works :D
16:52 daBONDi but a also simple html template should also work
16:53 daBONDi and no accses denied with ntfilemon at the folders
16:53 daBONDi so it looks like with the lower userright typo3 or php don't look after the file
16:54 daBONDi ore with the worng path
16:54 daBONDi -e :D
16:54 daBONDi is some debugging log aviable in typo3
16:55 daBONDi looks like something of that http://bugs.typo3.org/view.php?id=18
16:56 daBONDi mhh i have other typo3 sites running on it without problems
16:56 rTi_ hello. i am pretty new to ext development. so i used the kickstarter to get started. now i just wonder why the styles in pi1/static/setup.txt (there was a sample style generated in) are not applied to a page using my pi1. any hints?
16:56 daBONDi but there is no basic or ntlm on it
17:01 rTi_ do you have no idea or is the question too dumb? :)
17:01 daBONDi :D
17:01 daBONDi sorry
17:02 daBONDi i have also no idea with typo3 plugin development
17:03 rTi_ ok, thanks for the reply ^^
17:04 ries rTi_: did you add the static plugin to your installation?
17:05 rTi_ i think not. because i do not really know what you mean...
17:05 rTi_ how do i do that?
17:06 ries rTi_: add the static template to your template like with other extensions (tt_news for example)
17:07 rTi_ ries: great! thanks. know i know what those former strange static templates are for. thanks a lot!
17:07 ries hehehehe... that's what they are for :D
17:08 daBONDi any idea for my issue
17:08 pulponair hmmm stranges xml2array issues over here when parsing a simple flexform
17:12 daBONDi can it be this http://bugs.typo3.org/view.php?id=6158
17:12 elbart re :)
17:13 daBONDi hi
17:13 daBONDi have some issue with iis 6.0 NTLM + SSL
17:14 daBONDi typo3 4.1.2 php 4.4.4.4
17:14 daBONDi white pages with lower user rights
17:14 daBONDi with higher user rights it works
17:14 ries daBONDi: that was a problem with symlinks or something... there was a patch, try it :)
17:14 daBONDi got erros something like this "typo3/sysext/cms/tslib/media/scripts/tmenu_layers.php" is not a file (non-uploads/.. resource, did not exist).
17:15 daBONDi yeah ries symlink :(
17:15 daBONDi seach in the net since 2 days
17:15 daBONDi :D
17:15 daBONDi and checking awesome logfiles
17:15 daBONDi :D
17:16 daBONDi get blinded with text :-)
17:16 daBONDi all looks like it is an ntfs security issue
17:17 daBONDi but it isn't one, i try it also with Everyone Full Rights the complete typo3 folder :D
17:18 daBONDi someone got the same issue
17:18 daBONDi he reinstall the hole think
17:18 daBONDi :D
17:18 daBONDi but that is no solution
17:19 daBONDi is it posible in php to see alle the files he open and close ?
17:19 daBONDi php isapi plugin
17:20 daBONDi can i try php 5.x without destroying the other sites ?
17:20 pulponair could anyone gimme a hand on that xml2array issue please: make xml2array($row['pi_flexform'] on any tt_content record that consist of a flexform e.g.: a tt_news pi
17:32 pulponair FUCK!
17:33 pulponair that wasnt related to xml2array but to t3lib_div::Debug which seems to have difficulties rendering neested arrays
18:02 daBONDi anyone how have typo3 on IIS 6.0 ?
18:03 Boonkerz yes
18:03 daBONDi i got an ntfs security issue
18:03 daBONDi i have ntlm +basic + ssl on
18:03 daBONDi on a lower right user the page going white
18:03 daBONDi on an higher right user the page works
18:03 daBONDi got this error in admin panel
18:04 daBONDi typo3/sysext/css_styled_content/pi1/class.tx_cssstyledcontent_pi1.php" is not a file (non-uploads/.. resource, did not exist).
18:04 daBONDi 4 of them
18:04 daBONDi i tribble check ntfs sec on this folder since 2days
18:04 daBONDi i givem full rights for everyone
18:04 daBONDi but it dont work
18:04 daBONDi im using php 4.4.4 typo 4.1.2
18:04 daBONDi any idea ?
18:05 daBONDi have php in an php folder with mapped systempath
18:05 daBONDi have other sites running on the same server but with anonymous and they worked
18:05 Boonkerz sorry
18:05 daBONDi have you some issue with iis 6.0 installation ?
18:06 daBONDi that you find out ?
18:06 Boonkerz no i have upload ist and it work
18:06 Boonkerz but with php version 5
18:06 Boonkerz it
18:06 daBONDi yeah i try php 5 before
18:06 daBONDi but all sites go white after that :D
18:06 Boonkerz and the same?
18:06 Boonkerz you must use isapi
18:06 daBONDi i use isapi
18:07 Boonkerz ok
18:07 daBONDi i but it in the webservice ext
18:07 daBONDi then map in folders the .php and the isapi ddl
18:07 daBONDi something i forgot ?
18:07 Boonkerz i think no
18:08 Boonkerz and when you try a phpinfo()
18:08 Boonkerz you have an white site?
18:08 daBONDi now i reverse to 4.4.4 and the other sites working now
18:08 daBONDi yeah
18:08 daBONDi with php 5.2.1
18:08 daBONDi sorry 5.2.4
18:08 daBONDi last version
18:08 daBONDi but with no html code
18:08 daBONDi the iis retourn no data
18:09 daBONDi i have no clue
18:09 daBONDi the lower right user can open the html file the script file and so on
18:09 Boonkerz hm
18:09 daBONDi where i got the errors in php admin and a white site
18:09 daBONDi :D
18:09 daBONDi i looking for accses denied with ntfilmon
18:10 daBONDi tracing with the isa tools
18:10 daBONDi but i did'nt find anything
18:10 daBONDi no accses denied or something else
18:10 Boonkerz when you exec php5.exe it work on server?
18:11 Boonkerz php.exe in php 5 installation
18:11 daBONDi the installation is offline not using
18:11 daBONDi only a folder
18:12 daBONDi staring php.exe from php5 folder i got "Warning unable to initalize module" Starting with admin rights
18:12 daBONDi must i declare something on the server for it ?
18:12 Boonkerz no i think you have an path problem
18:13 daBONDi yeah
18:13 daBONDi the current loaded php is php 4.4.4.4
18:13 Boonkerz yes
18:13 Boonkerz in your envroiment settings from server
18:13 daBONDi did you know some issue when i try to get php 5 to running
18:13 daBONDi with typo3
18:14 daBONDi i give it a try again
18:14 daBONDi givme a minute
18:14 Boonkerz you must work with php 5
18:14 daBONDi ok
18:14 daBONDi i try to setup it and run the php.exe again
18:14 daBONDi pls stay :-)
18:15 daBONDi annything i must edit on the default php
18:15 daBONDi n
18:15 daBONDi ini
18:15 daBONDi :D
18:21 daBONDi ok resseting know
18:21 daBONDi hope the sites working :D
18:22 daBONDi know got white pages
18:22 daBONDi with now HTML code
18:22 daBONDi damn
18:24 daBONDi ok when i start PHP
18:24 daBONDi it shows nothing and i can enter code :D
18:24 daBONDi Boonkerz alive ? :D
18:25 Boonkerz yes this is right
18:25 daBONDi :D
18:25 daBONDi i got white pages on the typo sites the work before
18:26 daBONDi must i set an doc root ?
18:26 daBONDi in php ini ?
18:27 daBONDi any ideas ?
18:27 daBONDi why the typo sites don't work with php 5
18:29 Boonkerz no
18:29 Boonkerz only unzip isapi
18:29 Boonkerz and it work
18:29 daBONDi i unzip the complete folder to a new directory
18:29 daBONDi and set the php5isapi.dll in iis for all sites
18:30 daBONDi the new directory calleed with the same name as the old one c:\php :D
18:32 Boonkerz yes right
18:32 daBONDi must i define an doc_root ?
18:32 daBONDi in php ini
18:32 Boonkerz no
18:32 Boonkerz have you an file info.php
18:32 Boonkerz with <?php phpinfo(); ?>
18:32 Boonkerz and when you try this white site?
18:33 daBONDi yeah php is working
18:33 daBONDi with php info
18:34 daBONDi Configuration File (php.ini) Path C:\WINDOWS
18:34 daBONDi Loaded Configuration File C:\php\php.ini
18:34 daBONDi is this ok ?
18:34 daBONDi c:\php\php.ini should be the right one
18:35 daBONDi don't have any php at c:\Windows C:
18:35 daBONDi :D
18:35 daBONDi backend for all 2 sites also don't work
18:36 daBONDi mhh with nt filmone it seems like he read the php files
18:45 daBONDi is mysql support compiled within the php5 win32 zip ?
18:50 daBONDi yeah install tool works now
18:51 Denyerec I love holding pages.
18:51 Denyerec So simple and uncomplicated.
18:51 Denyerec http://www.gracematernity.co.uk/
18:54 pulponair any hints on how to rendere a tt_content tupple from within ones own extension
19:00 daBONDi thx boonkerz now php 5 WORKING :D
19:01 Boonkerz hehe
19:01 daBONDi <-- Dumpass got an typo in php.ini
19:01 Boonkerz hehe
19:01 Boonkerz so cinema :)
19:01 daBONDi only iwi image catalog working but after updating the plugin its working
19:01 daBONDi so ok now i try to fix the error that what i came from in the channel :D
19:01 Boonkerz back at 21:00
19:02 daBONDi NTLM + SSL with IIS and typo3 :D
19:02 Boonkerz back at 22:00
19:02 Boonkerz daBONDi, good luck for all other stuff :) imagemagick
19:02 Boonkerz :)
19:02 daBONDi :D
19:02 daBONDi yeah the error exists
19:02 daBONDi so php 5 update don't take me to an succsess
19:02 daBONDi :(
19:03 daBONDi this will be an looong night :(
19:06 daBONDi someone how have a typo3 installation with IIS 6.0 + Basic + NTLM + SSL ?
19:09 uriahheep ...on a site with only two different languages, how can i make a menu link that directs to the alternate language? (i.e. the path changes depending on the language you're currently in)
19:10 daBONDi You have 2 different Siteroots in typo3 ?
19:16 ries anybody know the name of teh API to starte some info in teh database?
19:17 uriahheep daBONDi: nope, i'm going to use the same siteroot
19:17 daBONDi You set the Content for the Other Language on the same sites ?
19:17 daBONDi ohh
19:17 daBONDi know i unterstand
19:18 daBONDi index.php?L=<LanguageID>
19:18 daBONDi :D
19:18 daBONDi 0 = Default Langue
19:18 daBONDi i think you make ID 1 :D
19:19 daBONDi is this what you have looking for uriahheep ?
19:22 elbart is it possible to access images of the page-properties with the gmenu, so that you can render this images into a menu?
19:22 daBONDi i think so
19:22 daBONDi you must at that image to the page properties
19:22 daBONDi make it a year ago
19:23 daBONDi but don't know how :D
19:23 elbart file.import.field = media
19:23 elbart file.import = uploads/media/
19:23 daBONDi Under Page Properties > Files ad the file
19:23 daBONDi and use elbarts code ^^
19:23 elbart yes thats clear.. but how to use them in the GMENU
19:24 daBONDi add the picture in the gmenu
19:25 daBONDi 5=IMAGE
19:25 daBONDi 5.file = file.import.field=media ?
19:25 daBONDi 5.file = file.import.field :-)
19:25 daBONDi something like this
19:25 daBONDi unter the gmenu
19:25 daBONDi i have here an sample in a book
19:25 elbart http://www.typo3wizard.com/de/snippets/cool-stuff-typoscript/einfache-bildergalerie-aus-dem-media-feld.html -> this looks good :)
19:26 daBONDi ohh german ?
19:26 daBONDi :D
19:26 daBONDi Galileo Computing > Einstig in Typo3
19:26 elbart yes
19:26 elbart i don't have it here
19:27 daBONDi should i type it in here 20 lines :D
19:27 elbart no
19:28 daBONDi ok :D
19:28 elbart the question was only if it is possible
19:28 daBONDi ok
19:28 elbart later more... perhaps :P
19:28 daBONDi :D
19:29 flo hi guys
19:30 daBONDi << Need Help NTFS Security Issue Typo 4.21 php 5.2.4 IIS 6.0 with NTLM + SSL, White Pages > Admin Panel Error : typo3/sysext/css_styled_content/pi1/class.tx_cssstyledcontent_pi1.php" is not a file (non-uploads/.. resource, did not exist).
19:30 daBONDi NTFS Security is Everyone Full Acsses, so no NTFS issue
19:31 daBONDi and File exists :-)
19:32 flo does non-uploads exist?
19:32 daBONDi No Accses Denied Errors in NTFILEMON
19:32 daBONDi ?
19:32 flo ??
19:33 daBONDi Where it should Exists ?
19:33 daBONDi php.ini ?
19:33 flo don't know, your error message says something like this?
19:34 daBONDi Post the complete error message pls
19:34 flo me?
19:34 daBONDi yes :D
19:34 flo o_O
19:34 flo i thought you are haviong that problem
19:34 daBONDi ohh :D
19:35 daBONDi non uploads ?
19:35 daBONDi what you mean with this
19:35 flo daBONDi: Post the complete error message pls
19:35 daBONDi that it is not allowed to upload some file to typo ?
19:35 daBONDi k
19:35 daBONDi "typo3/sysext/css_styled_content/pi1/class.tx_cssstyledcontent_pi1.php" is not a file (non-uploads/.. resource, did not exist).
19:35 daBONDi thats it :d
19:36 daBONDi and some other template files
19:36 flo and what about that? (non-uploads/.. resource, did not exist)
19:36 daBONDi but the ntfs security is right
19:36 daBONDi don't know ?
19:36 daBONDi php, initialize 691 2 and the error
19:37 daBONDi near page generation
19:37 daBONDi as high level user i see the site
19:37 daBONDi as low level user i don't see it
19:37 daBONDi but be works and adminpanel also
19:37 flo already aksed google?
19:37 daBONDi i tribble check the ntfs security on the files and folder
19:37 flo http://www.typo3-jack.net/typo3-english-lists-netfielders-de/8464-typo3-non-uploads-resource-did-not-exist.html maybe?
19:37 daBONDi i work since 3 days on this problem :D , yes i google
19:38 daBONDi see this 1 day ago
19:38 daBONDi but don't match
19:39 daBONDi it works with an Higher level user, so no Issue on PHP
19:43 flo i have a templavoila problem. i want to execute a userfunction defined in DS-Structure in a sectionelement, isn't that possible? anyone experience with something like that?
20:10 gerbenw hello! i've got a question, i will more backend users but it don't work
20:11 gerbenw dutch people here?
20:11 gerbenw hello! i've got a question, i will more backend users but it don't work
20:11 gerbenw have anyone a idea?
20:14 daBONDi sorry
20:15 ries http://www.news.com.au/perthnow/story/0,21598,22492511-5005375,00.html
20:15 gerbenw i've got a little problem with my backend users, i will more backend users . and i've made a usergroup and ad 2 users but this don't work.
20:18 gerbenw have someone of you the same problems?
20:19 gerbenw can someone tell what i did wrong. i've i login with another username i can see everything accept the pagetree
20:19 Denyerec wth ries
20:19 Denyerec I can't make that silly girl turn anti-clockwise if I try!
20:20 ries Denyerec: I just see a naked girl... does she spin?!?! :D
20:20 Denyerec Ooho now I got it
20:20 Denyerec yeah Ries
20:20 Denyerec use a proper browser
20:20 Denyerec :P
20:20 ries I think it means I am very focus oriented in my middle brain.... about 1 meter below my center cortex...
20:20 Denyerec http://www.news.com.au/common/imagedata/0,,5675247,00.gif
20:21 Denyerec Hahaha
20:22 daBONDi is it ok that t3liv_div::getIndpEnv() cannot get the PATH INFO@ Installtool phpinfo
20:22 num000 Denyerec whats this?
20:22 Denyerec [19:17] <ries> http://www.news.com.au/perthnow/story/0,21598,22492511-5005375,00.html
20:27 uriahheep daBONDi: sorry, i went for lunch... yeah, that's what i'm looking for... i'm trying to figure out where to set the default language right now, though
20:27 num000 i need to look if a formfield is empty, can i do this with isset() or has typo3 his own functions for it?
20:38 schani Hello all, is there a extension to handle a TS code as a conten element?
20:41 gerbenw Hello, can someone help me out here. I'm tryin' to add a backend user.. but i can't get them to see the main TREE.. Even when i add the database mounts like i should.
20:41 flo schani: to see it in the content element wizard or that people can add it normally in the pagemodule?
20:42 Shaq gerbenw: Try to look unter Access in the Web-Modul and give the Backend User / Group the right rights
20:42 gerbenw Shaq: Thx, i'll take a look at that.
20:42 Shaq gerbenw: np, good luck
20:43 schani flo: I like to use it via TemplaVoila as a CE
20:45 gerbenw Shaq: i'll take a look and the acces to the group is good
20:45 schani gerbenw: Do you check it recursiv?
20:46 flo schani: just create an fce with one element and put your ts code like here described http://typo3.org/documentation/document-library/tutorials/doc_tut_ftb1/1.0.1/view/1/5/#id2855202
20:47 Shaq gerbenw: Are the DB Mounts set right ?
20:48 flo schani: editing type: typoscript object path
20:48 flo like you would do it with menus for example
20:49 gerbenw Shaq: i'm sorry! i dont have set the group
20:49 gerbenw now it's good
20:49 gerbenw thx shaq
20:49 Shaq np
20:51 uriahheep hrm... how do i add a mapping element to my TO?
20:51 uriahheep never mind :P
20:51 uriahheep found it
20:52 JanAnne I'm trying to add tt_news LATEST and SINGLE on the same page. Somehow it doesn't work, can someone check it out for me pls -> www.sportschooldivago.nl
20:53 schani flo: do you know how i can get the german TV manual?
20:54 schani flo: the doc_tv_de
20:54 flo puh no, but its easy what you want, if you know how to map and create a menu via templavoila
20:55 schani ok thanks
20:55 daBONDi did someone know an issue that include_once don't work with IIS 6.0 + NTLM + SSL ?
20:55 daBONDi got only white pages with low sec users
20:56 daBONDi put ntfs security is ok
20:56 daBONDi but :-)
20:57 d|g hi all
20:57 JanAnne I'm trying to add tt_news LATEST and SINGLE on the same page. Somehow it doesn't work, can someone check it out for me pls -> www.sportschooldivago.nl
21:01 JanAnne Already got it ^^
21:25 JanAnne I've got the following problem: (www.sportschooldivago.nl) when i haven't clicked on a news item yet; the line "geen news_id ingevoerd
21:26 JanAnne " will be shown
21:26 JanAnne (no news_id given)
21:26 JanAnne How do i remove this.
21:33 daBONDi mhh
21:34 daBONDi typo3 don't load me the TEmplate files with a lower rights user on IIS
21:34 daBONDi but when i make the nearly the sam code
21:34 daBONDi in an php test file i can include_once the files without error
21:34 daBONDi so there is no security error or php config error
21:34 daBONDi i think it looks like an bug in the latest typo3
21:35 daBONDi i got this error "fileadmin/template/main.css" is not a file (non-uploads/.. resource, did not exist).
21:35 daBONDi so im reading all the code what it does since this message
21:36 daBONDi and the only one is the Include_Once and some error checking.
21:37 daBONDi is someone here how hase knowledge of the typo3 Code
21:37 daBONDi pagegen.php
21:38 daBONDi and the call TSpagegen::getIncFiles();
21:41 JanAnne I've got the following problem: (www.sportschooldivago.nl) when i haven't clicked on a news item yet; the line "geen news_id ingevoerd
21:41 JanAnne How do i remove this.
21:41 JanAnne (no news_id given)
21:49 JanAnne ;)
21:56 Phlogi num000: ping
21:58 JanAnne Phlogi: Can you help me out here?
21:59 Phlogi JanAnne: who are you? :D wait :)
21:59 JanAnne I've been communicatin' before with ya ;)
21:59 Phlogi JanAnne: about what? =)
21:59 JanAnne I can't figger this thing out on my own :p, i need someone with more experience..
22:00 JanAnne well:
22:00 JanAnne I've got the following problem: (www.sportschooldivago.nl) when i haven't clicked on a news item yet; the line "geen news_id ingevoerd
22:00 Phlogi do you want to just remove that text right? You don't want the best solution? =)
22:00 JanAnne (no news_id given)
22:00 JanAnne How do i remove this.
22:00 JanAnne it's because i'm in the same page..
22:00 Phlogi JanAnne: just search for the string in the locallang and set it empty or &nbsp;
22:00 Phlogi JanAnne: yes i see
22:00 JanAnne okay :p
22:03 uriahheep hrm...
22:04 uriahheep so, i have two languages: the default (english) and french. how would i make a single menu link that changes to french when in the english site, and to english when in the french site
22:04 uriahheep ?
22:09 voidus uriahheep: HMENU with .special = language?
22:10 voidus or even simpler...
22:11 JanAnne Phlogi: Can you give a hint about in what locallang it's located exactly :p.. sorry, just can't find it ANYWHERE.
22:11 pmaidment Hi guys, I am trying to change the paragraph wrap in tt_news to get rid of <p style="margin: 0pt">Some Paragraph</p> and replace with <p>Some Paragraph</p> , does anyone know how to do this?
22:11 JanAnne hi pmaidment
22:11 JanAnne :)
22:11 voidus voidus: [globalVar = GP:L = 1] lib.thistext.typolink.parameter.data = page:id; lib.thistext.typolink.additionalParams = &L=1[else]...
22:11 Phlogi JanAnne: plugin directory ;)
22:11 voidus uriahheep: ::
22:11 pmaidment Hi JanAnne
22:11 JanAnne ye i know Phlogi :p, but what php/*/ file ;)?
22:12 voidus JanAnne: what do you need to change?
22:13 pmaidment I guess I could do Plugin.tt_news.general_stdWrap.parseFunc.nonTypoTagStdWrap.encapsLines.removeWrapping = 1 but it gets rid of paragraphs completely, not the desired effect
22:13 JanAnne voidus: www.sportschooldivago.nl <- just wanting to remove the tag no news_id given (geen news_id ingevoerd).
22:13 uriahheep voidus: hmm, yeah?
22:13 uriahheep voidus: thanks
22:13 pmaidment any ideas?
22:22 Phlogi JanAnne: wait a second
22:24 typo3newbee hi
22:27 num000 Phlogi hi
22:31 typo3newbee does anyone of you know if there is any problem if i launch the my new typo3 website in a subfolder instead of the root folder?
22:32 Phlogi_ JanAnne: did you solve it?
22:32 Phlogi_ JanAnne: typo3conf/ext/tt_news/pi/locallang.xml
22:35 voidus typo3newbee: no problems
22:36 typo3newbee because i'm having a problem to install the extension "Full Backup"
22:36 typo3newbee sorry..actually the installation was no problem..but i can't run the backup
22:37 typo3newbee let me try to install a typo3 forum extension..
22:37 typo3newbee btw which forum you recommend me?
22:37 typo3newbee would you recommend me?
22:38 Phlogi_ num000: ping
22:43 typo3newbee i'm having the same problem..the installation was successfull..but whenever i select the extensions "Tools --> mm_forum" or "Tools --> Full Backup" nothing appears...
22:43 typo3newbee can you tell me where the problem is?
22:45 typo3newbee can anyone help me out with this problem?
22:45 typo3newbee *waiting for help* ^^
22:53 Phlogi_ typo3newbee: still no luck?
22:53 Phlogi_ typo3newbee: I can recommend you mm_forum yes
22:55 num000 Phlogi_ hi
22:55 typo3newbee ok..i managed to solve it...what i need to do was to logout after installation
22:55 typo3newbee :)
22:56 Phlogi_ num000: hey the book is awesome!
22:56 num000 Phlogi_ is it?
22:56 num000 cool
22:59 Phlogi_ jau
22:59 Phlogi_ typo3newbee: still here?
23:02 typo3newbee yes i am
23:03 num000 voidus are you here?
23:04 voidus num000: yes
23:05 num000 voidus i've a problem and i would like to ask if someone could have a look into this extension http://pastebin.com/d6fdb066d
23:05 num000 i would like to change a marker in a function
23:05 num000 but the marker is not processed
23:06 uriahheep voidus: how would i set custom text in a typolink?
23:07 uriahheep i mean, the text that is the actual link?
23:09 voidus in ts or in php code?
23:10 uriahheep voidus: in ts
23:11 voidus 10 = TEXT, 10.value = link text 10.typolink = ..
23:11 uriahheep voidus: basically, i have a <span> that has been mapped with TV, and i just want to insert a link in there, saying "French Version" or "Version Anglaise" depending on what language i'm viewing the page in
23:11 uriahheep ah, nice, thanks
23:15 uriahheep voidus: http://pastebin.ca/731206
23:15 uriahheep voidus: do you see anything wrong in that code?
23:18 wacky_ would you suggest to set the typo3 websites *all in UTF8* ?
23:23 typo3newbee did anyone of you installed the mm_forum extension?
23:24 typo3newbee hellow?
23:32 elbart_ not yet, typo3newbee
23:39 uriahheep voidus: still around? :-/
23:40 Denyerec Typo 5.0 docs scare m
23:40 Denyerec e
23:40 voidus uriahheep: yes
23:40 Denyerec Aspect Oriented Progrmaming ?
23:40 Denyerec I mean... *yikes*
23:40 Denyerec hey voidus
23:40 voidus hey denyer
23:40 uriahheep voidus: ok, cool... did you see my pastebin?
23:41 wacky_ anyone using TemplaVoilá hee ?
23:41 wacky_ s/hee/here
23:41 Denyerec Yep.
23:41 voidus uriahheep: didn't you forget [end]
23:41 Denyerec THough I don't know whether it is a good idea to admit that, yet.
23:42 uriahheep voidus: ah, ok, cool, thanks
23:43 uriahheep voidus: still no change... might it be possible that the problem lies in page:id?
23:47 uriahheep ...how would i make typolink.parameter.data the current page?
23:47 voidus = page:id
23:47 voidus it's a right method
23:49 uriahheep hmm, ok
23:49 wacky_ pid = parent id ?
23:49 uriahheep so, umm... do you see anything else that may be wrong in my TS? ...because it still isn't working
23:51 Denyerec wacky_
23:51 Denyerec yes, I think so
23:56 uriahheep voidus: no idea?
23:57 voidus no
23:57 voidus try the simplest code
23:57 voidus and then make it complex..
23:57 Denyerec Good evening ries
23:58 ries Hye Denyerec
23:59 uriahheep ah, i fixed it partly.

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.