[TYPO3-english] Custom Extension Adjustment to 6.2

2018-01-24 Thread Simon Prammer

Hello everyone!

I currently got the task to upgrade a custom made CRM extension named "kbs". It was 
developed on TYPO3 4.7 and using old namespaces in its classes like 
"Tx_Kbs_Service_TestService" etc.

I want to upgrade this whole extension to be able to work properly with our current 
backend version of 6.2. More specifically i want to be able to use the extension builder 
to make changes to this extension which i am currently not able to do on the 6.2 TYPO3 
backend. It is not even an option to select the "kbs" extension in the 
extension builder.

Of course i reasearched the web but I find it very difficult to find 
information what you have to do in order to addapt a custom extension.
So far I assume that i will have to change all the namespaces in all my classes 
manually and maybe watch out for decrecated classes. But I do not really know 
if that is the way to go.

Does anyone have and guidelines, links or tipps for me? I would really 
appreciate it!

Thanks in advance,
Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] translation

2017-05-23 Thread Simon G

Hi

I am currently trying to move a website from 4.XLTS to 7.X LTS. All went well 
except the translation and the home page.
I move the template to fluid and the translation seems broken.

I use the fuild viewheleper to see what is happening :




This always return 0 no matter wich parameter I ams ending. Itried with &L=1, 
&L=2, this always display 0 and the content is displayed in my default language. I 
can see the translations in backend but I can not see them on the website.

I have realurl installed which convert the url perfectly.

Is there anything I am missing ?

Thank you for your help
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Images in powermail emails

2017-04-10 Thread Simon Browning

Hello.

We are trying to add a clients logo to a 'thank you' email from a powermail 
form.

However, when the mail is received the url part is removed, so there is a 
broken image (for example, instead of the src being 
https://mywebsite.com/fileadmin/images/logo.png it is 
https://fileadmin/images/logo/png).

We can see the url is present in the src of the rte, but it stores in the 
database without it.

Does anyone know of a way to get the url to remain, so that the email can 
display the clients logo?

TYPO3 7.6
Powermail 3.13

Thank you

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Problem updating Collection

2016-12-21 Thread Simon Seggewiß

I have solved my issue by adding the following line to my SeoEditForm.html:



And I have added a method in my Seo entity:

public function getIdentifier() {
   return $this->Persistence_Object_Identifier;
}

I don't know if this is the best solution, but this one is working.
If anyone has got a better solution I would be glad to hear from you. :)
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Problem updating Collection

2016-12-16 Thread Simon Seggewiß

Hey guys,

I'm quite new to Typo3 Flow and I have a problem with updating an existing 
collection.
I have got an entity called "Seo" and one called "Image". One Seo entry could 
have multiple Images.

After submitting my form, Flow always wants to create new database entries 
instead of updating the existing ones of the seo entry.
Could anyone please tell me what I am doing wrong?

Here are some code examples:

class Seo {
   /**
* @var Collection
*
* @ORM\OneToMany(mappedBy="seo")
*/
   protected $images;

   public function __construct()
   {
   $this->images = new ArrayCollection();
   }

   /**
* @return Collection
*/
   public function getImages()
   {
   return $this->images;
   }

   /**
* @param Image $image
*/
   public function addImage(Image $image)
   {
   $image->setSeo($this);
   $this->images->add($image);
   }

   /**
* @param mixed $images
*/
   public function setImages(Collection $images)
   {
   foreach ($images as $image) {
   $image->setSeo($this);
   }
   $this->images = $images;
   }

   /**
* @param Image $image
*/
   public function removeImage(Image $image)
   {
   $this->images->removeElement($image);
   }

}



class Image {
   /**
* @var Seo
*
* @ORM\ManyToOne(inversedBy="images")
*/
   protected $seo;


   /**
* @return Seo
*/
   public function getSeo()
   {
   return $this->seo;
   }

   /**
* @param Seo $seo
*/
   public function setSeo($seo)
   {
   $this->seo = $seo;
   }
}


SeoEditForm:

   
   
   
   
   
   
   
   
   
   
   
   
   
   


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: FElogin failed v.7.6

2016-04-14 Thread Simon Köhler

Thank you very much, saved time to find the bug. Worked for me too in the 
password field!
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Templavoila redirecting page view in back end to home page

2016-04-06 Thread Simon Browning

I've got an odd issue, has anyone seen this?

Client has a new server so we were able to properly update to 6.2.

When templavoila is enabled the front end is fine, but in the back end requests 
for any page in Page mode redirect to the home page of the site, and show View 
mode, or basically the front end version of the home page in the back end.  I 
can see the redirect happening in the network tab of chrome, but don't know why 
it is happening.

If we turn off TV, pages in the back end come up as expected (only its a TV 
site, so we can't leave it this way).

Any suggestions would be most appreciated.

Thank you

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Get Data Be_Users through backendUserRepository

2016-02-18 Thread Simon Prammer

I found the solution. I could not extend from the repository but had to inject 
it directly into the needed class =)
Also for anyone else attempting this. Be careful there are two different 
backendUserRepositories. Better check which one works for you!
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Get Data Be_Users through backendUserRepository

2016-02-17 Thread Simon Prammer

Unfortiunately i can not nail down the error too much.
Basically how my process works:

Im inside a certain controller and execute an action side there.
so lets say im in the file testController.php and execute:


//inject Tx_Extbase_Domain_Repository_BackendUserRepository here so i can use 
it later

public function testAction(){

//some code here


$beUserObj = $this->backendUserRepository->findByUid($uid);
//from this point on the rest of the code gets ignored because the process 
jumps out of the function and falls back to the default behaviour of displaying 
the actions template. even die(); or any other code gets completely ignored ofc
}

So is it just not possible to access data via this repository im using? cause 
all i want is get some backendUser information which i can access completely 
fine over my database client.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Get Data Be_Users through backendUserRepository

2016-02-17 Thread Simon Prammer

Hey,

im trying to access and retrieve Data from the be_users table.
I created another repository which extends the 
Tx_Extbase_Domain_Repository_BackendUserRepository.

I cant seem to retrieve any data from it though. My process just gets shut down when i 
try any "findBy" actions on the repository!

Anyone has any experience with this?

Greetings,
Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Integrate Backend as Iframe

2016-02-09 Thread Simon Prammer

I understand your concerns but i still want to try this.

Anyone else having any input? =)
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Integrate Backend as Iframe

2016-02-08 Thread Simon Prammer

Sorry the first sentence should be:
"I am currently trying to integrate the Typo3 Backend/Backend Login into an Iframe 
ON another Website/Backend."

So to make this more clear.
I want to be able to be inside the backend of the website mytestsite.com and on 
one of the sub sites of this backend there is an iframe that displays the 
backend of anotherside.com/typo3.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Integrate Backend as Iframe

2016-02-08 Thread Simon Prammer

Hello lovely people!

I am currently trying to integrate the Typo3 Backend/Backend Login into an 
Iframe of another Website/Backend. Basically i do not want to force the user to 
switch Tab or show a Pop up with the Typo3 Backup when he is already logged 
into my other site.
(Caution: All the following links in the example are dummy links)

The html to test it is just a basic iframe:


Now when i try this, the Typo3 Backend seems to not like this at all. I get the 
following error:
"Load denied by X-Frame-Options: mywebsite.com/typo3/backend.php does not permit 
cross-origin framing."

After some research i found that it SHOULD be possible to manipulate these 
x-frame-options. So i tried to put several code lines into my .htaccess site to 
chance these...sadly without success. None of the following variants worked:

Header set X-Frame-Options "UNSET"
Header always unset X-Frame-Options
Header always append X-Frame-Options ALLOWALL
Header set Access-Control-Allow-Origin: "theotherwebsite.com"

All the other tries to directly disable the x-frame-options with PHP also did 
not lead to success.
If anyone has a solution or a suggestion for this problem i would be very happy 
to hear it!

Thank you for the help =)


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Back end of 7.x slow

2016-01-15 Thread Simon Browning
Nothing custom, pretty vanilla config. 

New server, lots of ram, horsepower, etc.  


What other choke points could there be?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Back end of 7.x slow

2016-01-14 Thread Simon Browning

Does anyone else find the back end of the 7.x versions very slow?  We're using 7.5 
& 7.6 and find the back end almost unbearable.

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Help with inline for each

2015-10-22 Thread Simon Browning

Thanks Richard

isfirst and islast will only give me the space at the beginning or end of the 
list of categories though, won't it? It might work though, as most articles 
won't have more than two or three categories

I haven't been very succesful nesting with inline fluid, below is what I have, 
how would you work the iterator into it?

http://schema.org/Article";>

Thank you

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Help with inline for each

2015-10-22 Thread Simon Browning
I'm trying to figure out how to add a space, comma, or some other delimiter between items in a for each inline statement, can't see how to do it though.  (I'm outputting categories as class names in tx_news for a nice filter).  


Here's what I've got, can anyone help?

{category.title -> f:for(each: newsItem.categories, as: 'category')}

It outputs: category1category2category3, but of course what I'd like is: 
category1 category2 category 3

Thank you

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: How does TER work?

2015-10-22 Thread Simon Browning

Cool.

How do we switch to composer?  Documentation somewhere?

Thanks.

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] How does TER work?

2015-10-22 Thread Simon Browning

Just curious.

In the past one used to be able to select the repo they wanted to use in TER 
settings.  This screen doesn't exist anymore - hasn't in a while I don't think.

Do all the extensions come down from git now?

We've been finding the TER slow to load, in 7.5 at least, and was thinking we 
could set up a local mirror.

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Does the openid extension work with google accounts?

2015-10-20 Thread Simon Browning

You are correct.

Thanks.

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Does the openid extension work with google accounts?

2015-10-19 Thread Simon Browning

I can't seem to make it work.  Using TYPO3 7.5
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] T3ee in Romania: Registration still open!

2015-10-06 Thread Simon Schaufelberger (Schaufi)

Hey,
I will go to T3EE (www.t3ee.org) on 13-14 November in Romania. Flights 
are available from around 30€ which is really cheap (wizzair) and the 
conference itself is also cheap (80€). Anybody wants to join me? If so, 
please let me know. I need your name as a reference for a discount.


Write me directly on my real email address with @gmail.com or just reply 
here and I will get in contact with you.

--
Regards, Schaufi
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Re: Import-export of *.t3d

2015-06-26 Thread Simon Browning

Hi Christian.

Can you message me about this please, I'm simon (at) seethroughweb.com

Thank you

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Import-export of *.t3d

2015-06-26 Thread Simon Browning

Hi Christian.

Can you message me about this please, I'm simon (at) seethroughweb.com

Thank you

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] pt_extlist use daysInYear to sort dates

2015-03-20 Thread Simon Schaufelberger (Schaufi)

