Skip to main content

Sonstige Sehenswürdigkeiten

Kategorie Sonstige Sehenswürdigkeiten

gemütliches Treiben unterm Dach vom Sony Center auf dem Potsdamer Platz in Berlin.
gemütliches Treiben unterm Dach vom Sony Center auf dem Potsdamer Platz in Berlin.

Ehemals Sony Center – heute Das Center auf dem Potsdamer Platz in Berlin

Das Center am Potsdamer Platz (ehemals Sony Center) ist Teil des Gebäudeensembles am Potsdamer Platz. In Berlin-Mitte gelegen, bildet dieses eindrucksvolle architektonische Meisterwerk das neue Entertainment-Zentrum Berlins.


Das Center am Potsdamer Platz – Berlins pulsierendes Herz für Entertainment, Kultur und Innovation am historischen Potsdamer Platz.



Sieben Gebäude, gruppiert um ein offenes Forum mit einem aufsehenerregenden Dach bieten hier viel Platz für Kunst und Kultur, Arbeiten, Wohnen, Unterhaltung und Gastronomie.
Das ovale Forum, welches sich als öffentlichen Stadtraum versteht, ist der zentrale Mittelpunkt im Center am Potsdamer Platz. Es ist eine beliebte Location für Großveranstaltungen wie Produkt-Präsentationen, Filmpremieren, sowie für Sport, Kunst- und Kulturveranstaltungen. Im Forum finden sich außerdem das deutsche Museum für Film und Fernsehen, welches zu einer Zeitreise durch mehr als ein Jahrhundert deutscher Filmgeschichte einlädt, zahlreiche erstklassige Restaurants laden zum Verweilen ein, sowie das “Legoland Discovery Center”, welches ein toller Spaß für die ganze Familie ist.

Der Sony Flagship-Store bietet hier zudem auf 4 Etagen ein Überblick über das breite Angebot der namensgebenden Firma.

Das Center am Potsdamer Platz ist ein Muss für alle Berlinbesucher und die erste Anlaufstelle für alle Filmfans.

Das Center auf dem Potsdamer Platz

Lage & Nebenschauplätze

Das Center am Potsdamer Platz in Berlin ist die neue Mitte Berlins und befindet sich auf dem Potsdamer Platz, ein zentraler Punkt in Berlin, von dem Sie in viele Richtungen der Stadt starten können. Auf dem Platz und in unmittelbarer Nähe gibt es viele Sehenswürdigkeiten. Zudem erreichen Sie schnell zu Fuß das Holocaust Mahnmal, das Musikinstrumenten-Museum, die Gemäldegalerie und das Brandenburger Tor.

Besuchen Sie gerne jetzt schon das Center am Potsdamer Platz in unserem Video.

Sony Center in Berlin

Kurze Geschichte über das Center am Potsdamer Platz

Der seit den 1920er pulsierende Potsdamer Platz wurde im Zweiten Weltkrieg fast vollständig zerstört, nach dem Bau der Berliner Mauer 1961 geteilt und zu einer brachliegenden Fläche zwischen Ost und West in Mitleidenschaft gezogen. Auf diesem historischen Boden entstand das moderne Ensemble des Sony Centers, welches der in Chicago ansässige, deutsche Star-Architekt Helmut Jahn entwarf.
Die zeltförmige weiße Dachkonstruktion stellte eine spektakuläre Ingenieurleistung dar und sollte dem japanischen Berg Fujiyama ähneln.
Drei Jahre betrug die Konstruktionszeit dieses äußerst komplexen Bauvorhabens. Am 20. Januar 2000 wurde der Entertainmentbereich des Centers eröffnet. Noch heute fasziniert es durch seine Imposanz und Modernität tagtäglich seine Besucher.

Adresse, Öffnungszeiten …

