Guten Abend Hr. Keppler,
Mich würde Interessieren ob es schon Neuigkeiten bezüglich Typo3 Installation gibt.
Könnte vielleicht eine Neuinstallation helfen?
Wenn ja, welche Ordner muss ich nach dem Entfernen zusätzlich löschen?
Lg,
Cryon
Guten Abend Hr. Keppler,
Mich würde Interessieren ob es schon Neuigkeiten bezüglich Typo3 Installation gibt.
Könnte vielleicht eine Neuinstallation helfen?
Wenn ja, welche Ordner muss ich nach dem Entfernen zusätzlich löschen?
Lg,
Cryon
Guten Abend,
Ja die Rewrite war aktiviert also kein "#". Hab mich oben verschrieben.
_.htdocs
#####
#
# Example .htaccess file for TYPO3 CMS - for use with Apache Webserver
#
# This file includes settings for the following configuration options:
#
# - Compression via TYPO3
# - Settings for mod_rewrite (URL-Rewriting)
# - PHP optimisation
# - Miscellaneous
#
# If you want to use it, you have to copy it to the root folder of your TYPO3 installation (if its
# not there already) and rename it to '.htaccess'. To make .htaccess files work, you might need to
# adjust the 'AllowOverride' directive in your Apache configuration file.
#
# IMPORTANT: You may need to change this file depending on your TYPO3 installation!
#
# Lines starting with a # are treated as comment and ignored by the web server.
#
# You should change every occurance of TYPO3root/ to the location where you have your website in.
# For example:
# If you have your website located at [url]http://mysite.com/[/url]
# then your TYPO3root/ is just empty (remove 'TYPO3root/')
# If you have your website located at [url]http://mysite.com/some/path/[/url]
# then your TYPO3root/ is some/path/ (search and replace)
#
# You can also use this configuration in your httpd.conf, but then you have to modify some lines,
# see the comments (search for 'httpd.conf')
#
# Questions about this file go to the matching Install mailing list, see
# [url]http://typo3.org/documentation/mailing-lists/[/url]
#
####
### Begin: Compression via TYPO3 ###
# Compressing resource files will save bandwidth and so improve loading speed especially for users
# with slower internet connections. TYPO3 can compress the .js and .css files for you.
# *) Uncomment the following lines and
# *) Set $TYPO3_CONF_VARS['BE']['compressionLevel'] = '9' for the Backend
# *) Set $TYPO3_CONF_VARS['FE']['compressionLevel'] = '9' together with the TypoScript properties
# config.compressJs and config.compressCss for GZIP compression of Frontend JS and CSS files.
#<FilesMatch "\.js\.gzip$">
# AddType "text/javascript" .gzip
#</FilesMatch>
#<FilesMatch "\.css\.gzip$">
# AddType "text/css" .gzip
#</FilesMatch>
#AddEncoding gzip .gzip
### End: Compression via TYPO3 ###
### Begin: Browser caching of ressource files ###
# Enable long browser caching for JavaScript and CSS files.
# This affects Frontend and Backend and increases performance.
# You can also add other file extensions (like gif, png, jpg), if you want them to be longer cached, too.
<FilesMatch "\.(js|css)$">
<IfModule mod_expires.c>
ExpiresActive on
ExpiresDefault "access plus 7 days"
</IfModule>
FileETag MTime Size
</FilesMatch>
### End: Browser caching of ressource files ###
### Begin: Settings for mod_rewrite ###
# You need rewriting, if you use a URL-Rewriting extension (RealURL, CoolUri, SimulateStatic).
<IfModule mod_rewrite.c>
# Enable URL rewriting
RewriteEngine On
# Change this path, if your TYPO3 installation is located in a subdirectory of the website root.
RewriteBase /
# Rule for versioned static files, configured through:
# - $TYPO3_CONF_VARS['BE']['versionNumberInFilename']
# - $TYPO3_CONF_VARS['FE']['versionNumberInFilename']
# IMPORTANT: This rule has to be the very first RewriteCond in order to work!
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)\.(\d+)\.(php|js|css|png|jpg|gif|gzip)$ $1.$3 [L]
# Basic security checks
# - Restrict access to deleted files in Recycler directories
# - Restrict access to TypoScript files in default templates directories
# - Restrict access to Private extension directories
# For httpd.conf, use these lines instead of the next ones:
# RewriteRule ^/TYPO3root/fileadmin/(.*/)?_recycler_/ - [F]
# RewriteRule ^/TYPO3root/fileadmin/templates/.*(\.txt|\.ts)$ - [F]
# RewriteRule ^/TYPO3root/typo3conf/ext/[^/]+/Resources/Private/ - [F]
RewriteRule ^fileadmin/(.*/)?_recycler_/ - [F]
RewriteRule ^fileadmin/templates/.*(\.txt|\.ts)$ - [F]
RewriteRule ^typo3conf/ext/[^/]+/Resources/Private/ - [F]
# Stop rewrite processing, if we are in the typo3/ directory.
# For httpd.conf, use this line instead of the next one:
# RewriteRule ^/TYPO3root/(typo3/|t3lib/|fileadmin/|typo3conf/|typo3temp/|uploads/|favicon\.ico) - [L]
RewriteRule ^(typo3/|t3lib/|fileadmin/|typo3conf/|typo3temp/|uploads/|favicon\.ico) - [L]
# Redirect [url]http://example.com/typo3[/url] to [url]http://example.com/typo3/index_re.php[/url] and stop the rewrite processing.
# For httpd.conf, use this line instead of the next one:
# RewriteRule ^/TYPO3root/typo3$ /TYPO3root/typo3/index.php [L]
RewriteRule ^typo3$ typo3/index_re.php [L]
# If the file/symlink/directory does not exist => Redirect to index.php.
# For httpd.conf, you need to prefix each '%{REQUEST_FILENAME}' with '%{DOCUMENT_ROOT}'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
# Main URL rewriting.
# For httpd.conf, use this line instead of the next one:
# RewriteRule .* /TYPO3root/index.php [L]
RewriteRule .* index.php [L]
</IfModule>
### End: Settings for mod_rewrite ###
### Begin: PHP optimisation ###
# If you do not change the following settings, the default values will be used.
# TYPO3 works fine with register_globals turned off.
# This is highly recommended, if your web server has it turned on.
#php_flag register_globals off
### End: PHP optimisation ###
### Begin: Miscellaneous ###
# Make sure that directory listings are disabled.
#Options -Indexes
### End: Miscellaneous ###
# Add your own rules here.
# ...
Alles anzeigen
.htdocs
### Begin: Settings for mod_rewrite ###
# You need rewriting, if you use a URL-Rewriting extension (RealURL, CoolUri, SimulateStatic).
<IfModule mod_rewrite.c>
# Enable URL rewriting
RewriteEngine On
# Change this path, if your TYPO3 installation is located in a subdirectory of the website root.
RewriteBase /
# Rule for versioned static files, configured through:
# - $TYPO3_CONF_VARS['BE']['versionNumberInFilename']
# - $TYPO3_CONF_VARS['FE']['versionNumberInFilename']
# IMPORTANT: This rule has to be the very first RewriteCond in order to work!
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)\.(\d+)\.(php|js|css|png|jpg|gif|gzip)$ $1.$3 [L]
# Stop rewrite processing, if we are in the typo3/ directory.
# For httpd.conf, use this line instead of the next one:
# RewriteRule ^/TYPO3root/(typo3/|t3lib/|fileadmin/|typo3conf/|typo3temp/|uploads/|favicon\.ico) - [L]
RewriteRule ^(typo3/|t3lib/|fileadmin/|typo3conf/|typo3temp/|uploads/|favicon\.ico) - [L]
# Redirect [url]http://example.com/typo3[/url] to [url]http://example.com/typo3/index_re.php[/url] and stop the rewrite processing.
# For httpd.conf, use this line instead of the next one:
# RewriteRule ^/TYPO3root/typo3$ /TYPO3root/typo3/index.php [L]
RewriteRule ^typo3$ typo3/index_re.php [L]
# If the file/symlink/directory does not exist => Redirect to index.php.
# For httpd.conf, you need to prefix each '%{REQUEST_FILENAME}' with '%{DOCUMENT_ROOT}'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
# Main URL rewriting.
# For httpd.conf, use this line instead of the next one:
# RewriteRule .* /TYPO3root/index.php [L]
RewriteRule .* index.php [L]
</IfModule>
### End: Settings for mod_rewrite ###
### Begin: PHP optimisation ###
# If you do not change the following settings, the default values will be used.
# TYPO3 works fine with register_globals turned off.
# This is highly recommended, if your web server has it turned on.
#php_flag register_globals off
### End: PHP optimisation ###
### Begin: Miscellaneous ###
# Make sure that directory listings are disabled.
#Options -Indexes
### End: Miscellaneous ###
# Add your own rules here.
# ...
Alles anzeigen
errror.log (.htaccess in .ht1access umbenannt)
[Mon Jul 30 12:47:06 2012] [error] [client 84.176.33.122] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: [url]http://www.group-unleashed.com/[/url]
[Mon Jul 30 12:48:58 2012] [error] [client 203.81.11.241] File does not exist: /usr/share/liveconfig/html/_404_
[Mon Jul 30 13:20:40 2012] [error] [client 86.59.10.162] File does not exist: /usr/share/liveconfig/html/_404_
[Mon Jul 30 13:22:06 2012] [notice] Graceful restart requested, doing restart
[Mon Jul 30 13:22:06 2012] [notice] Apache/2.2.16 (Debian) mod_fcgid/2.3.6 configured -- resuming normal operations
[Mon Jul 30 13:22:06 2012] [warn] long lost child came home! (pid 23310)
[Mon Jul 30 13:22:25 2012] [notice] Graceful restart requested, doing restart
[Mon Jul 30 13:22:25 2012] [notice] Apache/2.2.16 (Debian) mod_fcgid/2.3.6 configured -- resuming normal operations
[Mon Jul 30 13:22:25 2012] [warn] long lost child came home! (pid 24845)
[Mon Jul 30 13:24:15 2012] [crit] [client 80.237.184.37] (13)Permission denied: /var/www/web1/apps/cloud/data/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Mon Jul 30 13:56:32 2012] [error] [client 86.59.10.162] File does not exist: /var/www/web3/htdocs/site/typo3/site
[Mon Jul 30 13:57:17 2012] [error] [client 86.59.10.162] File does not exist: /var/www/web3/htdocs/site/typo3/typo3
[Mon Jul 30 13:57:22 2012] [error] [client 86.59.10.162] File does not exist: /var/www/web3/htdocs/site/typo3/site
[Mon Jul 30 16:26:02 2012] [error] [client 88.74.117.184] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.
[Mon Jul 30 16:42:57 2012] [error] [client 66.249.72.208] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.
[Mon Jul 30 17:04:56 2012] [error] [client 84.186.245.31] File does not exist: /var/www/web3/htdocs/favicon.ico
[Mon Jul 30 17:05:13 2012] [error] [client 84.186.245.31] File does not exist: /var/www/web3/htdocs/favicon.ico
[Mon Jul 30 17:05:42 2012] [error] [client 84.186.245.31] File does not exist: /var/www/web3/htdocs/favicon.ico
[Mon Jul 30 17:18:09 2012] [error] [client 84.186.245.31] File does not exist: /var/www/web3/htdocs/favicon.ico
[Mon Jul 30 17:33:17 2012] [error] [client 66.249.71.193] File does not exist: /var/www/web1/htdocs/support
[Mon Jul 30 17:40:20 2012] [error] [client 94.199.241.136] client sent HTTP/1.1 request without hostname (see RFC2616 section 14.23): /w00tw00t.at.ISC.SANS.DFind:)
[Mon Jul 30 17:44:37 2012] [error] [client 66.249.71.20] File does not exist: /var/www/web1/apps/wp/robots.txt
[Mon Jul 30 17:44:37 2012] [error] [client 66.249.71.20] File does not exist: /var/www/web1/apps/wp/typo3conf
[Mon Jul 30 17:59:32 2012] [error] [client 46.223.154.175] File does not exist: /var/www/web3/htdocs/favicon.ico
[Mon Jul 30 17:59:37 2012] [error] [client 46.223.154.175] File does not exist: /var/www/web3/htdocs/favicon.ico
[Mon Jul 30 17:59:38 2012] [error] [client 46.223.154.175] File does not exist: /var/www/web3/htdocs/favicon.ico
[Mon Jul 30 17:59:40 2012] [error] [client 46.223.154.175] File does not exist: /var/www/web3/htdocs/favicon.ico
[Mon Jul 30 17:59:44 2012] [error] [client 46.223.154.175] File does not exist: /var/www/web3/htdocs/favicon.ico
[Mon Jul 30 17:59:58 2012] [error] [client 46.223.154.175] File does not exist: /var/www/web3/htdocs/favicon.ico
[Mon Jul 30 17:59:59 2012] [error] [client 46.223.154.175] File does not exist: /var/www/web3/htdocs/favicon.ico
[Mon Jul 30 18:00:13 2012] [error] [client 46.223.154.175] File does not exist: /var/www/web3/htdocs/favicon.ico
[Mon Jul 30 18:23:26 2012] [error] [client 46.223.154.175] File does not exist: /var/www/web3/htdocs/favicon.ico
[Mon Jul 30 18:23:29 2012] [error] [client 46.223.154.175] File does not exist: /var/www/web3/htdocs/favicon.ico
[Mon Jul 30 18:42:22 2012] [error] [client 66.249.71.68] File does not exist: /usr/share/liveconfig/html/robots.txt
[Mon Jul 30 18:42:23 2012] [error] [client 66.249.71.68] File does not exist: /usr/share/liveconfig/html/_404_
[Mon Jul 30 18:49:57 2012] [error] [client 217.233.228.85] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.
[Mon Jul 30 18:50:07 2012] [error] [client 66.249.71.193] File does not exist: /var/www/web1/htdocs/robots.txt
[Mon Jul 30 18:50:07 2012] [error] [client 66.249.71.193] Directory index forbidden by Options directive: /var/www/web1/htdocs/
[Mon Jul 30 19:10:48 2012] [error] [client 66.249.71.214] File does not exist: /usr/share/liveconfig/html/robots.txt
[Mon Jul 30 19:10:48 2012] [error] [client 66.249.71.214] File does not exist: /usr/share/liveconfig/html/_404_
[Mon Jul 30 19:12:46 2012] [error] [client 203.81.11.241] File does not exist: /usr/share/liveconfig/html/_404_
[Mon Jul 30 19:24:11 2012] [error] [client 178.200.105.142] File does not exist: /var/www/web3/htdocs/favicon.ico
[Mon Jul 30 19:36:10 2012] [error] [client 84.186.245.31] File does not exist: /var/www/web3/htdocs/favicon.ico
Alles anzeigen
Guten Tag,
Rewritebase habe ich schon aktiviert (und ich glaube auch testhalber auf "on" gestellt) leider hat das keine Wirkung erzielt.
Da ich 2 HTACCESS-Dateien habe, hab ich es gleich bei beiden geändert.
Ich habe eine bereits bestehende Webseite von Typo3 und wollte diese eben auf dem neuen Server ablegen.
Folgendes habe ich bereits versucht:
Installieren der App über LiveConfig danach den Folder "Fileadmin" mit FTP reingeladen. Auch die Datenbank habe ich ex- und importiert. Leider taucht immer wieder der selbe Fehler auf.
Ich komme auf die Admin-Seite ~/typo3/index.php aber nicht in den ordner wo die Seite startet (server: ~: /var/www/<kunde>/htdocs/site ; "site" ist in diesem Fall der Ordner wo Typo3 abgelegt ist".
Selbst wenn ich im HTACCESS die Rewritebase deaktiviere existiert immer noch der Loop.
Ich hab mir das heute in der früh nochmal angesehen.
LiveConfig:
Domain zugewiesen an http-zugang /site
in der Selben Strukturebene befinden sich bspw.
-board <- Forum
-site <- Typo3 Frontend
--typo3 <- Typo3 Backend
-Bsp1 <- Tempordner (rein für FTP)
-Bsp2 <- Temporner2 (rein für FTP)
-index.php
-index.standard.php
Wenn es aber nach den URLs geht müsste die Struktur wie folgt aussehen:
-board
-site <- Frontend
--typo3 <- Backend
-typo3 <- Backend
-Bspw
-......
-......
D.h. ich komme mit beiden URLs ins Backend (was eigentlich nicht sein sollte und von der Ordnerstruktur wie sie zu sehen ist auch nicht möglich sein kann)
http://www.xxxxxxx.com/site/typo3
http://www.xxxxxxx.com/typo3
Lg
.. es fehlt sicher irgendwo nur ein ";"
Guten Tag Hr. Keppler,
Nur kurz zum Update:
Ich habe mich gemeinsam mit einem Kollegen von mir damit befasst und scheinbar gibt es ein Problem mit dem Rewrite wenn bspw. 2 Typo3 Systeme auf ein und denselben Kunden laufen.
Bspw:
web2 besitzt die Domäne http://www.xxxxxx.com udn http://www.yyyyyy.com - hier ist eine 2te Installation scheinbar nicht möglich.
Ich hoffe ich konnte das jetzt soweit verständlich erklären. Log etc die sie weiter oben angefordert haben, habe ich per email geschickt.
Nochmal vielen Dank für ihre großartigen Bemühungen diesen Kleinigkeiten nachzugehen.
Lg,
Leonido
Hallo Keppler,
Vielen Dank für ihre Bemühung.
Ich habe mir suphp mal genauer angesehen und habe herausgefunden, dass ich hierfür PHP5 von apache deaktivieren muss.
Apache2 neugestartet danach liveconfig neugestartet und alles lief
Vielen Dank nochmal.
Guten Abend Hr. Keppler,
Bis auf das Update sowie das herrichten der IP-Tables und einer zusätzlichen firewall habe ich auf meinem Server nichts installiert.
Ich muss mal nachsehen wie ich zu diesen Infos komme.
ZitatAlles anzeigen;Loglevel
loglevel=info
;User Apache is running as
webserver_user=www-data
;Path all scripts have to be in
docroot=/var/www:${HOME}/public_html
;Path to chroot() to before executing script
;chroot=/mychroot
; Security options
allow_file_group_writeable=false
allow_file_others_writeable=false
allow_directory_group_writeable=false
allow_directory_others_writeable=false
;Check wheter script is within DOCUMENT_ROOT
check_vhost_docroot=false
;Send minor error messages to browser
errors_to_browser=false
;PATH environment variable
env_path=/bin:/usr/bin
;Umask to set, specify in octal notation
umask=0022
; Minimum UID
min_uid=100
; Minimum GID
min_gid=100
[handlers]
;Handler for php-scripts
application/x-httpd-php="php:/usr/bin/php-cgi"
application/x-httpd-suphp="php:/usr/bin/php-cgi"
;Handler for CGI-scripts
x-suphp-cgi="execute:!self"
Ich sehe dass hier die suphp.log angegeben ist aber im ordner finde ich sie nicht.
Wäre eine Neuisntallation hilfreich?
Hatte ich eigentlich auch schonmal aber scheinbar habe ich diverse Ordner die bei der Deinstallation nicht gelöscht wurden nicht entfernt.
Vielen Dank im Voraus,
Cryon
ZitatAlles anzeigen
[Fri Jul 27 19:21:40 2012] [notice] Apache/2.2.16 (Debian) configured -- resuming normal operations
[Fri Jul 27 19:21:54 2012] [notice] Graceful restart requested, doing restart
[Fri Jul 27 19:21:54 2012] [notice] Apache/2.2.16 (Debian) mod_fcgid/2.3.6 configured -- resuming normal operations
[Fri Jul 27 19:21:55 2012] [notice] child pid 7492 exit signal Segmentation fault (11)
[Fri Jul 27 19:21:55 2012] [notice] child pid 7493 exit signal Segmentation fault (11)
[Fri Jul 27 19:21:55 2012] [notice] child pid 7494 exit signal Segmentation fault (11)
[Fri Jul 27 19:21:55 2012] [notice] child pid 7495 exit signal Segmentation fault (11)
[Fri Jul 27 19:21:55 2012] [notice] child pid 7496 exit signal Segmentation fault (11)
[Fri Jul 27 19:21:55 2012] [notice] Graceful restart requested, doing restart
[Fri Jul 27 19:21:55 2012] [notice] Apache/2.2.16 (Debian) mod_fcgid/2.3.6 PHP/5.3.3-7+squeeze13 with Suhosin-Patch configured -- resuming normal operations
[Fri Jul 27 19:21:55 2012] [notice] child pid 7618 exit signal Segmentation fault (11)
[Fri Jul 27 19:22:08 2012] [notice] Graceful restart requested, doing restart
[Fri Jul 27 19:22:08 2012] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
[Fri Jul 27 19:22:08 2012] [notice] Apache/2.2.16 (Debian) mod_fcgid/2.3.6 PHP/5.3.3-7+squeeze13 with Suhosin-Patch configured -- resuming normal operations
[Fri Jul 27 22:12:47 2012] [notice] caught SIGTERM, shutting down
[Fri Jul 27 22:14:27 2012] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
[Fri Jul 27 22:14:28 2012] [notice] Apache/2.2.16 (Debian) mod_fcgid/2.3.6 PHP/5.3.3-7+squeeze13 with Suhosin-Patch configured -- resuming normal operations
[Fri Jul 27 22:55:00 2012] [notice] Graceful restart requested, doing restart
(98)Address already in use: make_sock: could not bind to address xx.xxx.xxx.xx:80
no listening sockets available, shutting down
Unable to open logs
Ich bin mir nicht sicher ob Port 80 hier wirklich relevant ist. Ich weiss aber von Portcheck aus dass der Port für Liveconfig ok ist.
suphp.log existiert bei mir nicht und soweit ich gegooglet habe muss ich hierfür php5 deaktivieren.
Bei der letzte Installation musste ich es jedenfalls nicht installieren.
Vielen Danke für die schnellen antworten.
Hallo Hr. Keppler,
Ich weiss, ich muss echt lernen die Problematik besser zu beschreiben
Also bei mir taucht nur eine leere Seite auf.
Mod_rewrite war meine erste Vermutung aber normalerweise erscheint in diesem Fall eine Fehlermeldung, was in meinem Fall ja nicht ist.
Ich benütze LiveConfig 1.5.0 auf Debian 6 und habe liveconfig-meta installiert.
Zitat
Ich bin aus Österreich und zahle wirklich am liebsten mit dieser Zahlungsart meine Rechnungen aus deutschen Firmen.
Hallo LC-Team,
Ich habe mir so eben meine Standardlizenz geholt. Ich bin zwar eine Privatperson und benütze LC rein aus Vergnügen, aber ich denke mir, dass es nie falsch ist die Arbeit von anderen zu schätzen.
Meine Lizenz habe ich über meinen Hoster bekommen, da ich weder ein Deutsches Konto noch PayPal-Account habe (ad: ist eigentlich eine Zahlung auch per Sofortüberweisung geplant?).
Ich habe den Code wie hier im Forum beschrieben über SSH eingegeben und LC über init.d neugestartet.
Alles sah am Anfang recht gut aus. Bis ich die erste Domain aktiviert habe und auch eine neue Applikation ausprobieren wollte (cloud).
Obwohl unter Domains richtig eingestellt komme ich weder auf meine HTDOCS-Seite noch auf die Application (Cloud).
Ich habe auch meinen alte alte Testlizenz (ebenfalls Standard) wieder aktiviert aber selbst dann ging es nicht.
Würde mich auf Lösungsvorschläge freuen.
Lg
Habe das selbe Problem mit der TestLinzenz für Kunden.
Oder ist das beabsichtigt deaktiviert?
Hallo,
Ich habe dummerweise den /etc/liveconfig ordner gelöscht. Wenn ich LiveConfig neu installieren möchte, wird dieser Ordner nicht erstellt. Somit wird auch liveconfig.conf nich erstellt.
Ich habe es einige Male versucht aber leider funktioniert es nicht.
Kann mir jemand helfen?
Hallo Herr Keppler,
Danke nochmal für die Hilfe. Hat jetzt alle funktioniert.
Hallo Herr Keppler,
Danke. Ich habe die Änderung in der .htacess vorgenommen. Jetzt wird mir zwar die Startseite von meiner website gezeigt, aber die verlinken fürhren immer noch auf die alte Webseite.
Beim Versuch in das Backend zu kommen /site/typo3 bekomme ich wieder die Fehlerseite und im Log die selbe Meldung.
Bitte nochmal um Hilfe bzw. Bei Typo3 selbst bekomme ich hierfür keine Info (zumindest meldet sich keiner im Forum).
Btw:
Der eigentliche Plan war, meine alte Website auf einem anderen server (ispCP) auf den neuen Server (liveconfig) zu übertragen.
Da der Import zwischen den 2 Typo3 Versionen scheinbar nicht klappt, musste ich die Datenbanken sowie die Verzeichnisse manuell auf den neuen Server aufspielen. Das ganze haltet mich mittlerweile schon seit einer Woche auf Trab.
EDIT:
Scheinbar muss ich auch die anderen HTACCESS ändern. Werde das mal machen und melde mich entsprechend
Zitat[Sun Jul 15 04:23:23 2012] [error] [client 213.47.83.54] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.
[Sun Jul 15 04:23:28 2012] [error] [client 213.47.83.54] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.
[Sun Jul 15 04:29:08 2012] [error] [client 213.47.83.54] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.
[Sun Jul 15 04:29:21 2012] [error] [client 213.47.83.54] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.
[Sun Jul 15 04:29:31 2012] [error] [client 213.47.83.54] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.
wäre wohl das näherste. Die Benutzer sind laut ls -al richtig gesetzt
Wie werde ich jetzt diesem Problem Herr?
Hallo,
Ich nütze derzeit nicht die Apps Funktion auf LC und wollte deshalb über FTP Typo3 installieren.
Scheinbar gibt es hier ein Problem mit der Vergabe der Rechte. Ich hab mich als User mit FTP eingeloggt und alle Dateien hoch geladen. Die Installation scheint gut zu funktionieren aber sobald alles fertig ist:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, [no address given] 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.
Apache/2.2.16 (Debian) Server at http://www.xxxxxxxxxxxx.com Port 80
Ich weiß, dass es hier um die Rechtevergabe geht, habe mir den Ordner aber mit
angesehen und es scheint alles richtig zu sein.
Vielleicht habe ich auch beim Kopieren auf dem Server was falsch gemacht. Habe vorher ispCP benützt und hatte mit typo3 Installationen eigentlich nur selten Probleme.
Können Sie mir helfen?
Einen wunschönen guten Abend.
Ich habe eine Lizenz für LiveConfig erworben und frage mich, ob ich für meine Lokale Testumgebung ebenfalls eine Lizenz brauche.
Lg,
C
Hallo Leute,
Ich bin ein Neuling bei LiveConfig. Mein Hoster hat es mir empfohlen und ich bin wirklich sehr zufrieden damit. Es ist eifnach zu handhaben, gut strukturiert und die Einarbeit dauerte nicht so lange.
Jetzt stoße ich aber doch auf ein kleines Hindernis.
Ich wollte Typo3 installieren. Ich bin es gewohnt das Introductionpackage zu installieren und einfach das Template nach meinen Wünschen zu ändern. Erspart viel Zeit
Beim Installieren der APP wird aber nur die Blankpage angeboten. Kann ich das irgendwo ändern bzw wird es in den nächsten Updates inkludiert?
Lg,
Cryon