hi,
yes, what you write in the fields array will produce direct sql.

here are some examples: 
http://extlist.punkt.de/examples/typo3mysql/grouped-rows-single-column.html


Am 20.03.15 um 08:02 schrieb Sebastian Gärtner:

Hi, Am trying to set up pt_extlist to give me a list sorted and sortable
by the daysInYear (php is using %j in its strftime function)
I dont really get what i can access with the field definition

fields {
 field1 {  table = table1
   field = field1
   isSortable = 1
 }
}

Is this the pure access to one column eg. field or can i access
something that i define in the baseFromClause
Lets say this would work

baseFromClause (
 SELECT
 domain,
 years_paid,
 date_registered,
 date_registered + INTERVAL(YEAR(CURRENT_TIMESTAMP) -
YEAR(date_registered)) + 0 YEAR AS currPeriod,
 date_registered + INTERVAL(YEAR(CURRENT_TIMESTAMP) -
YEAR(date_registered)) + 1 YEAR AS nextPeriod
 )

It works in phpMyAdmin when i add the FROM clause which is not needed in
baseFromClause or am i wrong?

Now my question is can i define nextPeriod as a field and use as a
column. What do i have to do to use it as a column?


--
Regards, Schaufi
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] pt_extlist use daysInYear to sort dates

2015-03-20 Thread Simon Schaufelberger (Schaufi)

basically what happens is that it will produce the following sql:

field1Column {
  table = table1
  field = field1
}

select table1.field1 AS field1Column

field1Column needs to match the fieldIdentifier in the columns block.

Am 20.03.15 um 23:40 schrieb Simon Schaufelberger (Schaufi):

hi,
yes, what you write in the fields array will produce direct sql.

here are some examples:
http://extlist.punkt.de/examples/typo3mysql/grouped-rows-single-column.html

Am 20.03.15 um 08:02 schrieb Sebastian Gärtner:

Hi, Am trying to set up pt_extlist to give me a list sorted and sortable
by the daysInYear (php is using %j in its strftime function)
I dont really get what i can access with the field definition

fields {
 field1 {  table = table1
   field = field1
   isSortable = 1
 }
}

Is this the pure access to one column eg. field or can i access
something that i define in the baseFromClause
Lets say this would work

baseFromClause (
 SELECT
 domain,
 years_paid,
 date_registered,
 date_registered + INTERVAL(YEAR(CURRENT_TIMESTAMP) -
YEAR(date_registered)) + 0 YEAR AS currPeriod,
 date_registered + INTERVAL(YEAR(CURRENT_TIMESTAMP) -
YEAR(date_registered)) + 1 YEAR AS nextPeriod
 )

It works in phpMyAdmin when i add the FROM clause which is not needed in
baseFromClause or am i wrong?

Now my question is can i define nextPeriod as a field and use as a
column. What do i have to do to use it as a column?




--
Regards, Schaufi
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] How to create web page.

2015-03-18 Thread Simon Schaufelberger (Schaufi)
put the whole website in fileadmin somewhere and then use typoscipt to 
make the static website dynamic. Put markers in your html template and 
then code typoscript. Thats the way how it works.


Am 18.03.15 um 16:49 schrieb Toshiro Mifune:

OK, but I did mean - see the source code, create theme (... using html.
php, css ... etc)...


--
Regards, Schaufi
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] [TYPO3-core] TYPO3 CMS Deployment with code and database

2015-03-18 Thread Simon Schaufelberger (Schaufi)

Ja ich spreche deutsch aber wir sind hier im englissprachigen Forum ;)

First of all thank you for your help.

Well, I know how to make backups and restore them but I'm not talking 
about backups, I'm talking about deployments which is a bit different. 
As I said, I don't want find a way how to restore a database and then 
switch to the new one WITHOUT DOWNTIME (during the mysql import the db 
is in a broken state which I want to avoid).


Regards, Schaufi

Am 18.03.2015 um 11:55 schrieb RDE - Gert Redlich:

Simon Schaufelberger (Schaufi) schrieb:

Hallo, ich vermute, Du sprichst Deutsch oder ??

Das mit der Inspiration ist schon richtig "Inspiring people to share"
darum : laß Dich mal inspirieren

Hier steht seit vier/fünf Jahren, wie Du im Prinzip eine komplette
Typo3-Umgebung innnerhalb von 30 Minuten duplizieren kannst.

http://software.rde.de/typo3-4-root-backup.html

und es funktioniert seit Jahren

den/die Shell-Scripte kannst Du nach Belieben aktualisieren und
verändern, auf Wunsch bekommst Du den allerletzen sogar von mir
per Mail


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] [TYPO3-core] TYPO3 CMS Deployment with code and database

2015-03-18 Thread Simon Schaufelberger (Schaufi)

Hello,
I have done a lot of research about deploying a TYPO3 cms website for 
many months already but when it comes to deploying TYPO3 cms, I wish 
there would be more "Inspiring people to share" ;) I hope I can inspire 
people to share a bit now! :D


I want to have a continuous deployment with files and database but 
without deploying "everything" for every release since that's quite a 
lot of data that needs to be copied.


For the files to sync I use git but the database is really difficult 
since the database is changed (only) on the dev machine and then 
exported (with mysqldump) and imported on live again. The big problem 
here is the few seconds of downtime during deployment when the tables 
are deleted and imported again. I would like to have a system without 
any "broken state".


What I'm looking for is a proper way to:
- copy database (export, rename, import)
- import new data into new database with mysql import
- switch database somehow (maybe through symlink change in 
LocalConfiguration.php ?). Another idea: Is there a way to use and 
change environment variables somehow so that I can tell TYPO3 which 
database to use?


PS: I have written a deployment extension that runs with the scheduler 
and performs shell scripts so in the end I want a shell script ;)

--
Regards, Schaufi
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Hosting & 7.0

2015-02-09 Thread Simon Browning

We run mostly our own servers as well - a couple of cpanel servers and a couple 
of virtualmin servers, all running centos though.  We also manage a few sites 
on various other platforms.

Just wondering if there is an "ideal" TYPO3 server model.

Aimon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Hosting & 7.0

2015-02-09 Thread Simon Browning


I see that TYPO3 v7.0 required php 5.5

As centos doesn't come with 5.5 out of the box, and lots of shared hosting 
servers run centos, I'm wondering what the preferred hosting OS is for TYPO3 7.0

What's everyone using?

Thank you

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] ttnews single view image width stuck at 300px

2014-04-06 Thread Simon Child
Thanks, but that still doesn't fix it.

I still get the reduction of the magic image to 300px wide, and the img 
width attribute set to 300, as soon as I enter the image in the rte, even 
before I save it or view it in single view.

It seems it must be a tt_news rte setting (or perhaps because my images are 
coming from dam?).

It doesn't happen if I enter an image into a standard content element using 
the rte, but it does happen when I enter an image into a new item using the 
rte in the list view of the sysfolder.

Any further thoughts?

Thanks

Simon

"amadeo Marketing & Design - Paul Garais"  wrote 
in message 
news:mailman.13598.1396515827.629.typo3-engl...@lists.typo3.org...
> Hi Simon,
>
> try this in your template (setup):
>
> plugin.tt_news.displaySingle {
> image {
> file >
> file.maxW = 600
> }
> }
>
> This one is for the single-view. You have to adapt it for the other views.
> You should also look into the setup.txt and constants.txt which you can 
> find in the "static" folder of the extension on your server. Should be 
> helpful.
>
>
> Greetings,
>
>
>
> *Paul Garais*
>
>
> Tel. (02 51) 620 651-73
> Fax (02 51) 620 651-69
>
> gar...@agentur-eulenblick.de
> www.agentur-eulenblick.de
>
> Albersloher Weg 662 • 48167 Münster
>
>
> Am 03.04.2014 10:45, schrieb Simon Child:
>> Does anyone have any suggestions for this problem, please?
>>
>> Thank you
>>
>> Simon Child
>>
>> "Simon Child"  wrote in message
>> news:mailman.1.1395060224.15884.typo3-engl...@lists.typo3.org...
>>> I am struggling to find the setting that fixes images at a width of 300 
>>> in
>>> tt_news single view
>>>
>>> - If I insert an image into an standard content image on a page using 
>>> rte
>>> then width is not restricted to 300
>>>
>>> - But every image I insert into news item text using rte gets reduced to
>>> 300
>>>
>>> I can't find the setting for this anywhere to change it.
>>>
>>> template analyser search for 300 doesn't find it.
>>>
>>> I've changed various settings hoping that one of them was the cause but 
>>> no
>>> luck so far. Where to look next?
>>>
>>> TYPO3 4.7, tt_news 3.52
>>>
>>> I have in page tsconfig
>>>
>>> #image dimensions for RTE
>>> RTE.default.buttons.image.options.plain.maxWidth = 600
>>> RTE.default.buttons.image.options.plain.maxHeight = 1000
>>> RTE.default.buttons.image.options.magic.maxWidth = 600
>>> RTE.default.buttons.image.options.magic.maxHeight = 1000
>>>
>>> #max dimensions for RTE within news/blog context
>>> RTE.config.tt_news.bodytext.image.options.plain.maxWidth = 600
>>> RTE.config.tt_news.bodytext.image.options.plain.maxHeight = 1000
>>> RTE.config.tt_news.bodytext.image.options.magic.maxWidth = 600
>>> RTE.config.tt_news.bodytext.image.options.magic.maxHeight = 1000
>>>
>>>
>>> in template I have
>>>
>>> styles.content.imgtext.maxW = 600
>>> styles.content.imgtext.maxWInText = 600
>>> plugin.tt_news.singleMaxW = 500
>>> plugin.tt_news.singleMaxH = 600
>>>
>>>
>>> But still rte in tt_news item gives
>>>
>>> http://www.nvug.org/uploads/RTEmagicC_pic_20.png.png";
>>> width="300" height="205" txdam="1982" />
>>>
>>> What do I need to change?
>>>
>>>
>>> Thanks
>>>
>>> Simon
>>>
>>
>> ___
>> TYPO3-english mailing list
>> TYPO3-english@lists.typo3.org
>> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
>> 


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] ttnews single view image width stuck at 300px

2014-04-03 Thread Simon Child
Does anyone have any suggestions for this problem, please?

Thank you

Simon Child

