How to increase or decrease the maximum execution time of a php script

By default PHP script execution time is set for 30 seconds at php.ini file. This is the time limit set for all the files to finish its execution. If the file takes more than this set time then the execution of the script will be stopped and error message will be displayed like this.

Fatal error: Maximum execution time of 30 seconds exceeded in F:php_filesttest.php on line 14

This maximum execution time limit is set inside the php.ini file like this.

max_execution_time = 30 ; Maximum execution time of each script, in seconds

This value can be increased or decreased as per our requirement at php.ini file but note that in a server environment where many sites are hosted, any change in php.ini will affect all the sites hosted by the server. So this change is not possible unless you own the server and you are the only user. In a shared hosting our host may not like to change any settings of php.ini for our requirement. So there is a option to set the file execution time for the particular file at the individual file end. This adjustment of time limit has no effect if php is running in safe mode. Let us try to learn how this works.

Setting page titles and meta tags in cakephp 2.0

Today I needed to have page titles and meta tags correctly setup for each page in a website i had often used methods like placing variables and setting them to the template in the app controller in a beforeFilter. Then if i needed a different meta tag on another page like contact for example i could go to the contact controller and and overwrite these variables. A great idea but didn’t work too well for the simple pages and the pages controller.

Here is Idea how you can add page titles and meta tags easy in your cake pages

1- First we need to set the page tile,place this code within your method on the controller :
$this->set(“title_for_layout”,”your page title goes here”);

2- Second add below code to your respective view page :

echo $this->Html->meta(‘keywords’, ‘your keywords goes here’, array(‘type’ => ‘keywords’, ‘inline’ => false));
echo $this->Html->meta(‘description’, ‘your description goes here’, array(‘type’ => ‘description’, ‘inline’ => false));

Hope this will help!!!!!!!!!!

Login issue with admin, user and unable to register in oscommerce

Login issue with admin, user and unable to register in oscommerce

Recently we have an issue with oscommerce. We were developing an oscommerce site and everything was working fine in our test server. But when we moved to the production server provided by the client it stops working.

The issue was we couldn’t login as admin. Every time we logged in with correct parameters it was showing an error “Error: Invalid administrator login attempt.” We were searching for a solution in the google but nothing helped us. Later we found that we cannot even login as users and cannot register a new user also. So we have done some debugging and atlast what we got the solution.

The issue with the domain name and the one which we gave in the configure.php. The domain name always show with www. ie, when we type http://mysitename.com it will show as http://www.mysitename.com. What we gave in our configure.php file was http://mysitename.com. So issue with generating cookie and also POST information. When we changed the value of configure.php from http://mysitename.com to http://www.mysitename.com, it began to work. Hope it will be helpful for some others also.

How to Increase PHP’s File Upload Limit Using php.ini

The file upload size limit 2M(Approx) is set by shared hosting providers. They have set it low because it save bandwidth, keep the server moving quickly.
But customers really need a large upload limit? So we must increase the file upload size limit. We can do it by 4 way :

1- By adding below code on the page where you have upload function

ini_set(‘memory_limit’, ‘256M’); //needs to be in {x}M format
ini_set(‘upload_max_filesize’, ’50M’); //needs to be in {x}M format
ini_set(‘post_max_size’, ’50M’); //needs to be in {x}M format

2- Using below code in php.ini file

memory_limit = 256M
upload_max_filesize = 50M
post_max_size = 50M

Make php.ini file and upload it on the root folder

3- Using .htaccess file (Add below code in this file)

php_value memory_limit 256M
php_value upload_max_filesize 50M
php_value post_max_size 50M

4- Finally if above 3 tricks not work, then you need to contact to your hosting provider.

Quick Setup Guide To Run CakePHP 2.0 On Windows 7

Quick Setup Guide to Run CakePHP 2.0 on Windows 7

