Re: [TYPO3] Template File Reading Problem

2008-06-06 Thread Dmitry Martynenko
Hi Sancar, SS> Hi All, I got questions about template file reading. SS> // Not working code SS> $this->templateFileContent = SS> $this->cObj->fileResource($this->conf['template_file']); You pass wrong params, read about fileResource in TSRef SS> // Working code $this->>templateFileContent =

Re: [TYPO3] Template File Reading Problem

2008-06-06 Thread Dmitry Dulepov [typo3]
Sancar Saran wrote: > // Not working code > $this->templateFileContent = > $this->cObj->fileResource($this->conf['template_file']); > > // Working code > $this->templateFileContent = > file_get_contents($this->conf['template_file']); > > Does anybody have a clue about this. You got absolut

[TYPO3] Template File Reading Problem

2008-06-06 Thread Sancar Saran
Hi All, I got questions about template file reading. // Not working code $this->templateFileContent = $this->cObj->fileResource($this->conf['template_file']); // Working code $this->templateFileContent = file_get_contents($this->conf['template_file']); Does anybody have a clue about this.