"Simon Child"  wrote in message 
news:mailman.1.1395060224.15884.typo3-engl...@lists.typo3.org...
>
> I am struggling to find the setting that fixes images at a width of 300 in 
> tt_news single view
>
> - If I insert an image into an standard content image on a page using rte 
> then width is not restricted to 300
>
> - But every image I insert into news item text using rte gets reduced to 
> 300
>
> I can't find the setting for this anywhere to change it.
>
> template analyser search for 300 doesn't find it.
>
> I've changed various settings hoping that one of them was the cause but no 
> luck so far. Where to look next?
>
> TYPO3 4.7, tt_news 3.52
>
> I have in page tsconfig
>
> #image dimensions for RTE
> RTE.default.buttons.image.options.plain.maxWidth = 600
> RTE.default.buttons.image.options.plain.maxHeight = 1000
> RTE.default.buttons.image.options.magic.maxWidth = 600
> RTE.default.buttons.image.options.magic.maxHeight = 1000
>
> #max dimensions for RTE within news/blog context
> RTE.config.tt_news.bodytext.image.options.plain.maxWidth = 600
> RTE.config.tt_news.bodytext.image.options.plain.maxHeight = 1000
> RTE.config.tt_news.bodytext.image.options.magic.maxWidth = 600
> RTE.config.tt_news.bodytext.image.options.magic.maxHeight = 1000
>
>
> in template I have
>
> styles.content.imgtext.maxW = 600
> styles.content.imgtext.maxWInText = 600
> plugin.tt_news.singleMaxW = 500
> plugin.tt_news.singleMaxH = 600
>
>
> But still rte in tt_news item gives
>
> http://www.nvug.org/uploads/RTEmagicC_pic_20.png.png"; 
> width="300" height="205" txdam="1982" />
>
> What do I need to change?
>
>
> Thanks
>
> Simon
> 


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Unload/load extension from console

2014-03-25 Thread Simon Browning

Does anyone know if it is possible to unload and load an extension from the 
console, automatically applying any applicable database updates?

We're pushing a couple of standard extensions to a number of sites which is 
fine, but the odd time they require a database update.  It would be nice if we 
could script this as well.

Thank you

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] ttnews single view image width stuck at 300px

2014-03-17 Thread Simon Child

I am struggling to find the setting that fixes images at a width of 300 in 
tt_news single view

 - If I insert an image into an standard content image on a page using rte 
then width is not restricted to 300

 - But every image I insert into news item text using rte gets reduced to 
300

I can't find the setting for this anywhere to change it.

template analyser search for 300 doesn't find it.

I've changed various settings hoping that one of them was the cause but no 
luck so far. Where to look next?

TYPO3 4.7, tt_news 3.52

I have in page tsconfig

#image dimensions for RTE
RTE.default.buttons.image.options.plain.maxWidth = 600
RTE.default.buttons.image.options.plain.maxHeight = 1000
RTE.default.buttons.image.options.magic.maxWidth = 600
RTE.default.buttons.image.options.magic.maxHeight = 1000

#max dimensions for RTE within news/blog context
RTE.config.tt_news.bodytext.image.options.plain.maxWidth = 600
RTE.config.tt_news.bodytext.image.options.plain.maxHeight = 1000
RTE.config.tt_news.bodytext.image.options.magic.maxWidth = 600
RTE.config.tt_news.bodytext.image.options.magic.maxHeight = 1000


in template I have

styles.content.imgtext.maxW = 600
styles.content.imgtext.maxWInText = 600
plugin.tt_news.singleMaxW = 500
plugin.tt_news.singleMaxH = 600


But still rte in tt_news item gives

http://www.nvug.org/uploads/RTEmagicC_pic_20.png.png"; width="300" 
height="205" txdam="1982" />

What do I need to change?


Thanks

Simon 


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Back End Module for sql queries

2014-02-12 Thread Simon Browning

How is the oracle website going to give me information about a TYPO3 extension?
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Back End Module for sql queries

2014-02-10 Thread Simon Browning

Is anyone familiar with an extension that will create a back end module in 
which we can save some sql queries, following which an admin can run these 
queries and/or export the results to csv/excel?

I've had a look through the repository but can't really see anything that works 
in this way.

The Task center would almost work, only you can't just enter a query, you have 
to use the wizard (I think - if anyone knows better please let me know).

Thanks.

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Removing inline image width & height

2014-02-10 Thread Simon Browning

Would that work for content element images?  I saw that too but was thinking it 
was just for images being created through TS.

I'll give it a try.

Thanks

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Removing inline image width & height

2014-02-06 Thread Simon Browning

I haven't found a way to remove the inline image width & height that TYPO3 
places on images in content elements, so we're doing it currently with jquery (as 
below).

Is there a better, TYPO3 way to do this?

Thank you

Simon

// Remove inline heights and widths in images from content elements
jQuery('img').each(function(){
   $(this).removeAttr('width')
   $(this).removeAttr('height');
   });
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Banning List view from pages

2013-11-26 Thread Simon Browning

That's perfect, thanks!
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Generate GMenu with Typo3 6.1

2013-08-28 Thread Simon Browning

Ok, part 2.  How to make this work with a rollover image?

I find as soon as I put a second image into the media field this doesn't work 
at all, and can't seem to come up with the right TS to get it to read the 
images independently - one for the inactive state, one for the rollover state.

Any tips?

Thank you

simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Banning List view from pages

2013-06-25 Thread Simon Browning

Does anyone know if it is possible to prevent "pages" from showing items in 
List view?  I need list view for folders, but struggle with clients ending up trying to 
manipulate page content in List view and getting confused or breaking things.

Thanks.

simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Restrict FE Users to 1 login at a time

2013-06-13 Thread Simon Browning

Does anyone know of an extension or configuration option to restrict fe users 
ids hat will prevent multiple users from signing in with the same id at the 
same time?

Thank you

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] auto-clearing cache for displaying content released by timer

2013-05-12 Thread Simon Child

"Philipp Gampe"  wrote in message 
news:mailman.1.1368304521.30176.typo3-engl...@lists.typo3.org...
> Hi Simon,
>
> Simon Child wrote:
>
>> Is there a way within TYPO3 (4.7) to set the cache to clear daily at a
>> specific time or times?
>
> Check cache_period, cache and cache_clearAtMidnight.
> http://docs.typo3.org/typo3cms/TyposcriptReference/Setup/Config/Index.html
>
> Also check the page properties for the cache timeout, cache tags, etc.

Ah that looks helpful, thanks

So if I put this in my site config

config.cache.1 = tt_news:60

The news listing on page 1 (home page) will refresh its cache automatically 
when an article (stored in pid 60) reaches it start-time?

And I can stack them to influence other pages as well e.g. my main news 
listing (page 17) and my news special sections (page 23)?

config.cache.1 = tt_news:60
config.cache.17 = tt_news:60
config.cache.23 = tt_news:60

Thanks


Simon Child 


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] auto-clearing cache for displaying content released by timer

2013-05-11 Thread Simon Child

I use the access/start-time feature to release some content (including 
tt_news items) at specific times. But often they don't display until the 
cache is cleared, which means that I have to be around to clear the cache 
manually, which rather defeats the purpose of setting the start-time!

Is there a way within TYPO3 (4.7) to set the cache to clear daily at a 
specific time or times?

I've searched and found a cron job solution but it is for TYPO3 4.1

http://lists.typo3.org/pipermail/typo3-english/2007-July/041393.html

I think it needs updating for 4.7 - can anyone give me any pointers?

Thanks

Simon Child




___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: Workspace preview issue

2013-05-10 Thread simon robinson

Has anyone got any thoughts on the above issue as we still have not been able 
to resolve

Thanks

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] sr_feuser_register - usergroup problem

2013-02-26 Thread Simon Child

The  configuration page in the manual says:

"This is only useful if allowUserGroupUpdate has been set, too."

It seems that isn't quite correct - it is also useful when 
allowUserGroupUpdate has not been set and it is desired to keep groups 
unchanged.

Simon



"Simon Child"  wrote in message 
news:mailman.1.1361873089.24490.typo3-engl...@lists.typo3.org...
> Ahah! Have just found this, and that fixes it:
>
> Keep unselectable user 
> groups[plugin.tx_srfeuserregister_pi1.keepUnselectableUserGroups]
> If set then the user groups which the TYPO3 admin has assigned are not 
> removed after editing.
>
> Simon
>
>
> "Simon Child"  wrote in message 
> news:mailman.1.1361872526.22944.typo3-engl...@lists.typo3.org...
>>
>> My 4.7.8 site uses sr_feuser_register 3.0.1 to enable registrations and 
>> self-update of details.
>>
>> I don't want users to choose their own fe usergroups so that field is not 
>> displayed. Those are maintained manually outside of this process (e.g. 
>> fe_users.usergroup will be set to 1 for someone who has registered on the 
>> website and clicked the email confirmation, and they may subsequently be 
>> upgraded to 'member' and then fe_users.usergroup will show 1,3)
>>
>> Under v2 of sr_feuser_register, when a user updated their details the 
>> usergroup settings were preserved.
>>
>> I'm seeing now, since I upgraded to v3, that an update of details by the 
>> user wipes out their usergroup settings and reverts them to 1 only.
>>
>> Is this a configuration error by me (where shall I look?) or a 
>> bug/feature of sr_feuser_register?
>>
>>
>> My template does include the usergroup sections, but usergroup is not 
>> included in plugin.tx_srfeuserregister_pi1.formFields because I don't 
>> want the user to choose usergroup.
>>
>>
>>
>> Your help welcome
>>
>> thank you
>>
>> Simon Child
>>
>
> 


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] sr_feuser_register - usergroup problem

2013-02-26 Thread Simon Child
Ahah! Have just found this, and that fixes it:

Keep unselectable user 
groups[plugin.tx_srfeuserregister_pi1.keepUnselectableUserGroups]
If set then the user groups which the TYPO3 admin has assigned are not 
removed after editing.

Simon


"Simon Child"  wrote in message 
news:mailman.1.1361872526.22944.typo3-engl...@lists.typo3.org...
>
> My 4.7.8 site uses sr_feuser_register 3.0.1 to enable registrations and 
> self-update of details.
>
> I don't want users to choose their own fe usergroups so that field is not 
> displayed. Those are maintained manually outside of this process (e.g. 
> fe_users.usergroup will be set to 1 for someone who has registered on the 
> website and clicked the email confirmation, and they may subsequently be 
> upgraded to 'member' and then fe_users.usergroup will show 1,3)
>
> Under v2 of sr_feuser_register, when a user updated their details the 
> usergroup settings were preserved.
>
> I'm seeing now, since I upgraded to v3, that an update of details by the 
> user wipes out their usergroup settings and reverts them to 1 only.
>
> Is this a configuration error by me (where shall I look?) or a bug/feature 
> of sr_feuser_register?
>
>
> My template does include the usergroup sections, but usergroup is not 
> included in plugin.tx_srfeuserregister_pi1.formFields because I don't want 
> the user to choose usergroup.
>
>
>
> Your help welcome
>
> thank you
>
> Simon Child
> 


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] sr_feuser_register - usergroup problem

2013-02-26 Thread Simon Child

My 4.7.8 site uses sr_feuser_register 3.0.1 to enable registrations and 
self-update of details.