Adresse: Potsdamer Platz 1, 10785 Berlin
Anbindung: S+U Bahnhof Potsdamer Platz (S1, S2, S25, U2) Bus: Potsdamer Platz (M41, M48. M85, 200, N2)

 

  Besuche die offizielle Webseite!

  Weitere Infos auf Wikipedia!

  Navigiere mit Google Maps & Street View!


Wetter

Berliner Wetter

Auf einen Blick

Das Center am Potsdamer Platz – Berlins pulsierendes Herz für Entertainment, Kultur und Innovation am historischen Potsdamer Platz.


Impressionen


Alle Angebote im Überblick.


Mit den besten Tipps für Berlin... bei Welcome to Berlin.


Powered by GetYourGuide

Warning: file_put_contents(/mnt/web614/b0/69/511984669/htdocs/joomla/administrator/logs/com_jchoptimize.logs.php): Failed to open stream: Disk quota exceeded in /mnt/web614/b0/69/511984669/htdocs/joomla/libraries/src/Filesystem/File.php on line 445 Cannot write to log file. (500 Whoops, looks like something went wrong.)

Cannot write to log file.

Exception

RuntimeException

  1.         // Build the log file header.
  2.         $head $this->generateFileHeader();
  3.         if (!File::write($this->path$head)) {
  4.             throw new \RuntimeException('Cannot write to log file.');
  5.         }
  6.     }
  7.     /**
  8.      * Method to parse the format string into an array of fields.
  1.         if ($this->defer) {
  2.             $this->deferredEntries[] = $entry;
  3.         } else {
  4.             // Write it immediately.
  5.             // Initialise the file if not already done.
  6.             $this->initFile();
  7.             // Write the new entry to the file.
  8.             $line $this->formatLine($entry);
  9.             $line .= "\n";
FormattedtextLogger->addEntry() in /mnt/web614/b0/69/511984669/htdocs/joomla/libraries/src/Log/Log.php (line 351)
  1.                 $this->loggers[$signature] = new $class($this->configurations[$signature]);
  2.             }
  3.             // Add the entry to the logger.
  4.             $this->loggers[$signature]->addEntry(clone $entry);
  5.         }
  6.     }
  7.     /**
  8.      * Method to find the loggers to use based on priority and category values.
  1.         // If the entry object isn't a LogEntry object let's make one.
  2.         if (!($entry instanceof LogEntry)) {
  3.             $entry = new LogEntry((string) $entry$priority$category$date$context);
  4.         }
  5.         static::$instance->addLogEntry($entry);
  6.     }
  7.     /**
  8.      * Add a logger to the Log instance.  Loggers route log entries to the correct files/systems to be logged.
  9.      *
  1.         }
  2.         $priority $this->psrToJoomlaPriorityMap[$level];
  3.         $date = @$context['date'] ?? null;
  4.         Log::add((string) $message$priority$this->category$date$context);
  5.     }
  6. }
  1.      *
  2.      * @return void
  3.      */
  4.     public function error($message, array $context = array())
  5.     {
  6.         $this->log(LogLevel::ERROR$message$context);
  7.     }
  8.     /**
  9.      * Exceptional occurrences that are not errors.
  10.      *
  11.      * Example: Use of deprecated APIs, poor use of an API, undesirable things
  1.     public static function logException(Exception $e): void
  2.     {
  3.         $container ContainerFactory::getContainer();
  4.         /** @var LoggerInterface $logger */
  5.         $logger $container->get(LoggerInterface::class);
  6.         $logger->error((string)$e);
  7.     }
  8. }
  1.     public function onException(ExceptionEvent $event)
  2.     {
  3.         $options $this->getOptions();
  4.         $callback $options->getExceptionCallback();
  5.         if ($callback) {
  6.             call_user_func($callback$event->getException());
  7.         }
  8.         $event->setThrowException($options->getThrowExceptions());
  9.     }
  10. }
  1.         // Execute listeners
  2.         $responses = new ResponseCollection();
  3.         foreach ($listOfListenersByPriority as $listOfListeners) {
  4.             foreach ($listOfListeners as $listeners) {
  5.                 foreach ($listeners as $listener) {
  6.                     $response $listener($event);
  7.                     $responses->push($response);
  8.                     // If the event was asked to stop propagating, do so
  9.                     if ($event->propagationIsStopped()) {
  10.                         $responses->setStopped(\true);
  11.                         return $responses;
  1.     /**
  2.      * @inheritDoc
  3.      */
  4.     public function triggerEvent(EventInterface $event)
  5.     {
  6.         return $this->triggerListeners($event);
  7.     }
  8.     /**
  9.      * @inheritDoc
  10.      */
  11.     public function triggerEventUntil(callable $callbackEventInterface $event)
  1.      * @return mixed
  2.      */
  3.     protected function triggerException($eventNameArrayObject $args, &$result\Exception $exception)
  4.     {
  5.         $exceptionEvent = new ExceptionEvent($eventName '.exception'$this$args$result$exception);
  6.         $eventRs $this->getEventManager()->triggerEvent($exceptionEvent);
  7.         if ($exceptionEvent->getThrowException()) {
  8.             throw $exceptionEvent->getException();
  9.         }
  10.         return $eventRs->stopped() ? $eventRs->last() : $exceptionEvent->getResult();
  11.     }
  1.             $eventRs $this->triggerPre(__FUNCTION__$args);
  2.             $result $eventRs->stopped() ? $eventRs->last() : $this->internalSetItem($args['key'], $args['value']);
  3.             return $this->triggerPost(__FUNCTION__$args$result);
  4.         } catch (\Exception $e) {
  5.             $result \false;
  6.             return $this->triggerException(__FUNCTION__$args$result$e);
  7.         }
  8.     }
  9.     /**
  10.      * Internal method to store an item.
  11.      *
  1.     {
  2.         $options $this->getOptions();
  3.         if ($options->getWritable() && $options->getClearStatCache()) {
  4.             $this->filesystem->clearStatCache();
  5.         }
  6.         return parent::setItem($key$value);
  7.     }
  8.     /**
  9.      * Store multiple items.
  10.      *
  11.      * @param  array $keyValuePairs
  1.                 'headers' => $this->utility->getHeaders()
  2.             ];
  3.             try {
  4.                 //Save an empty page using the same id then tag it
  5.                 $this->taggableCache->setItem(
  6.                     $this->cacheId,
  7.                     '<html lang><head><title></title></head><body></body></html>'
  8.                 );
  9.                 $this->taggableCache->setTags(
  10.                     $this->cacheId,
  1.         //Page cache could be disabled at runtime so check again here
  2.         if ($this->enabled && $this->app instanceof CMSApplication && $this->pageCache->getCachingEnabled()) {
  3.             $body $this->app->getBody();
  4.             //Still need to validate the HTMl here. We may be on a redirect.
  5.             if (Helper::validateHtml($body)) {
  6.                 $this->pageCache->store($this->addUpdateHitScript($this->addUpdateFormTokenAjax($body)));
  7.             }
  8.         }
  9.     }
  10.     /**
  1.             foreach ($this->listeners[$event->getName()] as $listener) {
  2.                 if ($event->isStopped()) {
  3.                     return $event;
  4.                 }
  5.                 $listener($event);
  6.             }
  7.         }
  8.         return $event;
  9.     }
  1.             $dispatcher $this->getDispatcher();
  2.         } catch (\UnexpectedValueException $exception) {
  3.             return null;
  4.         }
  5.         return $dispatcher->dispatch($eventName$event ?: new ApplicationEvent($eventName$this));
  6.     }
  7.     /**
  8.      * Method to run the application routines.
  9.      *
  1.         // Send the application response.
  2.         $this->respond();
  3.         // Trigger the onAfterRespond event.
  4.         $this->dispatchEvent(
  5.             'onAfterRespond',
  6.             new AfterRespondEvent('onAfterRespond', ['subject' => $this])
  7.         );
  8.     }
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/mnt/web614/b0/69/511984669/htdocs/joomla/includes/app.php') in /mnt/web614/b0/69/511984669/htdocs/joomla/index.php (line 32)
  1.  * define() is used rather than "const" to not error for PHP 5.2 and lower
  2.  */
  3. define('_JEXEC'1);
  4. // Run the application - All executable code should be triggered through this file
  5. require_once dirname(__FILE__) . '/includes/app.php';

Stack Trace

RuntimeException
RuntimeException:
Cannot write to log file.

  at /mnt/web614/b0/69/511984669/htdocs/joomla/libraries/src/Log/Logger/FormattedtextLogger.php:273
  at Joomla\CMS\Log\Logger\FormattedtextLogger->initFile()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/libraries/src/Log/Logger/FormattedtextLogger.php:162)
  at Joomla\CMS\Log\Logger\FormattedtextLogger->addEntry()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/libraries/src/Log/Log.php:351)
  at Joomla\CMS\Log\Log->addLogEntry()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/libraries/src/Log/Log.php:176)
  at Joomla\CMS\Log\Log::add()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/administrator/components/com_jchoptimize/src/Joomla/Log/JoomlaLogger.php:63)
  at CodeAlfa\Component\JchOptimize\Administrator\Joomla\Log\JoomlaLogger->log()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/administrator/components/com_jchoptimize/lib/vendor/psr/log/Psr/Log/AbstractLogger.php:66)
  at _JchOptimizeVendor\Psr\Log\AbstractLogger->error()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/administrator/components/com_jchoptimize/lib/src/Laminas/Plugins/ExceptionHandler.php:27)
  at JchOptimize\Core\Laminas\Plugins\ExceptionHandler::logException()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache/src/Storage/Plugin/ExceptionHandler.php:55)
  at _JchOptimizeVendor\Laminas\Cache\Storage\Plugin\ExceptionHandler->onException()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-eventmanager/src/EventManager.php:270)
  at _JchOptimizeVendor\Laminas\EventManager\EventManager->triggerListeners()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-eventmanager/src/EventManager.php:148)
  at _JchOptimizeVendor\Laminas\EventManager\EventManager->triggerEvent()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache/src/Storage/Adapter/AbstractAdapter.php:224)
  at _JchOptimizeVendor\Laminas\Cache\Storage\Adapter\AbstractAdapter->triggerException()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache/src/Storage/Adapter/AbstractAdapter.php:566)
  at _JchOptimizeVendor\Laminas\Cache\Storage\Adapter\AbstractAdapter->setItem()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/administrator/components/com_jchoptimize/lib/vendor/laminas/laminas-cache-storage-adapter-filesystem/src/Filesystem.php:716)
  at _JchOptimizeVendor\Laminas\Cache\Storage\Adapter\Filesystem->setItem()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/administrator/components/com_jchoptimize/lib/src/PageCache/PageCache.php:222)
  at JchOptimize\Core\PageCache\PageCache->store()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/plugins/system/jchpagecache/src/Extension/JchPageCache.php:178)
  at CodeAlfa\Plugin\System\JchPageCache\Extension\JchPageCache->onAfterRespond()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/libraries/vendor/joomla/event/src/Dispatcher.php:454)
  at Joomla\Event\Dispatcher->dispatch()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/libraries/vendor/joomla/application/src/AbstractApplication.php:99)
  at Joomla\Application\AbstractApplication->dispatchEvent()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/libraries/src/Application/CMSApplication.php:349)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/mnt/web614/b0/69/511984669/htdocs/joomla/includes/app.php:58)
  at require_once('/mnt/web614/b0/69/511984669/htdocs/joomla/includes/app.php')
     (/mnt/web614/b0/69/511984669/htdocs/joomla/index.php:32)