Innovative project in which residences, built with more than 16 meters of linear facade, offer open and light-filled rooms. At the same time, being integrated in the extensive green areas of the Sierra de Mijas, in 16+ collection, you will enjoy the sensations of tranquility, freedom and privacy along with all the advantages of HiguerĂ³n Resort and develope a unique lifestyle with HiguerĂ³n Sport Club, HiguerĂ³n Spa or The Beach Club.

Typologies

Environments full of light

PENTHOUSE – Key Ready

Penthouse Solarium

Let yourself be amazed by the Mediterranean sunsets.

From 1.250.000€
3 Bedrooms 2.5 Bathrooms 2 Parking Spaces 1 Storage room 130 m2 built interior 188 m2 exterior built area terrace with jacuzzi and solarium Outdoor kitchen
PENTHOUSE – Key Ready

Penthouse

Bright spaces open to nature

From 1.190.000€
3 Bedrooms 2 bathrooms 2 Parking Spaces 1 Storage room 130 m2 built interior 59 m2 exterior built area terrace with jacuzzi

More than 16 meters of façade to offer open spaces in all rooms

Communal Areas

Orchard and fruit trees

Business and meeting center

Swimming pools for adults and children

Green areas

Qualities

A new world, feel it.

Aerothermal system

Ceiling height of 3 meters

Underfloor heating throughout the house

Zamperi Italian Kitchen

Free residental transportation for residents

*Domotics – smart homes

*available according to type

Location

With excellent connections
2 minutes from Higueron Resort
4 minutes from BenalmĂ¡dena and Mijas Pueblo
1 minute from the highway
15 minutes from the airport

Certifications

HiguerĂ³n Real Estate is one of the first organic and environmentally friendly developments on the Costa del Sol and qualifies for the stringent BREEAM and WELL certification for sustainable development in both the construction and energy efficient design of its properties, which in turn leads to easy and affordable maintenance.

Only a few can have it all

The homes include Platinum Beach membership, a benefit reserved solely for owners who have acquired their property with HiguerĂ³n Real Estate. These Branded Residences offer an exclusive lifestyle in one of the most established residential destinations in Southern Europe, HiguerĂ³n Resort.

With an investment exceeding €100 million, its services are developed under Hilton brand standards, naturally integrating sport, wellness, gastronomy and seaside experiences, with a focus on personalised service and everyday comfort reserved for Platinum Beach members.

file_exists(): open_basedir restriction in effect. File(action-scheduler-en_US.mo) is not within the allowed path(s): (/var/www/vhosts/higueronresortrealestate.com/:/tmp/) (500 Internal Server Error)

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

file_exists(): open_basedir restriction in effect. File(action-scheduler-en_US.mo) is not within the allowed path(s): (/var/www/vhosts/higueronresortrealestate.com/:/tmp/)

Exception

ErrorException

