Home » Archive

Articles in the Wordpress Category

Joomla, Solved Issues, Wordpress, Zen Cart, php »

[12 Apr 2012 | No Comment | ]

just add below code in your .htaccess and save your hrs…
AuthName “Restricted Area”
AuthType Basic
AuthUserFile “your htpasswd file path”
AuthGroupFile /dev/null
require valid-user
SetEnvIf Request_URI “\/$” allow
SetEnvIf Request_URI “\/css/(.*)$” allow
SetEnvIf Request_URI “\/js/(.*)$” allow
SetEnvIf Request_URI “\/images/(.*)$” allow
# write above line for all folder those need public access
Order allow,deny
Allow from env=allow
Satisfy any

allow from all
Satisfy any

Featured, MySQL, Wordpress »

[20 Jun 2011 | No Comment | ]

This web-based tool written in PHP makes it easy to search and replace text strings in a MySQL database.
Usually, I develop WordPress sites on a local development server and, when they are ready to launch, I move them to a live web server.
MySQL Search & Replace
For database-driven sites created with content management systems like WordPress, Drupal, and Joomla, this means moving any custom themes and plugins, and it often entails exporting data from the development server’s database and copying it to the live web server.
With small databases, your content management …

Wordpress »

[15 Mar 2011 | No Comment | ]

When google analytics module stop working,
follow below steps to get back working
– check your modules compatibility if module has a new updates then update that module
– check your footer id there is function wp_footer() is there or not
– check your Analytics Account ID has right value

Solved Issues, Wordpress »

[17 Jun 2010 | No Comment | ]

Recently I have face strange issue on wordpress which is “public_html/wp-includes/pluggable.php on line 868 wordpress issue” error at the time of login on wordpress website.
Issue: public_html/wp-includes/pluggable.php on line 868
Solution: This kind of error is normal for wordpress. This can occur due to some spaces after ?> ( end of php code ) in your php code files. So, you need to check your last accessed files and removed spaces if there and try again accessing that page. Hope it helps for wordpress developers.
- Tejas