I don't want users to choose their own fe usergroups so that field is not 
displayed. Those are maintained manually outside of this process (e.g. 
fe_users.usergroup will be set to 1 for someone who has registered on the 
website and clicked the email confirmation, and they may subsequently be 
upgraded to 'member' and then fe_users.usergroup will show 1,3)

Under v2 of sr_feuser_register, when a user updated their details the 
usergroup settings were preserved.

I'm seeing now, since I upgraded to v3, that an update of details by the 
user wipes out their usergroup settings and reverts them to 1 only.

Is this a configuration error by me (where shall I look?) or a bug/feature 
of sr_feuser_register?


My template does include the usergroup sections, but usergroup is not 
included in plugin.tx_srfeuserregister_pi1.formFields because I don't want 
the user to choose usergroup.



Your help welcome

thank you

Simon Child 


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] 4.7 css_styled_content and image disappears in IE8

2012-10-25 Thread Simon Child
The same happens to me in Chrome and IE8, but works ok in firefox (using 
4.7.4)

Simin Child

"Katja Lampela"  wrote in message 
news:mailman.1.1350982399.16059.typo3-engl...@lists.typo3.org...
> sorry, not one image but all content element images, with or without text. 
> News and some other extension imported images show fine.
>
> With kind regards
>
> Katja Lampela
> *Lieska-tuotanto*
> www.lieska.net
>
>
> 23.10.2012 11:50, Katja Lampela kirjoitti:
>> Hi,
>>
>> TYPO3 4.7.5
>>
>> One image disappears in IE8 (other browsers work ok) with the latest 
>> css_styled_content
>> If I change it to previous version, 4.6, the image is there.
>>
>> With the IE8's own developer tool the image pointer blue frame (though 
>> empty) is there first but disappeares then:
>>
>> 
>>
>>  <- HERE THE BLUE POINTING 
>> FRAME IS NOT THERE ANYMORE
>>
>> Any suggestions what to do? I wouldn't want to use old 
>> css_styled_content.
>> 


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] BE problems with TYPO3 4.7.4

2012-10-05 Thread Simon Child

"Dmitry Dulepov"  wrote in message 
news:mailman.1.1349415897.936.typo3-engl...@lists.typo3.org...

> Hi!
>
> Simon Child wrote:

>> 3. Page module - I can't add a new content element - when I click the 
>> icon
>> for 'add new record after this one' I just get a blank right pane (all 
>> three
>> browsers). I can however add a new content element from List
>
> Classics: 
> http://www.dmitry-dulepov.com/2009/03/blank-empty-page-in-typo3.html

So, it turns out that to clear some errors in the deprecated log I updated 
some calls in some extensions, including comments, tt_news, tt_adress, and a 
couple of others.

One of these was:

05-10-12 12:14: t3lib_div::readLLXMLfile() - since TYPO3 4.6, will be 
removed in TYPO3 6.0 - use t3lib_l10n_parser_Llxml::getParsedData() from now 
on - SC_db_new_content_el->main#604 // 
SC_db_new_content_el->getWizardItems#223 // 
SC_db_new_content_el->wizardArray#430 // 
SC_db_new_content_el->wizard_appendWizards#444 // 
tx_comments_pi1_wizicon->proc#493 // 
tx_comments_pi1_wizicon->includeLocalLang#56 // t3lib_div::readLLXMLfile#75 
// t3lib_div::logDeprecatedFunction#4267 
(typo3_src-4.7.4/t3lib/class.t3lib_div.php#4266)

So I edited

ext/comments/pi1/class.tx_comments_pi1_wizicon.php

$LOCAL_LANG = t3lib_div::readLLXMLfile($llFile, $GLOBALS['LANG']->lang);

to

$LOCAL_LANG = t3lib_l10n_parser_Llxml::getParsedData($llFile, 
$GLOBALS['LANG']->lang);

Reverting this recovers the ability to add content elements from Page, but 
doesn't fix the File clickmenu problem, and starts refilling the deprecated 
log...


So, remaining questions:

1. The unresolved File clickmenu problem (means I can't copy files, for 
example)

2. What is the correct syntax to fix this deprecated call:

$LOCAL_LANG = t3lib_div::readLLXMLfile($llFile, $GLOBALS['LANG']->lang);

Thanks

Simon




___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] BE problems with TYPO3 4.7.4

2012-10-05 Thread Simon Child

"Dmitry Dulepov"  wrote in message 
news:mailman.1.1349415897.936.typo3-engl...@lists.typo3.org...
> Hi!
>
> Simon Child wrote:
>> 3. Page module - I can't add a new content element - when I click the 
>> icon
>> for 'add new record after this one' I just get a blank right pane (all 
>> three
>> browsers). I can however add a new content element from List
>
> Classics: 
> http://www.dmitry-dulepov.com/2009/03/blank-empty-page-in-typo3.html

Aha! I hadn't thought of applying that to the BE, but thank you it finds me 
this on trying to add a page content element:

Fatal error: Call to undefined method tx_ttnews_wizicon::getCharset() in 
/var/www/vhosts/mydomain.org/httpdocs/typo3_src-4.7.4/t3lib/l10n/parser/class.t3lib_l10n_parser_llxml.php
 
on line 55

Will investigate further

Simon




___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Redirect to subdirectory - siteScript is shortend

2012-10-04 Thread Simon Child

"Jan Bednarik"  wrote in message 
news:mailman.1.1349298840.6118.typo3-engl...@lists.typo3.org...
> Hi,
>
> I have a TYPO3 (4.5) running in a subdirectory "old", I'm now redirecting 
> a domain example.com to this subdirectory:
>
> RewriteCond %{HTTP_HOST} ^(www\.)?example\.com$
> RewriteRule ^(.*)$  /old/$1 [L]
>
> The problem is, that I want to use CoolUri for this new domain, but it 
> doesn't work since $params['pObj']->siteScript is shortend by 3 
> characters.

[snip]

> I think the problem is in t3lib_div:
>
> case 'TYPO3_SITE_URL':
> if (defined('PATH_thisScript') && defined('PATH_site')) {
> $lPath = substr(dirname(PATH_thisScript), strlen(PATH_site)) . '/';
> $url = self::getIndpEnv('TYPO3_REQUEST_DIR');
> $siteUrl = substr($url, 0, -strlen($lPath));
> if (substr($siteUrl, -1) != '/') {
> $siteUrl .= '/';
> }
> $retVal = $siteUrl;
> }
> break;

It seems that the three characters in 'old' are confusing the length of the 
substr required - the redirect is 'hiding' those three characters, but they 
are needed when counting the length of the substr to take from the filepath

so experiment with something like

$lPath = substr(dirname(PATH_thisScript), strlen(PATH_site)-3) . '/';

(but that might not be correct, just a guess, maybe +3 instead!)

-- 
Simon Child








___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] BE problems with TYPO3 4.7.4

2012-10-04 Thread Simon Child
Thanks for the feedback. I could blame Chrome too for the rtehtmlarea 
problem as that is now affecting only Chrome, but why is clickmenu not 
working in Filelist in IE8 or Firefox, and why also can I not add  content 
elements from Page?

Simon



"Cathy Stephens"  wrote in message 
news:mailman.584.1349305506.598.typo3-engl...@lists.typo3.org...
> We are seeing the same thing with Chrome v 22.0.1229.79 on a Typo3
> 4.5.18 site.
> I expect it may have something to do wtih the new version of Chrome
> released on Sept 25 as it was working fine before then.
>
> Works ok on Safari and IE and Firefox.
>
> ---Cathy Stephens
>
>
>
>
> On Mon, Oct 1, 2012 at 3:57 PM, Simon Child  wrote:
>>
>> I'm having some strange BE problem after upgrading two sites to TYPO3 
>> 4.7.4
>>
>> 1. Clickmenu doesn't work in Filelist (tried IE8, firefox and chrome, on
>> windows XP), so for example I can't copy a file (but clickmenu does work 
>> in
>> Page)
>>
>> 2. File upload doesn't work in Chrome (the file upload dialog appears but
>> nothing happens when I click 'Select files')
>>
>> 3. Page module - I can't add a new content element - when I click the 
>> icon
>> for 'add new record after this one' I just get a blank right pane (all 
>> three
>> browsers). I can however add a new content element from List
>>
>> 4. Editing with rtehtmlarea - in Chrome after typing 2-3 characters the
>> cursor jumps back to an earlier position in the text, often deleting a 
>> block
>> of text as well.
>>
>> I've done the usual things like the upgrade wizard and database upgrade.
>>
>> I've deleted my custom rtehtmlarea page tsconfig, and have set 
>> rtehtmlarea
>> config to typical.
>>
>> I've set BE compression to zero and cleared typo3temp/compressor and
>> typo3temp/rtehtmlarea.
>>
>> I've cleared browser caches.
>>
>> After doing all this there was a slight improvement (previously 
>> rtehtmlarea
>> was not working in firefox either, but it is now), but other problems
>> persist - clickmenu in Filelist , creating content elements in Page,
>> fileupload and rtehtmlarea in Chrome.
>>
>> Anybody got any ideas please?
>>
>> Thanks
>>
>> Simon Child
>>
>>
>>
>>
>> ___
>> TYPO3-english mailing list
>> TYPO3-english@lists.typo3.org
>> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
>
>
>
> -- 
> Cathy Stephens
> Fun Collections
> Order Desk 800-865-3127 or 619-846-8780
> Web http://www.FunCollections.com 


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] BE problems with TYPO3 4.7.4

2012-10-01 Thread Simon Child

I'm having some strange BE problem after upgrading two sites to TYPO3 4.7.4

1. Clickmenu doesn't work in Filelist (tried IE8, firefox and chrome, on 
windows XP), so for example I can't copy a file (but clickmenu does work in 
Page)

2. File upload doesn't work in Chrome (the file upload dialog appears but 
nothing happens when I click 'Select files')

3. Page module - I can't add a new content element - when I click the icon 
for 'add new record after this one' I just get a blank right pane (all three 
browsers). I can however add a new content element from List

4. Editing with rtehtmlarea - in Chrome after typing 2-3 characters the 
cursor jumps back to an earlier position in the text, often deleting a block 
of text as well.

I've done the usual things like the upgrade wizard and database upgrade.

I've deleted my custom rtehtmlarea page tsconfig, and have set rtehtmlarea 
config to typical.

I've set BE compression to zero and cleared typo3temp/compressor and 
typo3temp/rtehtmlarea.

I've cleared browser caches.

After doing all this there was a slight improvement (previously rtehtmlarea 
was not working in firefox either, but it is now), but other problems 
persist - clickmenu in Filelist , creating content elements in Page, 
fileupload and rtehtmlarea in Chrome.

Anybody got any ideas please?

Thanks

Simon Child




