• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

Plesk 8 and Typo3

D

Dawn

Guest
Hi,

I tried to install Typo3 4.0 together with plesk 8. There isn't any very good documentation for that and I don't know what rights user/usergroups do I have to set....

Is there anybody out there who managed to install Typo3 on a Plesk 8 server?

Greets and thanks,
Dawn
 
*grin* I have to laught a litte bit about your footer... ;)

But back to the topic: I read this documentation but it wasn't very usefull for me... I gave it up with it and used the INSTALL.TXT of the Source-TGZ File. But I can't find any detailed descriptions about the permissions...

Which user/group did you take as owner for the source-directory... and which usere/group did you take as owner for the dummy-directory...? Which permissions did you set exept the descriptions which are in the INSTALL.TXT described?
 
Thanks for the link :)

I got it to run but I had to chown the files/directories to root:www-data. And thats my problem...

I don't understand it. I tought su_php makes it possible that all php-files are executed under its owner/ownergroup. So I can't get why I have to chown them to www-data. It doesn't run with a chown to [ftpuser] psacln which is the standard I thought...

Can you explain me whats my fault?

Greets and thanks anyway,
Andy
 
chown = change owner
chmod = change mode

1) I suggest you delete all the typo3 files and directories (typo3-xxxx_src+dummy-website)
2) login as "domainowner" to a shell or "su domainowner" to work as the owner of your website (REMEMBER: avoid working as root!)
3) use "wget" to download the typo3 src and dummy-website
4) untar both archives as discribed in the tutorial
5) access your installation via webbrowser and start setting up the configuration

For the permissions
use
Code:
chmod 666 myspecialfile.php
or
Code:
chmod -R 666 mydirectory
The 666 is :
read & write for "owner" (first 6)
read & write for "group" (second 6)
read & write for "others" (third 6)

the "-R" is for recursive

for more information see Doctor Google or
chmod tutorial
chmod "try & error" simulator

Lars
 
Back
Top