Alpenclub Kriens

Touren / Events anzeigen / auswählen

Veranstaltungskalender

  • Montag
  • Dienstag
  • Mittwoch
  • Donnerstag
  • Freitag
  • Samstag
  • Sonntag
  • Freitag, März 1
  • Samstag, März 2
  • Sonntag, März 3
  • Montag, März 4
  • Dienstag, März 5
  • Mittwoch, März 6
  • Donnerstag, März 7
  • Freitag, März 8
  • Samstag, März 9
  • Sonntag, März 10
  • Montag, März 11
  • Dienstag, März 12
  • Mittwoch, März 13
  • Donnerstag, März 14
  • Freitag, März 15
  • Samstag, März 16
  • Sonntag, März 17
  • Montag, März 18
  • Dienstag, März 19
  • Mittwoch, März 20
  • Donnerstag, März 21
  • Freitag, März 22
  • Samstag, März 23
  • Sonntag, März 24
  • Montag, März 25
  • Dienstag, März 26
  • Mittwoch, März 27
  • Donnerstag, März 28
  • Freitag, März 29
  • Samstag, März 30
  • Sonntag, März 31

Alpenclub Kriens

6010 Kriens
Info@ackriens.ch



Termine ACK

Oktober   2024
M D M D F S S
  1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31      

Newsletter-Anmeldung ACK

Bitte die benötigten Felder ausfüllen, merci!
Bitte die benötigten Felder ausfüllen, merci!

Warning: include(/home/lidivoke/www/joomla4.ackriens.ch/libraries/vendor/phpmailer/phpmailer/src/PHPMailer.php) [function.include.php]: Failed to open stream: Permission denied in /home/lidivoke/www/joomla4.ackriens.ch/libraries/vendor/composer/ClassLoader.php on line 571

Warning: include() [function.include.php]: Failed opening '/home/lidivoke/www/joomla4.ackriens.ch/libraries/vendor/composer/../phpmailer/phpmailer/src/PHPMailer.php' for inclusion (include_path='.:/usr/local/share/pear') in /home/lidivoke/www/joomla4.ackriens.ch/libraries/vendor/composer/ClassLoader.php on line 571
Attempted to load class "PHPMailer" from namespace "PHPMailer\PHPMailer". Did you forget a "use" statement for another namespace? (500 Whoops, looks like something went wrong.)

ClassNotFoundError

HTTP 500 Whoops, looks like something went wrong.

Attempted to load class "PHPMailer" from namespace "PHPMailer\PHPMailer".
Did you forget a "use" statement for another namespace?

Exception