___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] media element, mp3s, TYPO3 4.6 and firefox/safari

2012-09-21 Thread Simon Browning
I'm finding that mp3s added as media elements in TYPO3 4.6 aren't 
working in firefox or safari.


Fine in Chrome or ie.  Anyone else see this?

Thank you

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] display the page nav_title above a left menu of subpages, but only if the menu is not empty

2012-09-07 Thread Simon Child
I want to display the page nav_title above a left menu of subpages, but if 
there are no subpages I want nothing to be diplayed

My HMENU object is temp.menu1 and if if I just want to display that, then 
this works:

lib.leftmenu < temp.menu1

This adds the page nav_title above it, but doesn't suppress it if there are 
no subpages

temp.lmenu=COA
temp.lmenu.10=TEXT
temp.lmenu.10  {
  value = {page:nav_title}
  insertData = 1
  wrap=|
}
temp.lmenu.20 < temp.menu1
temp.lmenu.20.wrap = |
lib.leftmenu < temp.lmenu

So I try testing with 'if' to see if temp.menu1 is empty, and have tried 
various things but can't get that to work. Can anyone please give me a 
pointer?

temp.lmenu=COA
temp.lmenu.10=TEXT
temp.lmenu.10  {
  value = {page:nav_title}
  insertData = 1
  wrap=|
}
temp.lmenu.wrap = |
temp.lmenu.20 < temp.menu1
temp.lmenu.20.wrap = |

lib.leftmenu < temp.lmenu
lib.leftmenu.if.isTrue < temp.menu1


Thank you

Simon Child 


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] 130K files in compressor folder

2012-08-15 Thread Simon Browning

The site is running 4.6.x

On 12-08-15 4:37 PM, Simon Browning wrote:

Just noticed one of our client's sites has 130K files in its compressor
folder.  This doesn't seem quite right, the site has only been online
for a couple of months.

Bug, misconfig?  Not sure where to look for this one, google search
didn't turn up much.

Thank you

simon


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] 130K files in compressor folder

2012-08-15 Thread Simon Browning
Just noticed one of our client's sites has 130K files in its compressor 
folder.  This doesn't seem quite right, the site has only been online 
for a couple of months.


Bug, misconfig?  Not sure where to look for this one, google search 
didn't turn up much.


Thank you

simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Fatal error: Cannot use string offset as an array in class.tx_em_connection_extdirectserver.php on line 1244

2012-08-06 Thread Simon Harhues
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

sorry but I can't help you. I really don't know any more what I did. I
believe it could have been a problem with the server, e.g. not enough
disk space or what so ever. I can't remember having patched the T3 core
or something like that. Also try to clear all Caches and delete all
temp-files.
Sorry, that I'm no help here...

Bye
Simon


Am 06.08.2012 12:18, schrieb administration xennex ltd:> Hi Simon
>
>
>
> Ihope you are well.
>
> I got the same error as obtained in the title. What have you done?
> Unfortunately I’ve not seen an answer as you could fix it. Maybe you can
> give me a tip how to solve it. I work with Typo 4.7.1
>
> Thanks and Best regards
>
>
>
>
>
>
>
> Brigitte Jutzet
>
> XenneX International Company Ltd.
>
>
>
> Tel:  044 500 78 50
>
> Fax: 044 500 78 51
>
>
>
> logo Signatur
>
>
>
>
>

Am 21.09.2011 06:47, schrieb Simon Harhues:
> Hi,
> 
> after an Update from TYPO3 4.4.x to 4.5.6 I'm using the new extension
> manager. In the new em I'm getting following error while checking and
> updating the translations of extensions:
> 
> Fatal error: Cannot use string offset as an array in
> /path/to/typo3_src-4.5.6/typo3/sysext/em/classes/connection/class.tx_em_connection_extdirectserver.php
> on line 1244
> 
> "register globals" is deactivated and beside a warning for the PHP
> memory limit (48M) there are no error messages under Reports.
> Also the PHP/Apache error log has no helpful information.
> 
> The named line in class.tx_em_connection_extdirectserver.php is:
> if ($localmd5 !== $fetch[$lang]['md5']) {
> 
> I didn't find the error in the mailing lists or on google. Can anybody
> help out what the problem could be or how I could debug the error?
> 
> Thanks,
> Simon
> 

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJQIATKAAoJEEtNfIC+sk2GwIYH/12zUGnEJ9gbls+wz3OqSDiz
DvxhxZkfRxJpdydHcYee8WAQniRL1KPtj7x1l+i8+11kI7MeL1z3Cv7VNTSoXimN
G6bD1K7afbYJ40RhZE/mHz6w4NAMw4X1NrxnBCkFu9RyxOkHj+bS1YK0BXheKiwl
Is+llAHR1EqYf2ivmjqPVCcSHpj2Mb/y5nCaYt1P+rc6Sr4vc0vgH7RsJj/6vf7s
Ty4xTREVp3XzcvaTSZLR/E+PEzpyS54w5cj7A/sV61HiAL60yrLyVP5Jjz5RNvRH
S4kTqjHyzdirL0C998WyIpM3OQewbXj8atvr/n6HB9biYn59hu8ACNkv2VSTdII=
=SwY4
-END PGP SIGNATURE-
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] b/e extension for viewing/sorting/filtering fe users

2012-06-23 Thread Simon Browning
Cool, thanks.  I also came across this page: 
http://stackoverflow.com/questions/905/typo3-backend-extension-or-feature-that-filters-feusers-by-usergroup


which discuss a way to do it using the task center.  I've never actually 
used the task center before, so will give it a go as well.


Simon

On 12-06-21 6:18 PM, Richard Davies wrote:

Hi Simon,

Check out the extension be_tablefilter. Its pretty much perfect and almost
fit our needs on a project we had.

Richard

On 22 June 2012 10:11, Simon Browning  wrote:


Does anyone know of a back end tool to help manage/view front end users.

For example with a filter that would let a b/e user view all of the f/e
users in a particular group.

One of our clients has a site with about 15K f/e users and needs a nice
way to view all of the users who are in particular groups.

Thank you

Simon
__**_
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-**bin/mailman/listinfo/typo3-**english<http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english>




___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] fe users and caching

2012-06-23 Thread Simon Browning

You're right, I mixed the two up (end of a long day/week).

I've not encountered the problem before either, however my client is 
reporting that she's not seeing secured pages in the menu after logging 
in, though she is seeing secured content on the page.


I'll have to fiddle with it.

Simon

On 12-06-22 5:17 PM, Loek Hilgersom wrote:

Hi Simon,

You're confusing browser cache (client side) with TYPO3 cache (server
side). The no_cache=1 option (at least the Typoscript one) is the server
side TYPO3 cache which has nothing to do with the browser cache.
On the server side, TYPO3 will take care of serving a different page -
provided there is any restricted content - when a user logs in. On the
client side the browser should do the same, I never encountered any
problems with that. So why don't you first try it before bringing up
hypothetical questions?

If there would be any problems with unintended client-side caching you
can tweak the http-headers and include the 'no-cache' flag.

Loek


On 22-06-12 21:50, Simon Browning wrote:

A question came up today to which I'm not sure of the answer.

How can we be sure that when a front end user logs in that he/she sees
front end
secured items, and they don't get fooled by browser caching?

Example 1 would be a page that is only available in the front end to
logged in
users.

Example 2 would be page content that is only available to logged end
users (so a
regular page that has content on it that is restricted and only shows
up on login).

Could it be possible that the user logs in and doesn't see the secured
items
until they clear their browser cache?

How do we prevent this if it is possible. I know we could set
nocache=1 for
logged in users, but that seems like a fairly horrible solution.

Thanks

Simon





___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] fe users and caching

2012-06-22 Thread Simon Browning

A question came up today to which I'm not sure of the answer.

How can we be sure that when a front end user logs in that he/she sees 
front end secured items, and they don't get fooled by browser caching?


Example 1 would be a page that is only available in the front end to 
logged in users.


Example 2 would be page content that is only available to logged end 
users (so a regular page that has content on it that is restricted and 
only shows up on login).


Could it be possible that the user logs in and doesn't see the secured 
items until they clear their browser cache?


How do we prevent this if it is possible. I know we could set nocache=1 
for logged in users, but that seems like a fairly horrible solution.


Thanks

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] b/e extension for viewing/sorting/filtering fe users

2012-06-21 Thread Simon Browning

Does anyone know of a back end tool to help manage/view front end users.

For example with a filter that would let a b/e user view all of the f/e 
users in a particular group.


One of our clients has a site with about 15K f/e users and needs a nice 
way to view all of the users who are in particular groups.


Thank you

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] cell or column width, table width in htmlarea

2012-06-06 Thread Simon Browning

Anyone?

On 12-05-14 4:01 PM, Simon Browning wrote:

That was my suggested approach as well, however the client wants
explicit control.

It used to be an option, didn't it?

Simon


On 12-05-12 1:57 PM, Tony Lush wrote:

The TV Framework does it with CSS classes, which might be an approach
you could try.

Cheers -- Tony

On 5/12/2012 10:27 AM, Simon Browning wrote:

I thought there used to be a property that would allow manual
specification of the table and cell widths in the rte (by pixel or %),
however I can't find them now and can't find any reference to them.

Is it possible to enable a property that allow the editor to specify
these?

Thank you.

Simon






___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] gifbuilder and trademark symbols

2012-05-26 Thread Simon Browning

Hi Jigal.

Thank you for replying.

The problem is solved - turns out it wasn't a TYPO3 problem at all, the 
fonts selected didn't have the trademark characters in its character 
set.  As usual I thought to check this about 1 minute after posting.


For reference, the code we're using is below:

lib.stdheader.10.5 >
lib.stdheader.10.5 = IMAGE
lib.stdheader.10.5.file = GIFBUILDER
lib.stdheader.10.5.file {
  XY = 200,[10.h]+[20.h] +[30.h] + 35
  10 = TEXT
  10.text.current = 1
  10.text.listNum.splitChar=|
  10.text.listNum=0
  10.offset = 0,21
  10.fontSize= 18
  10.fontColor = #232323
 # 10.fontFile = fileadmin/templates/fonts/WMR.PFB
10.fontFile = fileadmin/templates/fonts/arial.ttf
  10.transparentBackground = 0
  10.niceText = 0
  20 < .10
  20.text.listNum=1
  20.offset=0,[10.h]+27
  30 < .10
  30.text.listNum=2
  30.offset=0,[10.h]+45

}

Simon

On 12-05-26 4:02 PM, Jigal van Hemert wrote:

Hi,

On 26-5-2012 20:25, Simon Browning wrote:

Is it possible to have the gifbuilder render trademark symbols (the TM
or R)? We're replacing one of the stdheaders with a graphic, and I've
spent a couple of hours trying to get the symbols to show up, but can't
seem to make it happen.


