03 May, 2025
Ubuntu 22.04 Features List in Details Ubuntu 22.04 LTS (Jammy Jellyfish) is a long-term support release that launched in April 2022, bringing with it a robust suite of features and…
In this artical we are discuss about what is modules and how to use modules in Python. The propensity of computer code is to expand. We can conclude that code…
The ACID properties—Atomicity, Consistency, Isolation, and Durability—are fundamental principles that ensure reliable transactions in a database. To know more about ACID Properties, This article focuses on two key properties: Atomicity…
MySQL has InnoDB storage engine, that strictly follow the ACID Model to prevent data corruption and results distortion from unexpected occurrences like hardware failures and software crashes. You don’t have…
A key idea in software development is the singleton design pattern, which offers a straightforward method of guaranteeing a class has a single instance and a global access point. This…

Cakephp internal server error

If you are stand on Root folder your .htaccess should like <IfModule mod_rewrite.c> RewriteEngine on RewriteRule ^$ app/webroot/ [L] RewriteRule (.*) app/webroot/$1 [L] </IfModule> If you are stand in to app folder your .htaccess should like <IfModule mod_rewrite.c> RewriteEngine on RewriteRule ^$ webroot/ [L] RewriteRule (.*) webroot/$1 [L] </IfModule> Share your Love     

Share your Love
1 min read

How can I “comment-out” a section in a batch file?

The REM statemen This is the most common way to write comments. Any line in your bat-file that starts with REM is completely ignored by the command-processor.      REM This bat-file moves all files in C:Incoming to C:ToProcess     REM Written by Nikunj Kansara     REM 05/01/2003Double Colons Alternatively you can replace the word REM by two […]

Share your Love
1 min read

Joomla Plugin Events

These are described in the following topics. Authentication onUserAuthenticate Captcha onInitonDisplayonCheckAnswer Content onContentPrepareonContentAfterTitle (Joomla 3.x only)onContentBeforeDisplayonContentAfterDisplayonContentBeforeSaveonContentAfterSaveonContentPrepareFormonContentPrepareDataonContentBeforeDeleteonContentAfterDeleteonContentChangeStateonContentSearchonContentSearchAreas Editors onInitonSaveonSetContentonDisplayonGetContentonGetInsertMethodExtensionsonExtensionAfterInstallonExtensionAfterUninstallonExtensionAfterUpdate Finder onFinderCategoryChangeStateonFinderChangeStateonFinderAfterDeleteonFinderAfterDeleteonFinderBeforeSaveonFinderAfterSave Quick Icons onGetIcons System onAfterInitialiseonAfterRouteonAfterDispatchonAfterRenderonBeforeRenderonBeforeCompileHeadonSearchonSearchAreas User onUserBeforeSaveonUserAfterSaveonUserBeforeDeleteonUserAfterDeleteonUserLoginonUserLoginFailureonUserLogoutonUserAuthenticateonUserAuthorisation Share your Love     

Share your Love
1 min read

How to execute batch file via PHP?

The main issue was of path and permission. I have gotten my batch file to execute. Here is my solution: I run my batch file from the same folder the php file is in. exec(“mybatch.bat”); I make sure that Apache Service has enough permission to run the batch file. Just to test i used an administrator account for […]

Share your Love
1 min read

How To create or use PHP Phar archives improve website performance

PHP Phar (PHp ARchive) is a file format used in PHP for packaging entire applications or libraries into a single archive file. Phar archives can simplify the distribution and deployment of PHP applications by bundling all necessary files into a single file, making it easier to manage and distribute applications. Advantages of PHP Phar Single […]

Share your Love
2 mins read