no

How to Fix Make_sock Could Not Bind Address in Apache

I am developing a web application and is testing it on my localhost, when suddenly the page failed to load. No error, no message. So I went...

How to Fix Php Unable to Load Dynamic Library

I've recently setup apache/php/mysql (separate installs) on a new laptop which is powered by Windows 7 and would like to setup magento. ...

How to Resize an Image from Database or File Using Php

This implementation is done using php. Usually we resize image that we read from a local file, then save it locally. Flow: 1.) read from...

How to Read and Update Your Mailbox Using Php

There are 2 ways I use 2 read email from my mailbox. Let the code explain: 1.) Usually use for gmail. /* connect to gmail */ $hostname = ...

How to Increase Php Upload Size-upload_max_filesize

There are 2 things in which increasing the file size for upload can be achieve. These methods are both applicable for Linux OS but not for W...

How to Fix Unable to Load Dynamic Library in Php

Okay first I'm no expert in apache or php but I guess writing about this bug might help someone. Yes I've installed perhaps tens of ...

How to Fix Transaction Timeout in Php

Calling the authorize.net api, I've encountered this error: An error occurred while trying to report this transaction to the merchant....

How to Enable Php Logs Using .htaccess

htaccess file: linux: .htaccess windows: htaccess.txt To enable logging using the htaccess file set the following values: php_flag d...

How to Attached an Html Document to Email

If you have this kind of error, just check the way you'r calling the email library. Be sure to add this line. $config['mailtype...

How to Fix No Such Host Is Known Error in Php

Wondering how to disable the above error? Even if you set in your php.ini: display_errors = Off Errors will still pop out. Solution:...

How to Fix File Access Is Disabled in the Server Configuration

I am checking it my link verifier script is working when I have encountered this error. This is my function that checks if a url is existi...

How to Fix Unable to Load Dynamic Library in Php

This problems are often encountered on new php installation. Solution: 1.) Add these lines to httpd.conf PHPIniDir "C:/php-5.2.1...

How to Fix Assigning Return Value of New Reference Is Deprecated in Phppgadmin

Unfortunately, some frameworks built using php5.2 will experience this problem. Solutions: 1.) Set the error_reporting = 0, this will ig...

How to Fix Not Enough Memory During File Upload on Phpmyadmin

I know the first solution is to change the value of this key: upload_max_filesize Unfortunately, I'm still getting the error even afte...

How to Allow Url Query String in Codeigniter

As we all know codeigniter uses segment-based as url, example: Just like these: classname/methodname/parameter1/paramenter2, index.php/...

How to Create a New Index Inside a Subdirectory in Codeigniter

I am using codeigniter framework in my php project and I have a requirement like this: When the url is */admin/, the application should ca...

How to Set Secret Passphrase in Phpmyadmin

Before, you have to set application used variables like server, user, password, etc. But with the release of phpmyadmin3.2, it's now eas...

How to Setup Gzip Compression in Php

Using php we can start gzip using the following code ob_start("ob_gzhandler"); The code returns false if the browser does no...

How to Fix Submit Request Domxml Is Uncallable Using Usps

I am calling the USPS API when I got the above error. The problem is the server where my application resides is equipped with php version ...

Implement Us Phone and Zip Expression Validator in Php

I want a format: a.) phone: (xxx)-(xxx)-(xxxx) b.) zip: (xxxxx)-(xxxx); -(xxxx) is optional But, I couldn't find them so I created ...

index