This is a bit vague description. Any code?

There is a known bug in PHP's GD library with OpenType fonts which
renders utf-8 characters incorrectly. With one of my OpenType fonts the
(R) symbol is displayed as fi-ligature and the TM symbol is displayed as
a [X].

With TrueType and Type1 fonts the symbols, diacriticals, etc. are
displayed correctly. As far as I could determine this has to do with the
JIS-mapped Japanese Font Support. Unfortunately there isn't a workaround.



___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] gifbuilder and trademark symbols

2012-05-26 Thread Simon Browning
Is it possible to have the gifbuilder render trademark symbols (the TM 
or R)?  We're replacing one of the stdheaders with a graphic, and I've 
spent a couple of hours trying to get the symbols to show up, but can't 
seem to make it happen.


Any tips?

I'm using TYPO3 4.7.1

Thanks

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] 404 handling - what have I missed?

2012-05-22 Thread Simon Browning


Got it.

postVarSet_failureMode = ''

It was commented out in my realurl conf.  Uncommenting it fixed the issue.

Thanks.

Simon


On 12-05-22 2:05 PM, Simon Browning wrote:

On 12-05-22 12:10 PM, avantic wrote:


You should have in your .htaccess file. It should be placed at the public
html dir:

IndexIgnore *
Redirect /index.html http://domain.com/foo/
Options SymLinksIfOwnerMatch ExecCGI

If you want that users will be redirected to domain.com/foo/

Victor



Thanks for your response.

Thats not quite what I meant. I want any invalid page, whether it is
/foo, or /foo.html to redirect to the 404 page.

Right now only /foo.html redirects to the home page, /foo is redirecting
to the home page.

Thanks.

Simon


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] 404 handling - what have I missed?

2012-05-22 Thread Simon Browning

On 12-05-22 12:10 PM, avantic wrote:


You should have in your .htaccess file. It should be placed at the public
html dir:

IndexIgnore *
Redirect /index.html http://domain.com/foo/
Options SymLinksIfOwnerMatch ExecCGI

If you want that users will be redirected to domain.com/foo/

Victor



Thanks for your response.

Thats not quite what I meant.  I want any invalid page, whether it is 
/foo, or /foo.html to redirect to the 404 page.


Right now only /foo.html redirects to the home page, /foo is redirecting 
to the home page.


Thanks.

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] 404 handling - what have I missed?

2012-05-22 Thread Simon Browning

Must be something simple, but I can't see it.

I've got a site where:  www.domain.com/foo.html properly brings up the 
404 page (I'm using the redirect method in the install tool), but 
www.domain.com/foo sends the user to the home page of the site.


Any ideas?

Thank you.

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Is there any need for an English TYPO3 discussion forum?

2012-05-14 Thread Simon Browning

On 12-05-14 7:06 AM, Thomas Skierlo wrote:

Hi everybody,

I'm a German living in the Netherlands, who prefers to discuss technical
matters in English forums and lists. I'm a participating on this list
for about two month now, and I like the friendliness and quality of it
very much.

All official TYPO3 documentation is in English and the product localizes
extremely well. I think that many people, like me before, do not
subscribe to mailing lists, mainly because they are looking for other
forms of information first, like discussion forums, which might be a
more modern approach -- at least a more convenient one.

Yes.

The only newsgroups I've used in the last 10 years are the TYPO3 
newsgroups.  They're great, but archaic, and I think do nothing to help 
people who have the impression that TYPO3 is hard to use.


Simon





One major aspect of a forum is the fact, that beginners get good hints,
mainly from other, more advanced beginners and intermediates. A forum
therefore could help to keep the very basic questions out of the mailing
lists, which always will cover more advanced topics.

If you use Google for some usage statistics you'll find out that TYPO3's
acceptance is extremely good for the German (or similar) language
countries, like Austria, Switzerland, the Netherlands, and it's
popularity and installation-count is decreasing outside the EU and
Scandinavian countries. Imagine yourself a young turkish CMS developer,
who wants to learn more about TYPO3. Besides the official documentation
he or she would hunt for information in Turkish or English language, but
definitely no in German.

Today we have two well administrated and lively forums in German
language and, at least after my short research, not even one in English.
Other users and I suggested an "English" section for the most active
German TYPO3 forum at http://www.typo3forum.net
<http://www.typo3forum.net/> , and the makers behind it would agree to
open one (or more), if it would really be of general interest.

I was asked to discuss this matter on the mailing list -- voilà. I'm a
plain user of the forum mentioned, and not an owner or maker of it

Would you like to have an English language subsection on this popular
forum - not as an alternative to this excellent mailing list, but as an
addition? If yes, which structure should it have?

All of you who can read German will find the active discussion under
http://www.typo3forum.net/forum/aenderungen/49716-typo3-forum-englisch.html.
Use this thread as well if you like.

TIA for any feedback,

Thomas Skierlo



___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] cell or column width, table width in htmlarea

2012-05-14 Thread Simon Browning
That was my suggested approach as well, however the client wants 
explicit control.


It used to be an option, didn't it?

Simon


On 12-05-12 1:57 PM, Tony Lush wrote:

The TV Framework does it with CSS classes, which might be an approach
you could try.

Cheers -- Tony

On 5/12/2012 10:27 AM, Simon Browning wrote:

I thought there used to be a property that would allow manual
specification of the table and cell widths in the rte (by pixel or %),
however I can't find them now and can't find any reference to them.

Is it possible to enable a property that allow the editor to specify
these?

Thank you.

Simon




___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] cell or column width, table width in htmlarea

2012-05-12 Thread Simon Browning
I thought there used to be a property that would allow manual 
specification of the table and cell widths in the rte (by pixel or %), 
however I can't find them now and can't find any reference to them.


Is it possible to enable a property that allow the editor to specify these?

Thank you.

Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Preconfiguring list view

2012-03-21 Thread Simon Browning

On 12-03-20 12:51 PM, Simon Browning wrote:

I've been searching for a way - unsuccessfully - to do the following, is
it possible?

I'd like to pre-configure the list view of various tables, ideally
through TS Config or similar.

For example, we have a site with a custom table called messages with
fields name, email, message, urgent, date, etc.

I would like editors to be able to log in, look in the relevant
folder/page in List View, and see the table with the extended view on
and the fields: name, message, and urgent displayed. I'd also like the
control icons to show up on the far right side of the List (like
clicking [_CONTROL_] in the field list).

This particular site has a lot of editors, so ideally I'd like to set
this at the group level.

The way I've accomplished this to date is by setting up one user as I'd
like to see it, then by copying the contents of the us filed from the fe
user record to all the other users, but there must be a better way ...

Simon



That would be the uc field from the feuser table.
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Preconfiguring list view

2012-03-20 Thread Simon Browning
I've been searching for a way - unsuccessfully - to do the following, is 
it possible?


I'd like to pre-configure the list view of various tables, ideally 
through TS Config or similar.


For example, we have a site with a custom table called messages with 
fields name, email, message, urgent, date, etc.


I would like editors to be able to log in, look in the relevant 
folder/page in List View, and see the table with the extended view on 
and the fields: name, message, and urgent displayed.  I'd also like the 
control icons to show up on the far right side of the List (like 
clicking [_CONTROL_] in the field list).


This particular site has a lot of editors, so ideally I'd like to set 
this at the group level.


The way I've accomplished this to date is by setting up one user as I'd 
like to see it, then by copying the contents of the us filed from the fe 
user record to all the other users, but there must be a better way ...


Simon
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Typo3 - Restrict Access to a page by IP range

2012-02-16 Thread Simon Browning

On 12-02-15 9:04 AM, Montgomery, Matthew wrote:

We have a need to create a single page on our website that is accessible to 
only on-campus stations.

I have 2 subnets that I would like to specify in the array and I am having 
great difficulty at making this work.

I located a webpage on this type of request here 
http://jeffsegars.com/2008/06/24/ip-based-frontend-accounts/.

I have located my localconf.php file as the site says but none of my lines 
start with $GLOBALS, mine actually start with $TYPO3_CONF_VARS.

I am really new to this and I am not sure how to proceed.  I am hoping that 
someone can provide some guidance to help us create this single page.



Thanks.


Possibly another way would be to put an extension template on that page 
with an IP based redirection.  The page would still show up in the menu, 
but anyone clicking on it who is not in the subnet could be redirected 
to a page that says something like:  "you must be on campus to view this 
content".


We do this on our development sites to keep clients out until we're 
ready for them.


[IP = 192.168.1.* ]
   # do nothing, these folks can see the page

[else]

   # redirect these users
   config >
   config.additionalHeaders = Location: 
http://www.domain.com/sorrypage.html


[global]
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] spammers beating captcha

2012-01-25 Thread Simon Child

"Jigal van Hemert"  wrote in message 
news:mailman.1.1327216235.4042.typo3-engl...@lists.typo3.org...
> Hi,
>
> On 21-1-2012 22:38, Simon Child wrote:
>> Today I have had several spam comments posted, so it seems they are 
>> beating
>> the captcha (or entering it manually? but if so unusually persistent to 
>> try
>> it a dozen times or more).
>
> From tests with a few non-TYPO3 projects it seems that "they" have found 
> the easiest way around CAPTCHAs: humans.

Looks like you are correct - they seemed to try it out for while and then 
gave up when none of their messages appeared on the site.

Thanks

Simon Child 


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] spammers beating captcha

2012-01-21 Thread Simon Child

I'm using extensions captcha 1.1.1 with comments 1.5.4 and tt_news 3.1.0

Today I have had several spam comments posted, so it seems they are beating 
the captcha (or entering it manually? but if so unusually persistent to try 
it a dozen times or more).

The comments are not appearing on the site because I have it set to send all 
comments to me for moderation, so they aren't getting the encouragement of 
seeing their postings appearing, yet they continue trying in what appears 
may be an automated way.

Is captcha 1.1.1 known to be commonly beatable by spammers and I should give 
up on it?

(I can't use sr_freecap because that needs PHP 5.3 and my server uses 5.2)


Thanks

Simon Child


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] linkVars: [ ] characters in the GET variable names

2011-12-03 Thread Simon Schaufelberger (Schaufi)

Hi,
sorry to bring up the topic again but i am just having exactly the same 
problem with TYPO3 4.6.


i am trying to use the same like:

config.linkVars = tx_community|user

which does not add anything to any url...

is this broken again or has this never worked?

Regards, Schaufi

Am 07.05.2010 15:44, schrieb Xavier Perseguers:

Hi,


I'd like to put this in my linkVars

config.linkVars = L, tt_products[backPID], tt_products[product],
tt_products[cat], cHash

because the GET variable name is tt_products[backPID], but
unfortunately the [] charater has other meanig in the linkvars.


using

