game.onenall.com,play free game online game.onenall.com,play free game online game.onenall.com,play free game online game.onenall.com,play free game online game.onenall.com,play free game online game.onenall.com,play free game online game.onenall.com,play free game online game.onenall.com,play free game online

how to add extra filed in user profile page

Adding Extra Fields to the WordPress User Profile or how to add extra filed in user profile page
WordPress offers some great options and function.There are some fileds in the user’s profile page where user can add info like bio but if admin want to provide more option or extra field to user than something write in code. today i am displaying or adding Extra Fields to the WordPress User Profile or how to add extra filed in user profile page Continue reading this entry…

how to call plugins in post

See here i am giving you an example to develop a wordpress plugins and calling it in post.Means creating a wordpress plugins and allowing option to use it in wordpress post.

  1. ShortCode API
    1. What is ShortCode API?

                         Shortcode API, a simple set of functions for creating macro codes for use in post content.

                          Example: [demo id=“1”]

                                    Is able to retrieve a demo record of ID 1 and embed the results into the post content Continue reading this entry…

Developing Plugins For WordPress





Developing Plugins For WordPress

  1. DEVELOPING PLUGINS FOR WORDPRESS
  2. Agenda
    1. Introduction
    2. Developing Plugin
    3. WP API: Filters/Hooks
    4. Plugin Path
    5. Plugin Details
    6. Inserting CSS/Javascript
    7. Modifying Content
    8. Translating Plugin Text To Other Languages
    9. Shortcode API
    10. Activating The Plugin
    11. WP-Polls, WP-PostRatings, WP-PostViews, WP-Print, WP-Email, WP-Useronline, etc
  3. Continue reading this entry…

The page you requested cannot be displayed. error ’80020009′ /error/asperror.asp, line 158





eway internal server error…

The page you requested cannot be displayed. error ’80020009′ /error/asperror.asp, line 158

Hi as a programmer when i changed the hosting and shifted the server for oscommerce shopping cart. I started getting error on the conformation pages of eaway payment.

here is the solution:

chk all the path properly in my case i forgot to change the temp path

define (TEMP_DIR,    ”/var/www/vhosts/zoaex.com.au/httpdocs/tmp”);
define (TEMP_FILE_BASE, “/tmp.ep”);

define (TEMP_DIR,    ”/var/www/vhosts/zoaex.com.au/httpdocs/tmp”); define (TEMP_FILE_BASE, “/tmp.ep”);

Thanks

mrphpguru

Fatal error: Unable to read X bytes in yourfiles.php on line 0





Fatal error: Unable to read X bytes in yourfile.php on line 0

Solution:

To remove above error we have do following things

1) Zend Optimizer requires files to be uploaded in forced binary mode not is ASCII mode because Zend Optimizer requires required appropriate files ( see the installation instructions) to be uploaded . This is usually accomplished using a FTP program. So please chk the settings of FTP.
2) If not uploaded in forced binary mode, than following error you may see:

i) Fatal error: Unable to read 1000(Or any x bites) from your php script on line number…..

ii) Incompatible file format………….


So Make sure that you transfer files as binary and not ASCII when using FTP to transfer encoded files between PC and remote.

Also, in order to run encoded files you need to install Zend Optimizer. This error may indicate that you have an old version of Zend Optimizer installed.

In order to download the latest version of Optimizer, go to:http://www.zend.com/products/zend_optimizer

Thanks