Skip to content
  • Register
  • Login

LT BYTES

Learn Tech Bytes

  • Home
  • AWS
  • PHP

Php

Posted inPhp

Turn on errors in PHP

by SuryaDecember 3, 2023December 4, 20230

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

Posted inAll / Php / Wordpress

WordPress plugin to save contact information to database

by SuryaDecember 10, 2012December 4, 20230

This plugin will help you to see the contact information wp-admin. At the same time it will send an email to the mail set in … WordPress plugin to save contact information to databaseRead more

Posted inAll / Php / Wordpress

Create a template for page in wordpress

by SuryaAugust 28, 2011December 3, 20230

Steps to create new template for WordPress page. This will help you to customize your template for single page. 1) Create new php file, For … Create a template for page in wordpressRead more

Posted inAll / Php / Wordpress

Change WordPress Theme Name

by SuryaAugust 28, 2011December 3, 20230

Steps to update the wordpress theme name 1) Go to wp-content/themes/{your_active_name} 2) Open style.css 3) Change the “Theme Name:” in comments.

Posted inAll / Php / Wordpress

Facebook login button not displaying in IE

by SuryaAugust 28, 2011December 3, 20230

We have to use facebook html tags at the document starting, we can see the button if we use the facebook html tag (those tags … Facebook login button not displaying in IERead more

Posted inAll / Php

Php session is not storing

by SuryaAugust 28, 2011December 4, 20230

There are different reasons for PHP session not working. If the session is using file.(By Default it is File Only) 1) If you are using … Php session is not storingRead more

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 / 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”);

Posts navigation

1 2 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