Warning (512): /var/www/html/site-amtalentrecruiting.com/tmp/cache/models/ is not writable [CORE/src/Cache/Engine/FileEngine.php, line 412]Code Context $this->_config['path']
), E_USER_WARNING);
}
$dir =
object(SplFileInfo) id:0 {}
$path = '/var/www/html/site-amtalentrecruiting.com/tmp/cache/models'
$success = true
$isWritableDir = false
Cake\Cache\Engine\FileEngine::_active() - CORE/src/Cache/Engine/FileEngine.php, line 412
Cake\Cache\Engine\FileEngine::init() - CORE/src/Cache/Engine/FileEngine.php, line 101
Cake\Cache\CacheRegistry::_create() - CORE/src/Cache/CacheRegistry.php, line 88
Cake\Core\ObjectRegistry::load() - CORE/src/Core/ObjectRegistry.php, line 108
Cake\Cache\Cache::_buildEngine() - CORE/src/Cache/Cache.php, line 157
Cake\Cache\Cache::pool() - CORE/src/Cache/Cache.php, line 230
Cake\Database\Connection::getCacher() - CORE/src/Database/Connection.php, line 836
Cake\Database\Connection::getSchemaCollection() - CORE/src/Database/Connection.php, line 401
Cake\ORM\Table::getSchema() - CORE/src/ORM/Table.php, line 508
Cake\ORM\Query::addDefaultTypes() - CORE/src/ORM/Query.php, line 277
Cake\ORM\Query::__construct() - CORE/src/ORM/Query.php, line 177
Cake\ORM\Table::query() - CORE/src/ORM/Table.php, line 1679
Cake\ORM\Table::find() - CORE/src/ORM/Table.php, line 1261
Admin\Model\Behavior\MyBehavior::field() - ROOT/plugins/Admin/src/Model/Behavior/MyBehavior.php, line 213
Cake\ORM\BehaviorRegistry::call() - CORE/src/ORM/BehaviorRegistry.php, line 252
Cake\ORM\Table::__call() - CORE/src/ORM/Table.php, line 2577
Warning: rename(/var/www/html/site-amtalentrecruiting.com/logs/error.log,/var/www/html/site-amtalentrecruiting.com/logs/error.log.1751640741) [function.rename]: Permission denied in /var/www/html/site-amtalentrecruiting.com/vendor/cakephp/cakephp/src/Log/Engine/FileLog.php on line 197
Warning (2): file_put_contents(/var/www/html/site-amtalentrecruiting.com/tmp/cache/templates/F-f4d3f58c-40f7-45b2-9fa5-01b0d43d0d78) [<a href='https://secure.php.net/function.file-put-contents'>function.file-put-contents</a>]: failed to open stream: Permission denied [ROOT/plugins/Site/src/Controller/SiteController.php, line 152]Code Context $str_file_path = CACHE . 'templates' . DS . 'F-'.$Function->uid;
file_put_contents($str_file_path, $Function->scripts);
$where = ['Function.theme_id IN' => [(int) 0 => (int) 1,(int) 1 => (int) 2,],'Function.name' => 'private',]
$Function = object(Cake\ORM\Entity) id:0 {'uid' => 'f4d3f58c-40f7-45b2-9fa5-01b0d43d0d78''scripts' => '<?php
/* Archivo de funciones comunes para el sitio
========================================================================== */
function is_menu_active($menu) {
$site_url = explode('/', SITE_URL);
$menu_url = explode('/', substr($menu['url'], ($menu['url'][0] == '.'? 2 : 0) ));
return $menu_url[0] == $site_url[0]? 'active' : '';
}
function get_categorias() {
$arr_regs = bp_get_categories();
return $arr_regs;
}
function array_to_GET($array_params = array()){
if(empty($array_params)) return '';
if(is_string($array_params)) return '&' . $array_params;
$result = '';
foreach($array_params as $key => $value){
$result .= "&{$key}={$value}";
}
return $result;
}
function request($_url, $_action, $params){
$url = bp_constant('api:url');
$params['key'] = bp_constant('api:key');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "$url{$_url}/?action={$_action}");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$response = curl_exec($ch);
$result = [];
if (!curl_errno($ch)) {
$jsonObj = json_decode($response, true);
if ($jsonObj === null && json_last_error() !== JSON_ERROR_NONE) {
http_response_code(400);
echo $response; exit;
}else{
http_response_code(curl_getinfo($ch, CURLINFO_HTTP_CODE));
$result = $jsonObj;
}
}else{
http_response_code(400);
$result = ['error' => 'Error en la petición!'];
}
return $result;
}
function get_data_admin($action, $array_params = array()){
$arrContextOptions=array(
"ssl"=>array(
"verify_peer"=>false,
"verify_peer_name"=>false,
),
);
$url = bp_get_constant('admin_url') . "?action={$action}&" . str_replace(' ','%20',array_to_GET($array_params));
$json = json_decode(file_get_contents($url, false, stream_context_create($arrContextOptions)), true);
if($json === null){
die("La url <a href=\"$url\" target=\"_blank\">$url</a> no pudo ser decodificada.");
}
//die("La url <a href=\"$url\" target=\"_blank\">$url</a> no pudo ser decodificada.");
$json['_url'] = $url;
return $json;
}
function get_data_api($action, $array_params = array()){
$url = bp_get_constant('api_url') . "?action={$action}&org_uid=" . bp_get_constant('org_uid') . str_replace(' ','%20',array_to_GET($array_params));
$json = json_decode(file_get_contents($url), true);
if($json === null){
die("La url <a href=\"$url\" target=\"_blank\">$url</a> no pudo ser decodificada.");
}
//die("La url <a href=\"$url\" target=\"_blank\">$url</a> no pudo ser decodificada.");
$json['_url'] = $url;
return $json;
}
function humanize_date($str_date){
echo utf8_encode(strftime("%d-%b-%Y", strtotime($str_date)));
}
function get_data_session(){
$SiteUsuario = bp_get_session('SiteUsuario');
if(!empty($SiteUsuario)){
return array(
'rfc' => $SiteUsuario['rfc'],
'nombre_completo' => "{$SiteUsuario['nombres']} {$SiteUsuario['paterno']} {$SiteUsuario['materno']}"
);
}else{
return false;
}
}
?>''[new]' => false'[accessible]' => ['*' => true,]'[dirty]' => []'[original]' => []'[virtual]' => []'[hasErrors]' => false'[errors]' => []'[invalid]' => []'[repository]' => 'Site.Function'protected _fields => ['uid' => 'f4d3f58c-40f7-45b2-9fa5-01b0d43d0d78','scripts' => '<?php
/* Archivo de funciones comunes para el sitio
========================================================================== */
function is_menu_active($menu) {
$site_url = explode('/', SITE_URL);
$menu_url = explode('/', substr($menu['url'], ($menu['url'][0] == '.'? 2 : 0) ));
return $menu_url[0] == $site_url[0]? 'active' : '';
}
function get_categorias() {
$arr_regs = bp_get_categories();
return $arr_regs;
}
function array_to_GET($array_params = array()){
if(empty($array_params)) return '';
if(is_string($array_params)) return '&' . $array_params;
$result = '';
foreach($array_params as $key => $value){
$result .= "&{$key}={$value}";
}
return $result;
}
function request($_url, $_action, $params){
$url = bp_constant('api:url');
$params['key'] = bp_constant('api:key');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "$url{$_url}/?action={$_action}");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$response = curl_exec($ch);
$result = [];
if (!curl_errno($ch)) {
$jsonObj = json_decode($response, true);
if ($jsonObj === null && json_last_error() !== JSON_ERROR_NONE) {
http_response_code(400);
echo $response; exit;
}else{
http_response_code(curl_getinfo($ch, CURLINFO_HTTP_CODE));
$result = $jsonObj;
}
}else{
http_response_code(400);
$result = ['error' => 'Error en la petición!'];
}
return $result;
}
function get_data_admin($action, $array_params = array()){
$arrContextOptions=array(
"ssl"=>array(
"verify_peer"=>false,
"verify_peer_name"=>false,
),
);
$url = bp_get_constant('admin_url') . "?action={$action}&" . str_replace(' ','%20',array_to_GET($array_params));
$json = json_decode(file_get_contents($url, false, stream_context_create($arrContextOptions)), true);
if($json === null){
die("La url <a href=\"$url\" target=\"_blank\">$url</a> no pudo ser decodificada.");
}
//die("La url <a href=\"$url\" target=\"_blank\">$url</a> no pudo ser decodificada.");
$json['_url'] = $url;
return $json;
}
function get_data_api($action, $array_params = array()){
$url = bp_get_constant('api_url') . "?action={$action}&org_uid=" . bp_get_constant('org_uid') . str_replace(' ','%20',array_to_GET($array_params));
$json = json_decode(file_get_contents($url), true);
if($json === null){
die("La url <a href=\"$url\" target=\"_blank\">$url</a> no pudo ser decodificada.");
}
//die("La url <a href=\"$url\" target=\"_blank\">$url</a> no pudo ser decodificada.");
$json['_url'] = $url;
return $json;
}
function humanize_date($str_date){
echo utf8_encode(strftime("%d-%b-%Y", strtotime($str_date)));
}
function get_data_session(){
$SiteUsuario = bp_get_session('SiteUsuario');
if(!empty($SiteUsuario)){
return array(
'rfc' => $SiteUsuario['rfc'],
'nombre_completo' => "{$SiteUsuario['nombres']} {$SiteUsuario['paterno']} {$SiteUsuario['materno']}"
);
}else{
return false;
}
}
?>',]protected _original => []protected _hidden => []protected _virtual => []protected _dirty => []protected _accessors => []protected _new => falseprotected _errors => []protected _invalid => []protected _accessible => ['*' => true,]protected _registryAlias => 'Site.Function'}
$str_file_path = '/var/www/html/site-amtalentrecruiting.com/tmp/cache/templates/F-f4d3f58c-40f7-45b2-9fa5-01b0d43d0d78'
file_put_contents - [internal], line ??
Site\Controller\SiteController::init_functions() - ROOT/plugins/Site/src/Controller/SiteController.php, line 152
Site\Controller\SiteController::index() - ROOT/plugins/Site/src/Controller/SiteController.php, line 81
Cake\Controller\Controller::invokeAction() - CORE/src/Controller/Controller.php, line 527
Cake\Controller\ControllerFactory::invoke() - CORE/src/Controller/ControllerFactory.php, line 79
Cake\Http\BaseApplication::handle() - CORE/src/Http/BaseApplication.php, line 251
Cake\Http\Runner::handle() - CORE/src/Http/Runner.php, line 77
Cake\Http\Middleware\BodyParserMiddleware::process() - CORE/src/Http/Middleware/BodyParserMiddleware.php, line 159
Cake\Http\Runner::handle() - CORE/src/Http/Runner.php, line 73
Cake\Routing\Middleware\RoutingMiddleware::process() - CORE/src/Routing/Middleware/RoutingMiddleware.php, line 166
Cake\Http\Runner::handle() - CORE/src/Http/Runner.php, line 73
Cake\Routing\Middleware\AssetMiddleware::process() - CORE/src/Routing/Middleware/AssetMiddleware.php, line 77
Cake\Http\Runner::handle() - CORE/src/Http/Runner.php, line 73
Cake\Error\Middleware\ErrorHandlerMiddleware::process() - CORE/src/Error/Middleware/ErrorHandlerMiddleware.php, line 121
Cake\Http\Runner::handle() - CORE/src/Http/Runner.php, line 73
Cake\Http\Runner::run() - CORE/src/Http/Runner.php, line 58
Cake\Http\Server::run() - CORE/src/Http/Server.php, line 90
Warning: rename(/var/www/html/site-amtalentrecruiting.com/logs/error.log,/var/www/html/site-amtalentrecruiting.com/logs/error.log.1751640742) [function.rename]: Permission denied in /var/www/html/site-amtalentrecruiting.com/vendor/cakephp/cakephp/src/Log/Engine/FileLog.php on line 197
Warning (2): Cannot modify header information - headers already sent by (output started at /var/www/html/site-amtalentrecruiting.com/vendor/cakephp/cakephp/src/Error/Debugger.php:954) [ROOT/plugins/Site/src/Controller/SiteController.php, line 129]Code Context
header('Content-type: text/xml');
$url = 'sitemap.xml'
$pages = object(Cake\ORM\Query) id:0 {'(help)' => 'This is a Query object, to get the results execute or iterate it.''sql' => 'SELECT `Post`.`uid` AS `Post__uid`, `Post`.`title` AS `Post__title`, `Post`.`name` AS `Post__name`, `Post`.`description` AS `Post__description`, `Post`.`keywords` AS `Post__keywords`, `Post`.`modified` AS `Post__modified` FROM `dat_posts` `Post` WHERE (`Post`.`deleted` = :c0 AND `Post`.`type` = :c1 AND `Post`.`active` = :c2)''params' => [':c0' => ['value' => (int) 0,'type' => 'integer','placeholder' => 'c0',],':c1' => ['value' => 'Page','type' => 'string','placeholder' => 'c1',],':c2' => ['value' => (int) 1,'type' => 'boolean','placeholder' => 'c2',],]'defaultTypes' => ['Post__id' => 'integer','Post.id' => 'integer','id' => 'integer','Post__uid' => 'string','Post.uid' => 'string','uid' => 'string','Post__title' => 'string','Post.title' => 'string','title' => 'string','Post__name' => 'string','Post.name' => 'string','name' => 'string','Post__description' => 'string','Post.description' => 'string','description' => 'string','Post__keywords' => 'string','Post.keywords' => 'string','keywords' => 'string','Post__type' => 'string','Post.type' => 'string','type' => 'string','Post__config' => 'text','Post.config' => 'text','config' => 'text','Post__image_id' => 'integer','Post.image_id' => 'integer','image_id' => 'integer','Post__category_id' => 'integer','Post.category_id' => 'integer','category_id' => 'integer','Post__active' => 'boolean','Post.active' => 'boolean','active' => 'boolean','Post__deleted' => 'integer','Post.deleted' => 'integer','deleted' => 'integer','Post__created' => 'datetime','Post.created' => 'datetime','created' => 'datetime','Post__createdby' => 'integer','Post.createdby' => 'integer','createdby' => 'integer','Post__modified' => 'datetime','Post.modified' => 'datetime','modified' => 'datetime','Post__modifiedby' => 'integer','Post.modifiedby' => 'integer','modifiedby' => 'integer',]'decorators' => (int) 0'executed' => false'hydrate' => true'buffered' => true'formatters' => (int) 0'mapReducers' => (int) 0'contain' => []'matching' => []'extraOptions' => []'repository' => object(Site\Model\Table\PostTable) id:1 {'registryAlias' => 'Site.Post''table' => 'dat_posts''alias' => 'Post''entityClass' => 'Cake\ORM\Entity''associations' => []'behaviors' => [(int) 0 => 'My',]'defaultConnection' => 'default''connectionName' => 'default'protected _table => 'dat_posts'protected _alias => 'Post'protected _connection => object(Cake\Database\Connection) id:2 {}protected _schema => object(Cake\Database\Schema\TableSchema) id:3 {}protected _primaryKey => nullprotected _displayField => nullprotected _associations => object(Cake\ORM\AssociationCollection) id:4 {}protected _behaviors => object(Cake\ORM\BehaviorRegistry) id:5 {}protected _entityClass => 'Cake\ORM\Entity'protected _registryAlias => 'Site.Post'protected _eventManager => object(Cake\Event\EventManager) id:6 {}protected _eventClass => 'Cake\Event\Event'protected _rulesChecker => nullprotected _validatorClass => 'Cake\Validation\Validator'protected _validators => ['' => [maximum depth reached],]}protected _hasFields => trueprotected _autoFields => nullprotected _hydrate => trueprotected _counter => nullprotected _eagerLoader => object(Cake\ORM\EagerLoader) id:7 {}protected _beforeFindFired => trueprotected _resultsCount => nullprotected _connection => object(Cake\Database\Connection) id: 2 {}protected _type => 'select'protected _parts => ['delete' => true,'update' => ['' => [maximum depth reached],],'set' => ['' => [maximum depth reached],],'insert' => ['' => [maximum depth reached],],'values' => ['' => [maximum depth reached],],'with' => ['' => [maximum depth reached],],'select' => ['' => [maximum depth reached],],'distinct' => false,'modifier' => ['' => [maximum depth reached],],'from' => ['' => [maximum depth reached],],'join' => ['' => [maximum depth reached],],'where' => object(Cake\Database\Expression\QueryExpression) id:8 {},'group' => ['' => [maximum depth reached],],'having' => null,'window' => ['' => [maximum depth reached],],'order' => null,'limit' => null,'offset' => null,'union' => ['' => [maximum depth reached],],'epilog' => null,]protected _selectParts => [(int) 0 => 'with',(int) 1 => 'select',(int) 2 => 'from',(int) 3 => 'join',(int) 4 => 'where',(int) 5 => 'group',(int) 6 => 'having',(int) 7 => 'order',(int) 8 => 'limit',(int) 9 => 'offset',(int) 10 => 'union',(int) 11 => 'epilog',]protected _updateParts => [(int) 0 => 'with',(int) 1 => 'update',(int) 2 => 'set',(int) 3 => 'where',(int) 4 => 'epilog',]protected _deleteParts => [(int) 0 => 'with',(int) 1 => 'delete',(int) 2 => 'modifier',(int) 3 => 'from',(int) 4 => 'where',(int) 5 => 'epilog',]protected _insertParts => [(int) 0 => 'with',(int) 1 => 'insert',(int) 2 => 'values',(int) 3 => 'epilog',]protected _dirty => trueprotected _resultDecorators => []protected _iterator => nullprotected _valueBinder => object(Cake\Database\ValueBinder) id:9 {}protected _functionsBuilder => nullprotected _useBufferedResults => trueprotected _selectTypeMap => object(Cake\Database\TypeMap) id:10 {}protected typeCastEnabled => trueprotected _typeMap => object(Cake\Database\TypeMap) id:11 {}protected _repository => object(Site\Model\Table\PostTable) id: 1 {}protected _results => nullprotected _mapReduce => []protected _formatters => []protected _cache => nullprotected _options => []protected _eagerLoaded => false}
$categories = object(Cake\ORM\Query) id:0 {'(help)' => 'This is a Query object, to get the results execute or iterate it.''sql' => 'SELECT `Category`.`title` AS `Category__title`, `Category`.`name` AS `Category__name`, `Post`.`title` AS `Post__title`, `Post`.`name` AS `Post__name`, `Post`.`description` AS `Post__description`, `Post`.`keywords` AS `Post__keywords`, `Post`.`modified` AS `Post__modified` FROM `dat_categories` `Category` INNER JOIN `dat_posts` `Post` ON Post.category_id = Category.id WHERE (`Category`.`deleted` = :c0 AND `Category`.`active` = :c1 AND `Post`.`deleted` = :c2 AND `Post`.`active` = :c3 AND `Post`.`type` = :c4)''params' => [':c0' => ['value' => (int) 0,'type' => 'integer','placeholder' => 'c0',],':c1' => ['value' => (int) 1,'type' => 'integer','placeholder' => 'c1',],':c2' => ['value' => (int) 0,'type' => null,'placeholder' => 'c2',],':c3' => ['value' => (int) 1,'type' => null,'placeholder' => 'c3',],':c4' => ['value' => 'Post','type' => null,'placeholder' => 'c4',],]'defaultTypes' => ['Category__id' => 'integer','Category.id' => 'integer','id' => 'integer','Category__uid' => 'string','Category.uid' => 'string','uid' => 'string','Category__name' => 'string','Category.name' => 'string','name' => 'string','Category__title' => 'string','Category.title' => 'string','title' => 'string','Category__template_listado_id' => 'integer','Category.template_listado_id' => 'integer','template_listado_id' => 'integer','Category__template_ficha_id' => 'integer','Category.template_ficha_id' => 'integer','template_ficha_id' => 'integer','Category__active' => 'integer','Category.active' => 'integer','active' => 'integer','Category__deleted' => 'integer','Category.deleted' => 'integer','deleted' => 'integer','Category__created' => 'datetime','Category.created' => 'datetime','created' => 'datetime','Category__createdby' => 'integer','Category.createdby' => 'integer','createdby' => 'integer','Category__modified' => 'datetime','Category.modified' => 'datetime','modified' => 'datetime','Category__modifiedby' => 'integer','Category.modifiedby' => 'integer','modifiedby' => 'integer',]'decorators' => (int) 0'executed' => false'hydrate' => true'buffered' => true'formatters' => (int) 0'mapReducers' => (int) 0'contain' => []'matching' => []'extraOptions' => []'repository' => object(Site\Model\Table\CategoryTable) id:1 {'registryAlias' => 'Site.Category''table' => 'dat_categories''alias' => 'Category''entityClass' => 'Cake\ORM\Entity''associations' => []'behaviors' => []'defaultConnection' => 'default''connectionName' => 'default'protected _table => 'dat_categories'protected _alias => 'Category'protected _connection => object(Cake\Database\Connection) id:2 {}protected _schema => object(Cake\Database\Schema\TableSchema) id:3 {}protected _primaryKey => nullprotected _displayField => nullprotected _associations => object(Cake\ORM\AssociationCollection) id:4 {}protected _behaviors => object(Cake\ORM\BehaviorRegistry) id:5 {}protected _entityClass => 'Cake\ORM\Entity'protected _registryAlias => 'Site.Category'protected _eventManager => object(Cake\Event\EventManager) id:6 {}protected _eventClass => 'Cake\Event\Event'protected _rulesChecker => nullprotected _validatorClass => 'Cake\Validation\Validator'protected _validators => ['' => [maximum depth reached],]}protected _hasFields => trueprotected _autoFields => nullprotected _hydrate => trueprotected _counter => nullprotected _eagerLoader => object(Cake\ORM\EagerLoader) id:7 {}protected _beforeFindFired => trueprotected _resultsCount => nullprotected _connection => object(Cake\Database\Connection) id: 2 {}protected _type => 'select'protected _parts => ['delete' => true,'update' => ['' => [maximum depth reached],],'set' => ['' => [maximum depth reached],],'insert' => ['' => [maximum depth reached],],'values' => ['' => [maximum depth reached],],'with' => ['' => [maximum depth reached],],'select' => ['' => [maximum depth reached],],'distinct' => false,'modifier' => ['' => [maximum depth reached],],'from' => ['' => [maximum depth reached],],'join' => ['' => [maximum depth reached],],'where' => object(Cake\Database\Expression\QueryExpression) id:8 {},'group' => ['' => [maximum depth reached],],'having' => null,'window' => ['' => [maximum depth reached],],'order' => null,'limit' => null,'offset' => null,'union' => ['' => [maximum depth reached],],'epilog' => null,]protected _selectParts => [(int) 0 => 'with',(int) 1 => 'select',(int) 2 => 'from',(int) 3 => 'join',(int) 4 => 'where',(int) 5 => 'group',(int) 6 => 'having',(int) 7 => 'order',(int) 8 => 'limit',(int) 9 => 'offset',(int) 10 => 'union',(int) 11 => 'epilog',]protected _updateParts => [(int) 0 => 'with',(int) 1 => 'update',(int) 2 => 'set',(int) 3 => 'where',(int) 4 => 'epilog',]protected _deleteParts => [(int) 0 => 'with',(int) 1 => 'delete',(int) 2 => 'modifier',(int) 3 => 'from',(int) 4 => 'where',(int) 5 => 'epilog',]protected _insertParts => [(int) 0 => 'with',(int) 1 => 'insert',(int) 2 => 'values',(int) 3 => 'epilog',]protected _dirty => trueprotected _resultDecorators => []protected _iterator => nullprotected _valueBinder => object(Cake\Database\ValueBinder) id:9 {}protected _functionsBuilder => nullprotected _useBufferedResults => trueprotected _selectTypeMap => object(Cake\Database\TypeMap) id:10 {}protected typeCastEnabled => trueprotected _typeMap => object(Cake\Database\TypeMap) id:11 {}protected _repository => object(Site\Model\Table\CategoryTable) id: 1 {}protected _results => nullprotected _mapReduce => []protected _formatters => []protected _cache => nullprotected _options => []protected _eagerLoaded => false}
header - [internal], line ??
Site\Controller\SiteController::render_sitemap() - ROOT/plugins/Site/src/Controller/SiteController.php, line 129
Site\Controller\SiteController::index() - ROOT/plugins/Site/src/Controller/SiteController.php, line 94
Cake\Controller\Controller::invokeAction() - CORE/src/Controller/Controller.php, line 527
Cake\Controller\ControllerFactory::invoke() - CORE/src/Controller/ControllerFactory.php, line 79
Cake\Http\BaseApplication::handle() - CORE/src/Http/BaseApplication.php, line 251
Cake\Http\Runner::handle() - CORE/src/Http/Runner.php, line 77
Cake\Http\Middleware\BodyParserMiddleware::process() - CORE/src/Http/Middleware/BodyParserMiddleware.php, line 159
Cake\Http\Runner::handle() - CORE/src/Http/Runner.php, line 73
Cake\Routing\Middleware\RoutingMiddleware::process() - CORE/src/Routing/Middleware/RoutingMiddleware.php, line 166
Cake\Http\Runner::handle() - CORE/src/Http/Runner.php, line 73
Cake\Routing\Middleware\AssetMiddleware::process() - CORE/src/Routing/Middleware/AssetMiddleware.php, line 77
Cake\Http\Runner::handle() - CORE/src/Http/Runner.php, line 73
Cake\Error\Middleware\ErrorHandlerMiddleware::process() - CORE/src/Error/Middleware/ErrorHandlerMiddleware.php, line 121
Cake\Http\Runner::handle() - CORE/src/Http/Runner.php, line 73
Cake\Http\Runner::run() - CORE/src/Http/Runner.php, line 58
Cake\Http\Server::run() - CORE/src/Http/Server.php, line 90
Warning: rename(/var/www/html/site-amtalentrecruiting.com/logs/error.log,/var/www/html/site-amtalentrecruiting.com/logs/error.log.1751640742) [function.rename]: Permission denied in /var/www/html/site-amtalentrecruiting.com/vendor/cakephp/cakephp/src/Log/Engine/FileLog.php on line 197
https://amtalentrecruiting.com/
2022-02-12T19:25:54+00:00
1.00
https://amtalentrecruiting.com/nosotros
1969-12-31T18:00:00-06:00
0.80
https://amtalentrecruiting.com/contacto
1969-12-31T18:00:00-06:00
0.80
https://amtalentrecruiting.com/entradas/clean-design
1969-12-31T18:00:00-06:00
0.80
https://amtalentrecruiting.com/entradas/premium-resources
1969-12-31T18:00:00-06:00
0.80
https://amtalentrecruiting.com/entradas/responsive-layout
1969-12-31T18:00:00-06:00
0.80