{"id":450,"date":"2014-01-16T03:41:59","date_gmt":"2014-01-16T03:41:59","guid":{"rendered":"http:\/\/luisrodriguez.pe\/blog\/?p=450"},"modified":"2014-01-22T16:34:14","modified_gmt":"2014-01-22T16:34:14","slug":"tipicas-preguntas-de-codeigniter","status":"publish","type":"post","link":"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/","title":{"rendered":"Tipicas preguntas de Codeigniter"},"content":{"rendered":"<ul>\n<li>\n<h2>Como eliminar el index.php que lleva por defecto<\/h2>\n<p>creas en la raiz del proyecto un archivo .httacess con el sigueinte contenido<\/p>\n\n<div class=\"wp_syntax\"><table><tr><td class=\"code\"><pre class=\"php\" style=\"font-family:monospace;\">RewriteEngine on\nRewriteCond $<span style=\"color:#800080;\">1<\/span> <span style=\"color: #339933;\">!<\/span>^<span style=\"color: #009900;\">&#40;<\/span>index\\<span style=\"color: #339933;\">.<\/span>php<span style=\"color: #339933;\">|<\/span>images<span style=\"color: #339933;\">|<\/span>assets<span style=\"color: #339933;\">|<\/span>robots<span style=\"color: #339933;\">|<\/span>css<span style=\"color: #339933;\">|<\/span>fonts<span style=\"color: #339933;\">|<\/span>js<span style=\"color: #339933;\">|<\/span>img\\<span style=\"color: #339933;\">.<\/span>txt<span style=\"color: #009900;\">&#41;<\/span>\nRewriteRule ^<span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #339933;\">.*<\/span><span style=\"color: #009900;\">&#41;<\/span>$ <span style=\"color: #339933;\">\/<\/span>index<span style=\"color: #339933;\">.<\/span>php<span style=\"color: #339933;\">\/<\/span>$<span style=\"color:#800080;\">1<\/span> <span style=\"color: #009900;\">&#91;<\/span>L<span style=\"color: #009900;\">&#93;<\/span><\/pre><\/td><\/tr><\/table><\/div>\n\n<p>en el archivo config.php debes modificar la linea 17 que a lo mejor cambia en otras version<\/p>\n\n<div class=\"wp_syntax\"><table><tr><td class=\"code\"><pre class=\"php\" style=\"font-family:monospace;\"><span style=\"color: #000088;\">$config<\/span><span style=\"color: #009900;\">&#91;<\/span><span style=\"color: #0000ff;\">'index_page'<\/span><span style=\"color: #009900;\">&#93;<\/span> <span style=\"color: #339933;\">=<\/span> <span style=\"color: #0000ff;\">''<\/span><span style=\"color: #339933;\">;<\/span><\/pre><\/td><\/tr><\/table><\/div>\n\n<\/li>\n<li>\n<h2>Donde coloco mis imagenes, css, javascript, fonts, etc<\/h2>\n<p>codeigniter no dejo nos tiene ninguna carpeta para colocarlos asi que en la raiz podemos crear una carpeta para colocarlos o poder crear en la raiz todas las carpetas para nuestros archivos que usaremos en la web.<\/li>\n<li>\n<h2>Como usar sessiones en codeigniter<\/h2>\n<p>abres el archivo \\application\\config\\autoload.php y activamos las sesiones que son debe buscar la variable $autoload[&#8216;libraries&#8217;]\n\n<div class=\"wp_syntax\"><table><tr><td class=\"code\"><pre class=\"php\" style=\"font-family:monospace;\"><span style=\"color: #000088;\">$autoload<\/span><span style=\"color: #009900;\">&#91;<\/span><span style=\"color: #0000ff;\">'libraries'<\/span><span style=\"color: #009900;\">&#93;<\/span> <span style=\"color: #339933;\">=<\/span> <span style=\"color: #990000;\">array<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #0000ff;\">'session'<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #339933;\">;<\/span><\/pre><\/td><\/tr><\/table><\/div>\n\n<p>luego vas al archivo \\application\\config\\config.php y buscas la variable $config[&#8216;encryption_key&#8217;] y le das cualquier valor por ejemplo<\/p>\n\n<div class=\"wp_syntax\"><table><tr><td class=\"code\"><pre class=\"php\" style=\"font-family:monospace;\"><span style=\"color: #000088;\">$config<\/span><span style=\"color: #009900;\">&#91;<\/span><span style=\"color: #0000ff;\">'encryption_key'<\/span><span style=\"color: #009900;\">&#93;<\/span> <span style=\"color: #339933;\">=<\/span> <span style=\"color: #0000ff;\">'lkjsdlkfjsd$$$dpfk\u00f1sdlkf\u00f1l'<\/span><span style=\"color: #339933;\">;<\/span><\/pre><\/td><\/tr><\/table><\/div>\n\n<\/li>\n<li>\n<h2>Codeignietr me muestra una pagina en blanco sin errores<\/h2>\n<p>esto me sucedio muchas veces y dejamos en el archivo \\index.php (el el index que se encuentra en la raiz de codeigniter) como desarrollo \u00abdevelopment\u00bb pero extra\u00f1amente no muestra ningun error y entonces por que lo hace? en realidad si ahi error como te imaginabas pero no lo muestra.<\/p>\n<p>ahi que agregar una linea de codigo a estas lineas<\/p>\n\n<div class=\"wp_syntax\"><table><tr><td class=\"code\"><pre class=\"php\" style=\"font-family:monospace;\"><span style=\"color: #b1b100;\">if<\/span> <span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #990000;\">defined<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #0000ff;\">'ENVIRONMENT'<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #009900;\">&#41;<\/span>\n<span style=\"color: #009900;\">&#123;<\/span>\n\t<span style=\"color: #b1b100;\">switch<\/span> <span style=\"color: #009900;\">&#40;<\/span>ENVIRONMENT<span style=\"color: #009900;\">&#41;<\/span>\n\t<span style=\"color: #009900;\">&#123;<\/span>\n\t\t<span style=\"color: #b1b100;\">case<\/span> <span style=\"color: #0000ff;\">'development'<\/span><span style=\"color: #339933;\">:<\/span>\n                        <span style=\"color: #990000;\">error_reporting<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #009900; font-weight: bold;\">E_ALL<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #339933;\">;<\/span>\n\t\t<span style=\"color: #b1b100;\">break<\/span><span style=\"color: #339933;\">;<\/span>\n&nbsp;\n\t\t<span style=\"color: #b1b100;\">case<\/span> <span style=\"color: #0000ff;\">'testing'<\/span><span style=\"color: #339933;\">:<\/span>\n\t\t<span style=\"color: #b1b100;\">case<\/span> <span style=\"color: #0000ff;\">'production'<\/span><span style=\"color: #339933;\">:<\/span>\n\t\t\t<span style=\"color: #990000;\">error_reporting<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #cc66cc;\">0<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #339933;\">;<\/span>\n\t\t<span style=\"color: #b1b100;\">break<\/span><span style=\"color: #339933;\">;<\/span>\n&nbsp;\n\t\t<span style=\"color: #b1b100;\">default<\/span><span style=\"color: #339933;\">:<\/span>\n\t\t\t<span style=\"color: #990000;\">exit<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #0000ff;\">'The application environment is not set correctly.'<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #339933;\">;<\/span>\n\t<span style=\"color: #009900;\">&#125;<\/span>\n<span style=\"color: #009900;\">&#125;<\/span><\/pre><\/td><\/tr><\/table><\/div>\n\n<p>asi debe quedar<\/p>\n\n<div class=\"wp_syntax\"><table><tr><td class=\"code\"><pre class=\"php\" style=\"font-family:monospace;\"><span style=\"color: #b1b100;\">if<\/span> <span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #990000;\">defined<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #0000ff;\">'ENVIRONMENT'<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #009900;\">&#41;<\/span>\n<span style=\"color: #009900;\">&#123;<\/span>\n\t<span style=\"color: #b1b100;\">switch<\/span> <span style=\"color: #009900;\">&#40;<\/span>ENVIRONMENT<span style=\"color: #009900;\">&#41;<\/span>\n\t<span style=\"color: #009900;\">&#123;<\/span>\n\t\t<span style=\"color: #b1b100;\">case<\/span> <span style=\"color: #0000ff;\">'development'<\/span><span style=\"color: #339933;\">:<\/span>\n                        <span style=\"color: #990000;\">error_reporting<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #009900; font-weight: bold;\">E_ALL<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #339933;\">;<\/span>\n                        <span style=\"color: #990000;\">ini_set<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #0000ff;\">'display_errors'<\/span><span style=\"color: #339933;\">,<\/span> <span style=\"color: #cc66cc;\">1<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #339933;\">;<\/span>\n\t\t<span style=\"color: #b1b100;\">break<\/span><span style=\"color: #339933;\">;<\/span>\n&nbsp;\n\t\t<span style=\"color: #b1b100;\">case<\/span> <span style=\"color: #0000ff;\">'testing'<\/span><span style=\"color: #339933;\">:<\/span>\n\t\t<span style=\"color: #b1b100;\">case<\/span> <span style=\"color: #0000ff;\">'production'<\/span><span style=\"color: #339933;\">:<\/span>\n\t\t\t<span style=\"color: #990000;\">error_reporting<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #cc66cc;\">0<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #339933;\">;<\/span>\n\t\t<span style=\"color: #b1b100;\">break<\/span><span style=\"color: #339933;\">;<\/span>\n&nbsp;\n\t\t<span style=\"color: #b1b100;\">default<\/span><span style=\"color: #339933;\">:<\/span>\n\t\t\t<span style=\"color: #990000;\">exit<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #0000ff;\">'The application environment is not set correctly.'<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #339933;\">;<\/span>\n\t<span style=\"color: #009900;\">&#125;<\/span>\n<span style=\"color: #009900;\">&#125;<\/span><\/pre><\/td><\/tr><\/table><\/div>\n\n<p>con esto ya nos debe mostrar el error<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"Como eliminar el index.php que lleva por defecto creas en la raiz del proyecto un archivo .httacess con el sigueinte contenido RewriteEngine on RewriteCond $1 !^&#40;index\\.php|images|assets|robots|css|fonts|js|img\\.txt&#41; RewriteRule ^&#40;.*&#41;$ \/index.php\/$1 &#91;L&#93; en el archivo config.php debes modificar la linea 17 que a lo mejor cambia en otras version $config&#91;&#8217;index_page&#8217;&#93; = \u00bb; Donde coloco mis imagenes, css,[&#8230;]","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[38,37,6],"tags":[],"class_list":["post-450","post","type-post","status-publish","format-standard","hentry","category-codeigniter","category-framework","category-php"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Tipicas preguntas de Codeigniter - Blog Luis Rodriguez<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Tipicas preguntas de Codeigniter - Blog Luis Rodriguez\" \/>\n<meta property=\"og:description\" content=\"Como eliminar el index.php que lleva por defecto creas en la raiz del proyecto un archivo .httacess con el sigueinte contenido RewriteEngine on RewriteCond $1 !^&#040;index.php|images|assets|robots|css|fonts|js|img.txt&#041; RewriteRule ^&#040;.*&#041;$ \/index.php\/$1 &#091;L&#093; en el archivo config.php debes modificar la linea 17 que a lo mejor cambia en otras version $config&#091;&#039;index_page&#039;&#093; = &#039;&#039;; Donde coloco mis imagenes, css,[...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog Luis Rodriguez\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/luisrodriguez.pe\" \/>\n<meta property=\"article:published_time\" content=\"2014-01-16T03:41:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2014-01-22T16:34:14+00:00\" \/>\n<meta name=\"author\" content=\"Luis Rodriguez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@luizmirodriguez\" \/>\n<meta name=\"twitter:site\" content=\"@luizmirodriguez\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"Luis Rodriguez\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/\"},\"author\":{\"name\":\"Luis Rodriguez\",\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/#\/schema\/person\/ec55de81e01fdaf3533eb78f6a49090c\"},\"headline\":\"Tipicas preguntas de Codeigniter\",\"datePublished\":\"2014-01-16T03:41:59+00:00\",\"dateModified\":\"2014-01-22T16:34:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/\"},\"wordCount\":215,\"commentCount\":0,\"articleSection\":[\"Codeigniter\",\"Framework\",\"PHP\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/\",\"url\":\"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/\",\"name\":\"Tipicas preguntas de Codeigniter - Blog Luis Rodriguez\",\"isPartOf\":{\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/#website\"},\"datePublished\":\"2014-01-16T03:41:59+00:00\",\"dateModified\":\"2014-01-22T16:34:14+00:00\",\"author\":{\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/#\/schema\/person\/ec55de81e01fdaf3533eb78f6a49090c\"},\"breadcrumb\":{\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/luisrodriguez.pe\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Tipicas preguntas de Codeigniter\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/#website\",\"url\":\"https:\/\/luisrodriguez.pe\/blog\/\",\"name\":\"Blog Luis Rodriguez\",\"description\":\"Analytics Developer\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/luisrodriguez.pe\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/#\/schema\/person\/ec55de81e01fdaf3533eb78f6a49090c\",\"name\":\"Luis Rodriguez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/3b0f9734b267ecb38e1860734b4caebda4efa8be9a2bb536862b6a2ba23afa82?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3b0f9734b267ecb38e1860734b4caebda4efa8be9a2bb536862b6a2ba23afa82?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3b0f9734b267ecb38e1860734b4caebda4efa8be9a2bb536862b6a2ba23afa82?s=96&d=mm&r=g\",\"caption\":\"Luis Rodriguez\"},\"description\":\"Hola, Soy Luis Rodriguez, radico en Lima \u2013 Per\u00fa, formado en una carrera inform\u00e1tica, desempe\u00f1ando desde el 2007 como programador web y viendo proyectos desde Front End y Back End a lo que me perfile como Full Stack. Esta Experiencia junto a mi inter\u00e9s en la Anal\u00edtica Web me ayud\u00f3 mucho entender el funcionamiento interno de las herramientas de anal\u00edtica, con las que vengo trabajo activamente desde 2017. Linkedin\",\"sameAs\":[\"http:\/\/luisrodriguez.pe\"],\"url\":\"https:\/\/luisrodriguez.pe\/blog\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Tipicas preguntas de Codeigniter - Blog Luis Rodriguez","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/","og_locale":"es_ES","og_type":"article","og_title":"Tipicas preguntas de Codeigniter - Blog Luis Rodriguez","og_description":"Como eliminar el index.php que lleva por defecto creas en la raiz del proyecto un archivo .httacess con el sigueinte contenido RewriteEngine on RewriteCond $1 !^&#40;index.php|images|assets|robots|css|fonts|js|img.txt&#41; RewriteRule ^&#40;.*&#41;$ \/index.php\/$1 &#91;L&#93; en el archivo config.php debes modificar la linea 17 que a lo mejor cambia en otras version $config&#91;'index_page'&#93; = ''; Donde coloco mis imagenes, css,[...]","og_url":"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/","og_site_name":"Blog Luis Rodriguez","article_publisher":"https:\/\/www.facebook.com\/luisrodriguez.pe","article_published_time":"2014-01-16T03:41:59+00:00","article_modified_time":"2014-01-22T16:34:14+00:00","author":"Luis Rodriguez","twitter_card":"summary_large_image","twitter_creator":"@luizmirodriguez","twitter_site":"@luizmirodriguez","twitter_misc":{"Escrito por":"Luis Rodriguez","Tiempo de lectura":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/#article","isPartOf":{"@id":"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/"},"author":{"name":"Luis Rodriguez","@id":"https:\/\/luisrodriguez.pe\/blog\/#\/schema\/person\/ec55de81e01fdaf3533eb78f6a49090c"},"headline":"Tipicas preguntas de Codeigniter","datePublished":"2014-01-16T03:41:59+00:00","dateModified":"2014-01-22T16:34:14+00:00","mainEntityOfPage":{"@id":"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/"},"wordCount":215,"commentCount":0,"articleSection":["Codeigniter","Framework","PHP"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/","url":"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/","name":"Tipicas preguntas de Codeigniter - Blog Luis Rodriguez","isPartOf":{"@id":"https:\/\/luisrodriguez.pe\/blog\/#website"},"datePublished":"2014-01-16T03:41:59+00:00","dateModified":"2014-01-22T16:34:14+00:00","author":{"@id":"https:\/\/luisrodriguez.pe\/blog\/#\/schema\/person\/ec55de81e01fdaf3533eb78f6a49090c"},"breadcrumb":{"@id":"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/luisrodriguez.pe\/blog\/tipicas-preguntas-de-codeigniter\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/luisrodriguez.pe\/blog\/"},{"@type":"ListItem","position":2,"name":"Tipicas preguntas de Codeigniter"}]},{"@type":"WebSite","@id":"https:\/\/luisrodriguez.pe\/blog\/#website","url":"https:\/\/luisrodriguez.pe\/blog\/","name":"Blog Luis Rodriguez","description":"Analytics Developer","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/luisrodriguez.pe\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Person","@id":"https:\/\/luisrodriguez.pe\/blog\/#\/schema\/person\/ec55de81e01fdaf3533eb78f6a49090c","name":"Luis Rodriguez","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/secure.gravatar.com\/avatar\/3b0f9734b267ecb38e1860734b4caebda4efa8be9a2bb536862b6a2ba23afa82?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3b0f9734b267ecb38e1860734b4caebda4efa8be9a2bb536862b6a2ba23afa82?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3b0f9734b267ecb38e1860734b4caebda4efa8be9a2bb536862b6a2ba23afa82?s=96&d=mm&r=g","caption":"Luis Rodriguez"},"description":"Hola, Soy Luis Rodriguez, radico en Lima \u2013 Per\u00fa, formado en una carrera inform\u00e1tica, desempe\u00f1ando desde el 2007 como programador web y viendo proyectos desde Front End y Back End a lo que me perfile como Full Stack. Esta Experiencia junto a mi inter\u00e9s en la Anal\u00edtica Web me ayud\u00f3 mucho entender el funcionamiento interno de las herramientas de anal\u00edtica, con las que vengo trabajo activamente desde 2017. Linkedin","sameAs":["http:\/\/luisrodriguez.pe"],"url":"https:\/\/luisrodriguez.pe\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/posts\/450","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/comments?post=450"}],"version-history":[{"count":4,"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/posts\/450\/revisions"}],"predecessor-version":[{"id":456,"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/posts\/450\/revisions\/456"}],"wp:attachment":[{"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/media?parent=450"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/categories?post=450"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/tags?post=450"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}