Setting up CakePHP 2.0 on Windows 7 is simple and requires just a few steps. First, ensure you have a working Apache server with PHP 5.2.8 or higher installed—XAMPP or WAMP is recommended for ease of setup.

Download CakePHP 2.0 from the official website and extract it into your web server’s root directory (e.g., htdocs for XAMPP or www for WAMP).

Configure the app/Config/core.php file by setting a unique security salt and cipher seed.

Then, create a database in MySQL and update the app/Config/database.php file with the correct database credentials.

Enable URL rewriting by configuring the Apache httpd.conf file and .htaccess files if necessary.

Finally, restart the server and access your CakePHP application via http://localhost/your_app_name. If everything is set up correctly, you should see the CakePHP welcome page, confirming a successful installation.

WordPress issue : Could not create upgrade directory

Today I got strange issue while update wordpress site. This gave me error like this “Could not create upgrade directory”.

Firstly I thought this was the issue of directory permission so I did set upgrade directory 777 mode but I was unsuccessful. Then tried to delete upgrade folder and created new one, for me that was still issue. Then I read the some articles on WordPress codex and this trick(delete and create upgrade directory) works for many people. But in the mine case this was not work. I started think about this issue and found the issue with ask apache module. This module was not giving permission to write anything on the directory.

Finally I deactivate ask apache module and upgrade my WordPress version as well as plugin and again I activated this plugin for security purposes. This technique worked for me very well.

Hope this method will work for other people.

Increase PHP’s File Upload Limit Using .htaccess file

Increase PHP’s File Upload Limit Using .htaccess file

How do we increase upload file limit through .htaccess file. Here I am giving you quick trick.

Create .htaccess file(If you have already .htaccess file on the server then no need to create it just update that file) using your favorite text editor like notepad++ and put below code on that file :

php_value memory_limit 256M
php_value upload_max_filesize 50M
php_value post_max_size 50M

If you want to also increase the php script execution time then put this code in the .htaccess file

php_value max_execution_time 18000

The values 256M,50M and 18000 you can change as per your requirement.

How to include JQuery on your WordPress theme

How to include JQuery on your WordPress theme

WordPress comes with JQuery (It is used in the dashboard) so you don’t need to download a new copy of JQuery to your WordPress server.
For accessing JQuery on WordPress site, you need to paste below code on your header.php file within theandtags:

 

When you will add this JQuery automatically will be called in the website.

That’s all!!

Javascript Confirm Delete

How to use a javascript confirm box to ask the user if they want to delete

<script>
function confirmDelete(deleleteUrl) {
if (confirm(“Are you sure you want to delete”)) {
document.location = deleleteUrl;
}
}
</script>

<a href=”javascript:confirmDelete(‘delete.php?id=1’)”>Delete</a>

Another way

<a href=”delete.php?id=1″ onclick=”return confirm(‘Are you sure you want to delete?’)”>Delete</a>

How to add .SWF files to the html webpage

Here I am sharing flash code for embedding flash in the website. Hope this will help many more….

<object width=”400″ height=”220″ align=”middle” classid=”clsid:d27cdb6e-ae6d-11cf-96b8-444553540000″ codebase=”http://fpdownload.macromedia.com/pub/shockwave/cabs
/flash/swflash.cab#version=7,0,0,0″ id=”player1″>
<param value=”your_flash_file.swf” name=”movie”>
<param name=”menu” value=”false”>
<param name=”quality” value=”high”>
<param name=”wmode” value=”transparent”>
<param name=”bgcolor” value=”#FFFFFF”>
<embed width=”400″ height=”220″ align=”middle” src=”your_flash_file.swf” menu=”false” quality=”high” bgcolor=”#FFFFFF” name=”player” wmode=”transparent” allowtransparency=”true” allowscriptaccess=”always” type=”application/x-shockwave-flash” pluginspage=”http://www.macromedia.com/go/getflashplayer”>
</object>

If you want to change any attribute then you can take reference from adobe site. Here is the link :

Flash OBJECT and EMBED tag attributes