purabdk
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: User-Cats Manager] ‘FileReader’ not foundIf you install WordPress in subfolder than you will get the problem..
Don’t insert the following line.
include($_SERVER[‘DOCUMENT_ROOT’] . “/wp-includes/streams.php”);For avoiding the all problem all the time Use and following code..
require_once(ABSPATH . ‘wp-includes/streams.php’);If you print the $_SERVER[‘DOCUMENT_ROOT’] variable then it will be easy to get the problem..
Forum: Plugins
In reply to: ECommerce and QuickbooksIs there any free script or plugin available for integrate with quickbooks
Forum: Installing WordPress
In reply to: Warning: Cannot modify header informationi solved this problem
use this code
<?
//dont use header function in wordpress-wp_signup.php
global $domain;
global $path;
//change urlnew variable as per requirment
$urlnew = “http://”.$domain.$path.”/wp-admin/admin.php;echo “<script>”;
echo “location = ‘$urlnew’;”;
echo “</script>”;
echo $urlnew;
?>
Purab KharatForum: Installing WordPress
In reply to: Warning: Cannot modify header informationi solved this problem
use this code
<?
//dont use header function in wordpress-wp_signup.php
global $domain;
global $path;
//change urlnew variable as per requirment
$urlnew = “http://”.$domain.$path.”/wp-admin/admin.php;echo “<script>”;
echo “location = ‘$urlnew’;”;
echo “</script>”;
echo $urlnew;
?>
Purab Kharat