config.linkVars = L, tt_products|backPID, tt_products|product,
tt_products|cat, cHash

should do the trick.


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Typogento?

2011-11-25 Thread Simon Dawes
Yep, I understand the desire for one integrated system, we persisted 
with tt-products for a long time just for this reason! But our 
experience is for anything more that a fairly straight forward shop you 
end up compromising functionality somewhere :)


Anyway good luck with it, if you had down the tt-products path we have 
some experience.


Cheers Simon


On 25/11/2011 7:40 PM, Giuseppe wrote:

This is what we want to avoid. Some customers wants all integrated in
the same backend to avoid to work with both systems (both to administer
and both to learn)

Regards.

El 24/11/2011 22:35, Simon Dawes escribió:

Hi Guiseppe,

We have used tt-products for several shops in TYPO3 with success,
(generally we have paid to have access to the more recent versions (2.7,
2.8, ..). It works fine for the simpler shops we do, although can be
tricky to configure and payment integration is some times a hassle.

Recently we have started to work with Magento for more complex shops,
mainly because it delivers all the requirements for a shop with hacking
things! And it actually makes sense to our shop owners as well to admin
use.

But the CMS aspect of Magento is not great so we use TYPO3 for this, we
looked at typogento but found lots of problems.

So in the end we use a hybrid setup, using both systems. Yes it means
maintaining two templates and admins etc. But both systems can do what
they are good at, and actually separating the admins has some benefits.

We have then done work on using the SOAP interface to allow the systems
to integrate better (highlight/list products in TYPO3 pages for
instance).

There are use complications with this approach of course but we feel
they are worth it for the functionality we get.

Cheers Simon

On 24/11/2011 8:11 PM, Giuseppe wrote:

Hi,

I need to retake my efforts in shop implementation for our own site.

I'm looking, and typogento looks a good option, but somebody knows if is
continued (updated in middle last year), and if is compatible with
latest Magento 1.6.10?

Other working options actually?

Regards.






___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Typogento?

2011-11-24 Thread Simon Dawes

Hi Guiseppe,

We have used tt-products for several shops in TYPO3 with success, 
(generally we have paid to have access to the more recent versions (2.7, 
2.8, ..). It works fine for the simpler shops we do, although can be 
tricky to configure and payment integration is some times a hassle.


Recently we have started to work with Magento for more complex shops, 
mainly because it delivers all the requirements for a shop with hacking 
things! And it actually makes sense to our shop owners as well to admin use.


But the CMS aspect of Magento is not great so we use TYPO3 for this, we 
looked at typogento but found lots of problems.


So in the end we use a hybrid setup, using both systems. Yes it means 
maintaining two templates and admins etc. But both systems can do what 
they are good at, and actually separating the admins has some benefits.


We have then done work on using the SOAP interface to allow the systems 
to integrate better (highlight/list products in TYPO3 pages for instance).


There are use complications with this approach of course but we feel 
they are worth it for the functionality we get.


Cheers Simon

On 24/11/2011 8:11 PM, Giuseppe wrote:

Hi,

I need to retake my efforts in shop implementation for our own site.

I'm looking, and typogento looks a good option, but somebody knows if is
continued (updated in middle last year), and if is compatible with
latest Magento 1.6.10?

Other working options actually?

Regards.


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Fatal error: Cannot use string offset as an array in class.tx_em_connection_extdirectserver.php on line 1244

2011-09-20 Thread Simon Harhues
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

after an Update from TYPO3 4.4.x to 4.5.6 I'm using the new extension
manager. In the new em I'm getting following error while checking and
updating the translations of extensions:

Fatal error: Cannot use string offset as an array in
/path/to/typo3_src-4.5.6/typo3/sysext/em/classes/connection/class.tx_em_connection_extdirectserver.php
on line 1244

"register globals" is deactivated and beside a warning for the PHP
memory limit (48M) there are no error messages under Reports.
Also the PHP/Apache error log has no helpful information.

The named line in class.tx_em_connection_extdirectserver.php is:
if ($localmd5 !== $fetch[$lang]['md5']) {

I didn't find the error in the mailing lists or on google. Can anybody
help out what the problem could be or how I could debug the error?

Thanks,
Simon
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJOeWxoAAoJEEtNfIC+sk2GWc8IAM3eQG9CBw6GzH3NCQvyCNa5
rtkRbR63fzc3mOkbdsE5AyScgDnGCVMGPdJ5DPwyLsMC/5rapqkwzFFSnRdllNeB
fMkcWg3e0QuOwdv4Snbe8iojP0UAuRYRkOCb2BWRqZ5G69K6P09se/2+VaIMpObr
B2Fq2yfb53ZbPOCxXpkXtNErsADE9+mDHo4xtrNkQwZC0wQFLBY8v0xOwwRpgpR/
ZBMfvAEqRyHK/hAGEYsENQBZR+3QLHhEz32CblgUEG6EyIizVhP8BCsCXM8WWoCc
3TD7gxtzYoD2cshWozM2OX4KqUIOQoJxt/DuqvSi5KcCgt2AJUitHB3T+4WZJW4=
=KbU3
-END PGP SIGNATURE-
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Access old installation without index.php

2011-09-08 Thread John Simon
Hi Bernd,

Thanks for your quick help.
I was hoping for a very simple solution without moving any files but your 
option doesn't seem too difficult.

Thanks again,

Adrian



From: Bernd Wilke <t...@pi-phi.tk>
To: typo3-english@lists.typo3.org
Sent: Thursday, 8 September 2011, 8:24:18
Subject: Re: [TYPO3-english] Access old installation without index.php

On 09/08/2011 01:44 AM, John Simon wrote:
> Hi,
> 
> Ok, here is the situation, a new php based website has been installed over 
a website that used TYPO3.
> Note that no files were overwritten (the original index.php was renamed).
> Is it possible to access the old website content (other than by renaming 
back the original index.php).
> Is there a config file allowing TYPO3 to run from a file other than 
index.php ?  Or a .htaccess edit ?
> Any help would be appreciated as I am not familar with TYPO3.
> 

I don't know wether you can access it via an renamed index.php, but you can 
move typo3 into a subdir and work from there

move all TYPO3-related files from webroot to webroot/t3dir including the 
original index.php renamed back.
keep watch for relative symlinks (typo3_src -> ../typo3_src-4.5.?)

you may need to remove realurl or reconfigure it.
also references to baseurl, as it changed with the subdir

beside that I got a lot of installations running in subdirs

and be sure to clear all caches ;-)

bernd
-- http://www.pi-phi.de/cheatsheet.html
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Access old installation without index.php

2011-09-07 Thread John Simon
Hi,
 
Ok, here is the situation, a new php based website has been installed over a 
website that used TYPO3.
Note that no files were overwritten (the original index.php was renamed).
Is it possible to access the old website content (other than by renaming back 
the original index.php).
Is there a config file allowing TYPO3 to run from a file other than index.php 
?  Or a .htaccess edit ?
Any help would be appreciated as I am not familar with TYPO3.
 
Thanks,
 
Adrian
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] The best way to implement forms

2011-06-03 Thread Simon Dawes

We use Powermail with Powermail Frontend to do this

http://typo3.org/documentation/document-library/extension-manuals/powermail_frontend/0.6.6/view/

Works really well for us.

Additionally we can allow frontend users to own and edit their own 
records for display (with approval if required)


Cheers Simon

On 2/06/2011 12:17 PM, Guillermo R. Oramas J. wrote:

Have you tried Powermail?


Hi. Thanks for your answer.

Powermail seems to be a great extension, but I need something a little bit
different, so I need to store the information of the form in a table of the
DB and then display a list of all records, or using filters, and when  a
user clicks in one of those records display a single view of the record with
all the details.

Greetings.

Memo.



___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Timeline extension

2011-03-13 Thread Simon Dawes

Hi Mario,

We just did a project where we created an extension to create manage 
timeline records in TYPO3 and display them using 
http://simile.mit.edu/timeline/


We plan to document it and put it in the repository but are not ready 
yet. You can contact me directly and I can give you more information if 
you like.


Cheers Simon

On 13/03/2011 6:11 AM, mario chiari wrote:

Hello


I am looking for an extension to insert a timeline as a content element.
Items should come from a mysql table.
Is anything ready?

Thanks
Regards

mario


ps.

from http://lists.typo3.org/pipermail/typo3-english/2007-May/038790.html

Andreas Balzer typo3 at 
Wed May 2 11:43:45 CEST 2007

 * Previous message: [TYPO3] Timeline functionality
 * Next message: [TYPO3] Timeline functionality
 * Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

Gunnar Jonsson schrieb:

Are there any existing extension to use for displaying timelines ? Is

it

anyone who has used the timeline functionality at
http://simile.mit.edu/timeline/ in connection with typo3? I seached

for

timeline in the extension repository, but no match. Perhaps some

extension

could be used to produce a timeline, even if the extension is not

intended

for that.

Regards,
Gunnar Jonsson



Hi!
There's afaik nothing in TER. But me and my team are trying to code a
flash timeline that gathers contents by tt_news over xml output. But it
takes 2 or 3 weeks until we have it..

Andreas




___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Internal Server Error on News Enteries

2011-03-02 Thread Simon Nute
Hi Peter, I had changed the directory as you suggested however I have 
now just decided to change all the directors to 755 and it now works.


Thank you very much for your help.

Simon

On 02/03/2011 12:52, Peter Beernink wrote:

Hi Simon,

On 2-3-2011 12:43, Simon Nute wrote:

Great, thanks so all the permissions are fine but I still receive the
error message when clicking on News Admin. I cannot believe that I am
the only person experiencing this problem.


Did you remove the group write access from the
typo3conf/ext/tt_news/mod1 directory?
As that was the one the error_log was complaining about.

If you have set those permissions correctly, please check the error_log
again to see if maybe an other directory of file is mentioned this time.

Otherwise I would suggest to contact your hosting provider, as this
message is not a default Apache error message.

Greets,
Peter



___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Internal Server Error on News Enteries

2011-03-02 Thread Simon Nute
Great, thanks so all the permissions are fine but I still receive the 
error message when clicking on News Admin.  I cannot believe that I am 
the only person experiencing this problem.


Someone must have the solution surely.

Simon

On 02/03/2011 11:26, Philipp Gampe wrote:

Simon Nute wrote:


OK - I have tried for a difinitive listing of what permissions should be
set on the typo3 folders and files - I have read the documentation but
cannot seem to find.


Read+Write on uploads, fileadmin, typo3temp, typo3conf
Read+Execute on t3lib and typo3

Just log in to install tool and it will tell you.

Best regards


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Internal Server Error on News Enteries

2011-03-02 Thread Simon Nute
OK - I have tried for a difinitive listing of what permissions should be 
set on the typo3 folders and files - I have read the documentation but 
cannot seem to find.


Can you advise please as I would like to start using typo3 but have this 
issue to solve first.


Thanks.

On 27/02/2011 12:16, simon wrote:

Hi - I have installed verion 4.5.2 as a trial play about installation.  I have not yet 
changed any settings etc but thought I would log in as the "news_editor".

I can log in without problems but once logged in I recieve an Internal Server 
Error in the page window.

I have tried reinstalling without any success.  Any help would be appreciated.

Simon





___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Internal Server Error on News Enteries

2011-03-01 Thread Simon Nute

Hi - just checked and the system RAM of the server is 6GB.

On 01/03/2011 11:51, Alessandro Tuveri wrote:

How much RAM memory is available?

Quoting Simon Nute :


The exact message shown in Typo3 BE is:
---

Internal Server Error

The server encountered an internal error or misconfiguration and was
unable to complete your request.

Please contact the server administrator, webmas...@waags.org.uk and
inform them of the time the error occurred, and anything you might
have done that may have caused the error.

More information about this error may be available in the server error
log..

Additionally, a 404 Not Found error was encountered while trying to
use an ErrorDocument to handle the request.
---


The errors in the log show:
---

[Tue Mar 01 05:10:29 2011] [error] [client 81.130.104.220] File does
not exist: /home/waagsor/public_html/500.shtml, referer:
http://www.waags.org.uk/t3/typo3/backend.php
[Tue Mar 01 05:10:29 2011] [error] [client 81.130.104.220]
SoftException in Application.cpp:601: Directory
"/home/waagsor/public_html/t3/typo3conf/ext/tt_news/mod1" is writeable
by group, referer: http://www.waags.org.uk/t3/typo3/backend.php
---


The problem is I am unsure what either of these means.

Would appreciate any help you can.

Simon


On 01/03/2011 10:59, Peter Beernink wrote:

Hi Simon,

On 1-3-2011 11:38, Simon Nute wrote:

I am getting nowhere with this one - does any one please have any
ideas?

I have tried the permissions and the dedug but nothing shows to even
give me a clue as to what might be causing the problem.


Do you have access to the logfiles of the server? If so, please check
the error log, as the reason of an Internal Server Error can be found
there most of the time.

Greets,
Peter




___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english





ALESSANDRO TUVERI

--
SERVIZI WEB D'ATENEO
CSIT, Centro Servizi Informatici e Telematici
Università degli Studi di Udine
tel. ufficio 0432-558904
--
Homo sine pecunia est imago mortis
--

--
SEMEL (SErvizio di Messaging ELettronico) - CSIT -Universita' di Udine




___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Internal Server Error on News Enteries

2011-03-01 Thread Simon Nute

The exact message shown in Typo3 BE is:
---
Internal Server Error

The server encountered an internal error or misconfiguration and was 
unable to complete your request.


Please contact the server administrator, webmas...@waags.org.uk and 
inform them of the time the error occurred, and anything you might have 
done that may have caused the error.


More information about this error may be available in the server error log.

Additionally, a 404 Not Found error was encountered while trying to use 
an ErrorDocument to handle the request.

---

The errors in the log show:
---
[Tue Mar 01 05:10:29 2011] [error] [client 81.130.104.220] File does not 
exist: /home/waagsor/public_html/500.shtml, referer: 
http://www.waags.org.uk/t3/typo3/backend.php
[Tue Mar 01 05:10:29 2011] [error] [client 81.130.104.220] SoftException 
in Application.cpp:601: Directory 
"/home/waagsor/public_html/t3/typo3conf/ext/tt_news/mod1" is writeable 
by group, referer: http://www.waags.org.uk/t3/typo3/backend.php

---

The problem is I am unsure what either of these means.

Would appreciate any help you can.

Simon


On 01/03/2011 10:59, Peter Beernink wrote:

Hi Simon,

On 1-3-2011 11:38, Simon Nute wrote:

I am getting nowhere with this one - does any one please have any ideas?

I have tried the permissions and the dedug but nothing shows to even
give me a clue as to what might be causing the problem.


Do you have access to the logfiles of the server? If so, please check
the error log, as the reason of an Internal Server Error can be found
there most of the time.

Greets,
Peter




___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Internal Server Error on News Enteries

2011-03-01 Thread Simon Nute

I am getting nowhere with this one - does any one please have any ideas?

I have tried the permissions and the dedug but nothing shows to even 
give me a clue as to what might be causing the problem.


Simon.

On 27/02/2011 12:16, simon wrote:

Hi - I have installed verion 4.5.2 as a trial play about installation.  I have not yet 
changed any settings etc but thought I would log in as the "news_editor".

I can log in without problems but once logged in I recieve an Internal Server 
Error in the page window.

I have tried reinstalling without any success.  Any help would be appreciated.

Simon





___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Internal Server Error on News Enteries

2011-02-28 Thread Simon
Thanks Scott but all the permissions appear to be correct.  Unfortunately this 
is a hosted account so therefore down to me to try and solve.

Simon

>Simon,
>
>I get those all the time and just about every time it's due to permissions. I 
>don't know what exactly they need to be set to but my guess is, make all 
>directories 755 and files 644. You should be able to relay the error to your 
>server admin and (if they're as good as mine! ;-) ) they'll fix it for you.
>
>HTH,
>-Scott.
>
>
>
>
>- Original Message 
>From: simon 
>To: typo3-english@lists.typo3.org
>Sent: Sun, February 27, 2011 6:16:05 AM
>Subject: [TYPO3-english]  Internal Server Error on News Enteries
>
>Hi - I have installed verion 4.5.2 as a trial play about installation.  I have 
>not yet changed any settings etc but thought I would log in as the 
>"news_editor".
>
>I can log in without problems but once logged in I recieve an Internal Server 
>Error in the page window.
>
>I have tried reinstalling without any success.  Any help would be appreciated.
>
>Simon
>
>
>___
>TYPO3-english mailing list
>TYPO3-english@lists.typo3.org
>http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
>
>
>
>
>
>


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Internal Server Error on News Enteries

2011-02-28 Thread Simon
Thanks for that but I have tried every option within the display errors tool 
but when I click on News Admin I still receive the Internal Server Error and 
Page Not Found.  I have also rechecked the permissions
and they appear to be fine.

Simon

>Hi Simon,
>
>simon wrote:
>
>> I can log in without problems but once logged in I recieve an Internal
>> Server Error in the page window.
>
>Turn on error display (display errors in install tool). If will tell you 
>what went wrong.
>
>Best regards
>-- 
>Philipp Gampe
>
>
>


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Internal Server Error on News Enteries

2011-02-27 Thread simon
Hi - I have installed verion 4.5.2 as a trial play about installation.  I have 
not yet changed any settings etc but thought I would log in as the 
"news_editor".

I can log in without problems but once logged in I recieve an Internal Server 
Error in the page window.

I have tried reinstalling without any success.  Any help would be appreciated.

Simon


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] User timeout delay

2011-02-24 Thread simon
Thanks. I will upgrade.

Simon


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] User timeout delay