Symfony\Component\ErrorHandler\Error\ ClassNotFoundError

  1. /**
  2.  * Email Class.  Provides a common interface to send email from the Joomla! Platform
  3.  *
  4.  * @since  1.7.0
  5.  */
  6. class Mail extends PHPMailer implements MailerInterface
  7. {
  8.     /**
  9.      * Mail instances container.
  10.      *
  11.      * @var    Mail[]
  1.  * @return void
  2.  * @private
  3.  */
  4. function includeFile($file)
  5. {
  6.     include $file;
  7. }
  1.      * @return true|null True if loaded, null otherwise
  2.      */
  3.     public function loadClass($class)
  4.     {
  5.         if ($file $this->findFile($class)) {
  6.             includeFile($file);
  7.             return true;
  8.         }
  9.         return null;
ClassLoader->loadClass('Joomla\\CMS\\Mail\\Mail') in /home/lidivoke/www/joomla4.ackriens.ch/libraries/src/Autoload/ClassLoader.php (line 59)
  1.      *
  2.      * @since   3.4
  3.      */
  4.     public function loadClass($class)
  5.     {
  6.         if ($result $this->loader->loadClass($class)) {
  7.             \JLoader::applyAliasFor($class);
  8.         }
  9.         return $result;
  10.     }
ClassLoader->loadClass('Joomla\\CMS\\Mail\\Mail') in /home/lidivoke/www/joomla4.ackriens.ch/libraries/src/Mail/MailerFactory.php (line 63)
  1.         if ($settings) {
  2.             $configuration->merge($settings);
  3.         }
  4.         $mailer = new Mail((bool) $configuration->get('throw_exceptions'true));
  5.         $smtpauth   $configuration->get('smtpauth') == null 1;
  6.         $smtpuser   $configuration->get('smtpuser');
  7.         $smtppass   $configuration->get('smtppass');
  8.         $smtphost   $configuration->get('smtphost');
MailerFactory->createMailer(object(Registry)) in /home/lidivoke/www/joomla4.ackriens.ch/libraries/src/Factory.php (line 708)
  1.      *              Example:
  2.      *              Factory::getContainer()->get(MailerFactoryInterface::class)->createMailer();
  3.      */
  4.     protected static function createMailer()
  5.     {
  6.         $mailer self::getContainer()->get(MailerFactoryInterface::class)->createMailer(self::getConfig());
  7.         // This needs to be set here for backwards compatibility
  8.         Mail::$instances['Joomla'] = $mailer;
  9.         return $mailer;
  1.      *              Factory::getContainer()->get(MailerFactoryInterface::class)->createMailer();
  2.      */
  3.     public static function getMailer()
  4.     {
  5.         if (!self::$mailer) {
  6.             self::$mailer self::createMailer();
  7.         }
  8.         $copy = clone self::$mailer;
  9.         return $copy;
  1.      *
  2.      * @return Mail
  3.      */
  4.     public static function getMailer($config$event null)
  5.     {
  6.         $mailer Factory::getMailer();
  7.         if ($config->reply_to_email && MailHelper::isEmailAddress($config->reply_to_email))
  8.         {
  9.             $mailer->addReplyTo($config->reply_to_email);
  10.         }
EventbookingHelperMail::getMailer(object(RADConfig)) in /home/lidivoke/www/joomla4.ackriens.ch/components/com_eventbooking/helper/mail.php (line 1643)
  1.         /* @var \Joomla\Database\DatabaseDriver $db */
  2.         $db      Factory::getContainer()->get('db');
  3.         $query   $db->getQuery(true);
  4.         $config  EventbookingHelper::getConfig();
  5.         $message EventbookingHelper::getMessages();
  6.         $mailer  = static::getMailer($config);
  7.         $now     $db->quote(Factory::getDate('now'Factory::getApplication()->get('offset'))->toSql(true));
  8.         $bccEmail                $params->get('bcc_email''');
  9.         $numberEmailSendEachTime = (int) $params->get('number_registrants'15) ?: 15;
EventbookingHelperMail::sendReminderEmails(object(Registry), 1) in /home/lidivoke/www/joomla4.ackriens.ch/components/com_eventbooking/helper/helper.php (line 871)
  1.         foreach (array_reverse($callableMethods) as $callable)
  2.         {
  3.             if (is_callable($callable))
  4.             {
  5.                 return call_user_func_array($callable$methodArgs);
  6.             }
  7.         }
  8.         throw new Exception(sprintf('Method %s does not exist in the helper %s'$method$helper));
  9.     }
EventbookingHelper::callOverridableHelperMethod('Mail', 'sendReminderEmails', array(object(Registry), 1)) in /home/lidivoke/www/joomla4.ackriens.ch/plugins/system/ebreminder/ebreminder.php (line 85)
  1.             // This is for backward compatible purpose
  2.             EventbookingHelper::callOverridableHelperMethod('Mail''sendReminder', [$numberEmailSendEachTime$bccEmail$this->params]);
  3.         }
  4.         else
  5.         {
  6.             EventbookingHelper::callOverridableHelperMethod('Mail''sendReminderEmails', [$this->params1]);
  7.         }
  8.         // Send second reminder
  9.         if (is_callable('EventbookingHelperOverrideMail::sendSecondReminder'))
  10.         {
  1.                 if ($event->isStopped())
  2.                 {
  3.                     return $event;
  4.                 }
  5.                 $listener($event);
  6.             }
  7.         }
  8.         return $event;
  9.     }
  1.         // Send the application response.
  2.         $this->respond();
  3.         // Trigger the onAfterRespond event.
  4.         $this->getDispatcher()->dispatch('onAfterRespond');
  5.     }
  6.     /**
  7.      * Check if the user is required to reset their password.
  8.      *
CMSApplication->execute() in /home/lidivoke/www/joomla4.ackriens.ch/includes/app.php (line 61)
  1. // Set the application as global app
  2. \Joomla\CMS\Factory::$application $app;
  3. // Execute the application.
  4. $app->execute();
require_once('/home/lidivoke/www/joomla4.ackriens.ch/includes/app.php') in /home/lidivoke/www/joomla4.ackriens.ch/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

ClassNotFoundError
Symfony\Component\ErrorHandler\Error\ClassNotFoundError:
Attempted to load class "PHPMailer" from namespace "PHPMailer\PHPMailer".
Did you forget a "use" statement for another namespace?

  at /home/lidivoke/www/joomla4.ackriens.ch/libraries/src/Mail/Mail.php:28
  at include()
     (/home/lidivoke/www/joomla4.ackriens.ch/libraries/vendor/composer/ClassLoader.php:571)
  at Composer\Autoload\includeFile('/home/lidivoke/www/joomla4.ackriens.ch/libraries/vendor/composer/../../../libraries/src/Mail/Mail.php')
     (/home/lidivoke/www/joomla4.ackriens.ch/libraries/vendor/composer/ClassLoader.php:428)
  at Composer\Autoload\ClassLoader->loadClass('Joomla\\CMS\\Mail\\Mail')
     (/home/lidivoke/www/joomla4.ackriens.ch/libraries/src/Autoload/ClassLoader.php:59)
  at Joomla\CMS\Autoload\ClassLoader->loadClass('Joomla\\CMS\\Mail\\Mail')
     (/home/lidivoke/www/joomla4.ackriens.ch/libraries/src/Mail/MailerFactory.php:63)
  at Joomla\CMS\Mail\MailerFactory->createMailer(object(Registry))
     (/home/lidivoke/www/joomla4.ackriens.ch/libraries/src/Factory.php:708)
  at Joomla\CMS\Factory::createMailer()
     (/home/lidivoke/www/joomla4.ackriens.ch/libraries/src/Factory.php:490)
  at Joomla\CMS\Factory::getMailer()
     (/home/lidivoke/www/joomla4.ackriens.ch/components/com_eventbooking/helper/mail.php:2140)
  at EventbookingHelperMail::getMailer(object(RADConfig))
     (/home/lidivoke/www/joomla4.ackriens.ch/components/com_eventbooking/helper/mail.php:1643)
  at EventbookingHelperMail::sendReminderEmails(object(Registry), 1)
     (/home/lidivoke/www/joomla4.ackriens.ch/components/com_eventbooking/helper/helper.php:871)
  at EventbookingHelper::callOverridableHelperMethod('Mail', 'sendReminderEmails', array(object(Registry), 1))
     (/home/lidivoke/www/joomla4.ackriens.ch/plugins/system/ebreminder/ebreminder.php:85)
  at plgSystemEBReminder->onAfterRespond(object(Event))
     (/home/lidivoke/www/joomla4.ackriens.ch/libraries/vendor/joomla/event/src/Dispatcher.php:486)
  at Joomla\Event\Dispatcher->dispatch('onAfterRespond')
     (/home/lidivoke/www/joomla4.ackriens.ch/libraries/src/Application/CMSApplication.php:332)
  at Joomla\CMS\Application\CMSApplication->execute()
     (/home/lidivoke/www/joomla4.ackriens.ch/includes/app.php:61)
  at require_once('/home/lidivoke/www/joomla4.ackriens.ch/includes/app.php')
     (/home/lidivoke/www/joomla4.ackriens.ch/index.php:32)