Skip to content
  • Register
  • Login

LT BYTES

Learn Tech Bytes

  • Home
  • AWS
  • PHP

All

Posted inAll / Php

Search keywords from static files

by SuryaApril 18, 2011December 4, 20230

<?php $content = file_get_contents(‘filename.html’); //Example file_get_contents(‘filename.hml’); // Here $key is the search word //Example $key = “php”; if(preg_match(“/”.$key.”/”, $content, $matches)) { echo “found”; } else … Search keywords from static filesRead more

Posted inAll

List of some Open source CMS in php

by SuryaApril 18, 2011December 4, 20230

CMS – Content Management System Joomla Drupal WordPress Magento Oscommerce Zencart phpbb(forum) Concrete Pligg Sugarcrm(crm) Edirectory

Posted inAll / Php

Internal server error in php due to htaccess is not enabled

by SuryaApril 18, 2011December 4, 20230

There are different reasons for this Error. One of the most common reason is using Htaccess. This error is most common while using htaccess. If … Internal server error in php due to htaccess is not enabledRead more

Posted inAll / Joomla / Php

Component generator in joomla cms

by SuryaApril 18, 2011December 3, 20230

These websites will provide the basic component structure. https://www.component-creator.com/en/ https://www.joomlacomponentbuilder.com/ https://www.componentgenerator.com/  

Posted inAll / Php

How to create constant for wordpress themes folder

by SuryaApril 18, 2011December 4, 20230

Open wp-config.php in root folder, try to add the below constant to this file. <?php define(‘THEME_PATH’, ABSPATH.”/wp-content/themes”);

Posted inAll / Php

Turn off errors in PHP

by SuryaApril 18, 2011December 4, 20230

In php file: <?php ini_set(‘display_errors’, false); ?> In Htaccess file: php_flag display_errors 0

Posted inAll

get url of wordpress site

by SuryaApril 18, 20110

<?php echo get_option(‘siteurl’); ?> It prints the site url from wp_options table

Posted inAll / Sql

Concat fields in mysql

by SuryaApril 18, 2011December 4, 20230

By using CONCAT function in mysql, we can concat fields or string. SELECT CONCAT(‘field1’, ‘-‘, ‘field2’, ‘-‘, ‘field3’); // Output: // ‘field1-field2-field3’

Posted inAll

How to get projects online and Remote Jobs

by SuryaFebruary 15, 2011December 2, 20230

Here by using these below sites to get remote jobs and by using some websites we can get projects also from clients. Some are paid … How to get projects online and Remote JobsRead more

Posted inAll

What is seo

by SuryaFebruary 15, 2011December 4, 20230

Brief Intro: SEO stands for Search Engine Optimization. It is a set of practices designed to improve the appearance, positioning, and usefulness of multiple types … What is seoRead more

Posts navigation

Previous 1 2 3 … 5 Next

Recent Posts

  • Deploying AWS Lambda with Docker & Serverless Framework
  • Create and Update SNS Subscription Filter Policy using Python Boto3
  • Turn on errors in PHP
  • Php coding standards
  • WordPress plugin to save contact information to database

Recent Comments

No comments to show.

Archives

  • February 2025
  • January 2024
  • December 2023
  • March 2013
  • December 2012
  • April 2012
  • August 2011
  • April 2011
  • February 2011
  • January 2011
  • October 2010
  • July 2010
  • June 2010
  • January 2010
  • December 2009
  • November 2009
  • October 2009

Categories

  • All
  • AWS
  • Javascript
  • Joomla
  • Php
  • Python
  • Sql
  • Uncategorized
  • Wordpress
Copyright © 2025 LT BYTES.
Powered by WordPress and BNM.
  • Home
  • AWS
  • PHP