2011-02-24 Thread Simon
I have only recently installed version 4.5.0 but I notice a problem with the 
timeout options.  A message box appears stating that the user is about to be 
logged out and provided two buttons one to select 
to stay logged in and the other to log out.

I have clicked the "stay logged in" button however this just appears to cycle 
with the dialog box reappearing - the only way I have found to get out of this 
cycle is to log out.

I am using Firefox 3.6.13

Thanks.

Simon


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Re: [TYPO3-v4] Announcing TYPO3 4.5.1

2011-02-24 Thread Simon
Can I just check please - what are the upgrade steps from 4.5.0 to 4.5.1 I have 
tried to find in the documentation but no luck.

Many thanks.

Simon







>Dear TYPO3 community,
>
>The TYPO3 core team has just released TYPO3 versions 4.5.1, which is
>now ready for you to download.
>
>This is a maintenance release and contain only bugfixes. Users of
>4.5.0 are strongly advised to upgrade.
>
>The packages can be downloaded here:
>  http://typo3.org/download/packages/
>
>For details about the release, please see:
>  http://news.typo3.org/news/article/typo3-451-released/
>  http://wiki.typo3.org/TYPO3_4.5.1 - Release Notes
>
>**MD5 checksums:
>
>b91e93d98e4f7bad0636788689eb179c  dummy-4.5.1.tar.gz
>cb5e7afbd349d5d2b9a65b14ec577c68  dummy-4.5.1.zip
>6b7012da6953010673d9990d9bf0ca9e  typo3_src-4.5.1.tar.gz
>884d832ae93023b9506df7eb67f91f05  typo3_src-4.5.1.zip
>4b1cfd122125029827e99ec7ca3295cc  typo3_src+dummy-4.5.1.zip
>28027c7a6bb707ff006000b5912ab089  introductionpackage-4.5.1.tar.gz
>632782f0d38298980cadb9f7445cbf3f  introductionpackage-4.5.1.zip
>
>Cheers,
>Steffen Kamper (Technical Leader)
>and Ernesto Baschny (Release Manager)
>
>
>-- 
>Ernesto Baschny
>Core Developer V4 Team
>Release Manager TYPO3 4.5
>
>TYPO3  inspiring people to share!
>Get involved: typo3.org
>
>
>


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] javascript compressor in the backend

2011-01-20 Thread Simon Schaufelberger

Hi,
i have a question to that.
My performance of the compressor is VERY slow in the 
backend. Sometimes it take upt to 3 seconds to get a javascript file 
with status 200 OK according to firebug network modul.

why does it take so long? any way to improve the performance?

Am 03.12.2010 16:31, schrieb Steffen Gebert:

All my JS files get copied to typo3temp/compressor. When i change
something in my original ts-file, the copy in the compressor dir doesn't
get updated.

It must get updated! Read: A new file with a new, unique file name is
created and used by TYPO3.
It checks the file size and filemtime and computes the hash based on
this information.


Where can i disable the compressor?
I found no documentation on this feature - anyone knows something
about it?

In 4.5 using $TYPO3_CONF_VARS['BE']['debug'] = 1;
In 4.4 by commenting out the following lines in typo3/template.php

$this->pageRenderer->enableConcatenateFiles();
$this->pageRenderer->enableCompressCss();
$this->pageRenderer->enableCompressJavascript();



Kind regards
Steffen



--
Kind regards,

Simon Schaufelberger (Schaufi) from punkt.de
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Forum extension needed

2010-11-23 Thread Simon Strandgaard
On Tue, Nov 23, 2010 at 3:38 PM, Janosch Skrobek  wrote:

> http://typo3.org/extensions/repository/view/wec_discussion/current/
>
> does exactly what you want

[snip]

AHA. Indeed it seems so. Will try it out asap.


Thank you Janosch for such a snappy response :-)

-- 
Best regards
Simon Strandgaard
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


  1   2   >