Show exception properties
ErrorException {#7766
  #severity: E_WARNING
}
  1. ) {
  2. $defaultPathFile = "{$defaultPathDirectory}{$locale}.mo";
  3. }
  4. $defaultPathPHP = self::replaceMoExtensionWithPhp( $defaultPathFile );
  5. if ( file_exists( $defaultPathFile ) ) {
  6. return $defaultPathFile;
  7. }
  8. if ( file_exists( $defaultPathPHP ) ) {
  9. return $defaultPathPHP;
  10. }
  1. * @throws \ErrorException
  2. */
  3. public function handleError($level, $message, $file = '', $line = 0, $context = [])
  4. {
  5. try {
  6. parent::handleError($level, $message, $file, $line, $context);
  7. } catch (Throwable $e) {
  8. if (! apply_filters('acorn/throw_error_exception', true, $e)) {
  9. return false;
  10. }
HandleExceptions->handleError()
  1. ) {
  2. $defaultPathFile = "{$defaultPathDirectory}{$locale}.mo";
  3. }
  4. $defaultPathPHP = self::replaceMoExtensionWithPhp( $defaultPathFile );
  5. if ( file_exists( $defaultPathFile ) ) {
  6. return $defaultPathFile;
  7. }
  8. if ( file_exists( $defaultPathPHP ) ) {
  9. return $defaultPathPHP;
  10. }
  1. protected function loadTextDomain() {
  2. $this->loaded_mo_dictionary
  3. ->getFiles( $this->domain, $this->locale )
  4. ->each( function( $mofile ) {
  5. $defaultTranslationPath =
  6. LoadTranslationFile::getDefaultWordPressTranslationPath( $this->domain, $this->locale );
  7. load_textdomain( $this->domain, $mofile, $this->locale );
  8. if ( $defaultTranslationPath ) {
  9. load_textdomain( $this->domain, $defaultTranslationPath, $this->locale );
  10. }
  1. }
  2. public function each(callable $callback)
  3. {
  4. foreach ($this->items as $key => $item) {
  5. if ($callback($item, $key) === false) {
  6. break;
  7. }
  8. }
  9. return $this;
  1. }
  2. protected function loadTextDomain() {
  3. $this->loaded_mo_dictionary
  4. ->getFiles( $this->domain, $this->locale )
  5. ->each( function( $mofile ) {
  6. $defaultTranslationPath =
  7. LoadTranslationFile::getDefaultWordPressTranslationPath( $this->domain, $this->locale );
  8. load_textdomain( $this->domain, $mofile, $this->locale );
  9. if ( $defaultTranslationPath ) {
  1. if ( $this->isLoaded() ) {
  2. return true;
  3. }
  4. $this->isLoading = true;
  5. $this->loadTextDomain();
  6. if ( ! $this->isLoaded() ) {
  7. $GLOBALS['l10n'][ $this->domain ] = new NOOP_Translations();
  8. }
  1. public function translate( $singular, $context = null ) {
  2. if ( $this->isLoading ) {
  3. return $singular;
  4. }
  5. $this->load();
  6. return _x( $singular, $context, $this->domain );
  7. }
  8. public function translate_plural( $singular, $plural, $count, $context = null ) {
  9. if ( $this->isLoading ) {
  1. * Default 'default'.
  2. * @return string Translated text.
  3. */
  4. function translate( $text, $domain = 'default' ) {
  5. $translations = get_translations_for_domain( $domain );
  6. $translation = $translations->translate( $text );
  7. /**
  8. * Filters text with its translation.
  9. *
  10. * @since 2.0.11
  1. * @param string $domain Optional. Text domain. Unique identifier for retrieving translated strings.
  2. * Default 'default'.
  3. * @return string Translated text.
  4. */
  5. function __( $text, $domain = 'default' ) {
  6. return translate( $text, $domain );
  7. }
  8. /**
  9. * Retrieves the translation of $text and escapes it for safe use in an attribute.
  10. *
  1. * @return array<string, array<string, int|string>>
  2. */
  3. public function add_wp_cron_schedule( $schedules ) {
  4. $schedules['every_minute'] = array(
  5. 'interval' => 60, // in seconds.
  6. 'display' => __( 'Every minute', 'action-scheduler' ),
  7. );
  8. return $schedules;
  9. }
  10. }
ActionScheduler_QueueRunner->add_wp_cron_schedule() in /var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-includes/class-wp-hook.php (line 353)
  1. // Avoid the array_slice() if possible.
  2. if ( 0 === $the_['accepted_args'] ) {
  3. $value = call_user_func( $the_['function'] );
  4. } elseif ( $the_['accepted_args'] >= $num_args ) {
  5. $value = call_user_func_array( $the_['function'], $args );
  6. } else {
  7. $value = call_user_func_array( $the_['function'], array_slice( $args, 0, $the_['accepted_args'] ) );
  8. }
  9. }
  10. } while ( false !== next( $this->iterations[ $nesting_level ] ) );
  1. }
  2. // Pass the value to WP_Hook.
  3. array_unshift( $args, $value );
  4. $filtered = $wp_filter[ $hook_name ]->apply_filters( $value, $args );
  5. array_pop( $wp_current_filter );
  6. return $filtered;
  7. }
  1. * @type int $interval The schedule interval in seconds.
  2. * @type string $display The schedule display name.
  3. * }
  4. * }
  5. */
  6. return array_merge( apply_filters( 'cron_schedules', array() ), $schedules );
  7. }
  8. /**
  9. * Retrieves the name of the recurrence schedule for an event.
  10. *
  1. $keys = array_keys( $crons );
  2. if ( isset( $keys[0] ) && $keys[0] > $gmt_time ) {
  3. return 0;
  4. }
  5. $schedules = wp_get_schedules();
  6. $results = array();
  7. foreach ( $crons as $timestamp => $cronhooks ) {
  8. if ( $timestamp > $gmt_time ) {
  9. break;
  1. // Avoid the array_slice() if possible.
  2. if ( 0 === $the_['accepted_args'] ) {
  3. $value = call_user_func( $the_['function'] );
  4. } elseif ( $the_['accepted_args'] >= $num_args ) {
  5. $value = call_user_func_array( $the_['function'], $args );
  6. } else {
  7. $value = call_user_func_array( $the_['function'], array_slice( $args, 0, $the_['accepted_args'] ) );
  8. }
  9. }
  10. } while ( false !== next( $this->iterations[ $nesting_level ] ) );
  1. *
  2. * @param array $args Parameters to pass to the callback functions.
  3. */
  4. public function do_action( $args ) {
  5. $this->doing_action = true;
  6. $this->apply_filters( '', $args );
  7. // If there are recursive calls to the current action, we haven't finished it until we get to the last one.
  8. if ( ! $this->nesting_level ) {
  9. $this->doing_action = false;
  10. }
  1. } elseif ( is_array( $arg[0] ) && 1 === count( $arg[0] ) && isset( $arg[0][0] ) && is_object( $arg[0][0] ) ) {
  2. // Backward compatibility for PHP4-style passing of `array( &$this )` as action `$arg`.
  3. $arg[0] = $arg[0][0];
  4. }
  5. $wp_filter[ $hook_name ]->do_action( $arg );
  6. array_pop( $wp_current_filter );
  7. }
  8. /**
  1. /**
  2. * Fires just before PHP shuts down execution.
  3. *
  4. * @since 1.2.0
  5. */
  6. do_action( 'shutdown' );
  7. wp_cache_close();
  8. }
  9. /**
shutdown_action_hook()

Stack Trace

ErrorException
ErrorException:
file_exists(): open_basedir restriction in effect. File(action-scheduler-en_US.mo) is not within the allowed path(s): (/var/www/vhosts/higueronresortrealestate.com/:/tmp/)

  at /var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-content/plugins/wpml-string-translation/classes/MO/Hooks/LoadTranslationFile.php:76
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-content/themes/nube-builder/vendor/roots/acorn/src/Roots/Acorn/Bootstrap/HandleExceptions.php:49)
  at Roots\Acorn\Bootstrap\HandleExceptions->handleError()
  at file_exists()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-content/plugins/wpml-string-translation/classes/MO/Hooks/LoadTranslationFile.php:76)
  at WPML\ST\MO\Hooks\LoadTranslationFile::getDefaultWordPressTranslationPath()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-content/plugins/wpml-string-translation/classes/MO/JustInTime/MO.php:68)
  at WPML\ST\MO\JustInTime\MO->WPML\ST\MO\JustInTime\{closure}()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-content/plugins/sitepress-multilingual-cms/vendor/wpml/collect/src/Illuminate/Support/Collection.php:145)
  at WPML\Collect\Support\Collection->each()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-content/plugins/wpml-string-translation/classes/MO/JustInTime/MO.php:66)
  at WPML\ST\MO\JustInTime\MO->loadTextDomain()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-content/plugins/wpml-string-translation/classes/MO/JustInTime/MO.php:54)
  at WPML\ST\MO\JustInTime\MO->load()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-content/plugins/wpml-string-translation/classes/MO/JustInTime/MO.php:35)
  at WPML\ST\MO\JustInTime\MO->translate()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-includes/l10n.php:196)
  at translate()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-includes/l10n.php:307)
  at __()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-content/plugins/seo-by-rank-math/vendor/woocommerce/action-scheduler/classes/ActionScheduler_QueueRunner.php:249)
  at ActionScheduler_QueueRunner->add_wp_cron_schedule()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-includes/class-wp-hook.php:353)
  at WP_Hook->apply_filters()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-includes/plugin.php:206)
  at apply_filters()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-includes/cron.php:1169)
  at wp_get_schedules()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-includes/cron.php:1067)
  at _wp_cron()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-includes/class-wp-hook.php:353)
  at WP_Hook->apply_filters()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-includes/class-wp-hook.php:377)
  at WP_Hook->do_action()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-includes/plugin.php:523)
  at do_action()
     (/var/www/vhosts/higueronresortrealestate.com/httpdocs/wp-includes/load.php:1308)
  at shutdown_action_hook()