{"id":15022750,"url":"https://github.com/rzlco666/codeigniter3-mod","last_synced_at":"2026-02-03T09:34:21.086Z","repository":{"id":108151293,"uuid":"385625564","full_name":"rzlco666/codeigniter3-mod","owner":"rzlco666","description":"This repository contains boilerplate code for a fresh Codeigniter 3 setup with an SEO optimization library. This boilerplate code includes a library to help optimize the search engine visibility of your application. The code is easy to set up and customize, making it a great starting point for your Codeigniter project","archived":false,"fork":false,"pushed_at":"2023-01-01T01:37:23.000Z","size":499,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-14T04:06:34.994Z","etag":null,"topics":["codeigniter","codeigniter-crud","codeigniter-hmvc","codeigniter-library","codeigniter-skeleton","codeigniter-template","codeigniter3","php","php-framework","php-library","php5","php7","php8","seo"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rzlco666.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-07-13T14:06:49.000Z","updated_at":"2023-01-25T11:42:35.000Z","dependencies_parsed_at":"2023-03-13T14:28:49.484Z","dependency_job_id":null,"html_url":"https://github.com/rzlco666/codeigniter3-mod","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rzlco666/codeigniter3-mod","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rzlco666%2Fcodeigniter3-mod","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rzlco666%2Fcodeigniter3-mod/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rzlco666%2Fcodeigniter3-mod/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rzlco666%2Fcodeigniter3-mod/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rzlco666","download_url":"https://codeload.github.com/rzlco666/codeigniter3-mod/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rzlco666%2Fcodeigniter3-mod/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29039695,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T09:33:44.148Z","status":"ssl_error","status_checked_at":"2026-02-03T09:33:43.343Z","response_time":96,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["codeigniter","codeigniter-crud","codeigniter-hmvc","codeigniter-library","codeigniter-skeleton","codeigniter-template","codeigniter3","php","php-framework","php-library","php5","php7","php8","seo"],"created_at":"2024-09-24T19:58:20.684Z","updated_at":"2026-02-03T09:34:21.055Z","avatar_url":"https://github.com/rzlco666.png","language":"PHP","readme":"# codeigniter-mod\n\nThis repository contains boilerplate code for a fresh Codeigniter 3 setup with an SEO optimization library. Codeigniter is a PHP framework for building web applications, and this boilerplate code includes a library to help optimize the search engine visibility of your application. The code is easy to set up and customize, making it a great starting point for your Codeigniter project.\n\n**CodeIgniter Version:** 3.1.11\n\n## Configuration\n\nIn the `application/config/ci_seo.php` file you will find an array of configuration variables. See the following table for the usefulness of each in the library:\n\n| Key               | Type    | Description                                                                    |\n|-------------------|---------|--------------------------------------------------------------------------------|\n| canonical\\_url    | string  | Canonical URL of the application, which may be the result of `base\\_url \\(\\)`  |\n| site\\_title       | string  | Site Title                                                                     |\n| site\\_description | string  | Website Description                                                            |\n| site\\_image       | string  | Illustrative site image \\(size is usually 1200x630\\)                           |\n| twitter\\_user     | string  | Twitter username including @                                                   |\n| fb\\_app\\_id       | integer | Facebook app ID with which the site is associated \\(developer\\.facebook\\.com\\) |\n| fb\\_page\\_id      | integer | Facebook Page ID with which the site is associated                             |\n\n## How to use\n\nAfter performing the installation and configuration, just call the method `$this-\u003eci_seo-\u003eadd_tags()` informing the parameters corresponding to the title, description and illustrative image of the page.\n\n```\n$this-\u003eci_seo-\u003eadd_tags('Page title', 'Page Description', 'image/path');\n```\n\nThe `$this-\u003eci_seo-\u003eadd_tags()` method can be called either directly inside the `\u003chead\u003e \u003c/head\u003e` tag or inside some method in the controller, returning the data to a variable that should be passed to the view should be retrieved inside `\u003chead\u003e \u003c/head\u003e`.\n\n```\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n\u003chead\u003e\n\t\u003cmeta charset=\"utf-8\"\u003e\n    \u003c?= $this-\u003eci_seo-\u003eadd_tags('Page title', 'Page Description', 'image/path'); ?\u003e\n\u003c/head\u003e\n\u003cbody\u003e\u003c/body\u003e\n\u003c/html\u003e\n```\n\n## Special Thanks\n\n[jlamim][1] for [SEO optimization library][2]\n\n[1]: https://github.com/jlamim\n[2]: https://github.com/jlamim/ci-seo\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frzlco666%2Fcodeigniter3-mod","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frzlco666%2Fcodeigniter3-mod","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frzlco666%2Fcodeigniter3-mod/lists"}