mr_prateekjain
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cant we install wordpress directly in localhostThanks MichaelH
Forum: Fixing WordPress
In reply to: Cant we install wordpress directly in localhostyes i am using wordpress mu..
Forum: Fixing WordPress
In reply to: Cant we install wordpress directly in localhostI dont want to use xampp… Is there any other way?
Forum: Fixing WordPress
In reply to: New User Password Email Not Sent But Admin Notification SentI had the same problem… I dont know how to fix it. But there is a way by which you can add new users manually by logging in as an admin click on users and there u can add users manually..
Forum: Fixing WordPress
In reply to: Login not working.yaa that was the problem.. Actually when you install wordpress directly in the root directory without any subdomain, it doesn’t allow to set cookies. But i have still no idea y it was working previously in opera..
I tried accessing the wordpress from a different sub-domain and it worked.Forum: Fixing WordPress
In reply to: Login not working.I did that already. But still not working…..
Forum: Fixing WordPress
In reply to: WordPress in iframesUsing this i have to specify the height of my iframe.. I want the height to be auto-adjusted based on the contents size, i dont want to use scroll bars…..
Forum: Fixing WordPress
In reply to: WordPress in iframesI dont have any idea about that RSS feed.. Can you please provide me some code or documentation related to that??
Thanks.Forum: Fixing WordPress
In reply to: Login redirects to same pageI dont have any plug-in installed. I freshly download the newest version of wordpress. Installation is complete, but logging in is not working???
Forum: Fixing WordPress
In reply to: Not a valid MySQL-Link resource in wp-db.phpi dont mind who u are.. i got my problem solved.
thanks.Forum: Fixing WordPress
In reply to: Not a valid MySQL-Link resource in wp-db.phphey thanks man..
new_link parameter worked perfectly fine..
Thanks ??Forum: Fixing WordPress
In reply to: Not a valid MySQL-Link resource in wp-db.php$dbhost1 = ‘localhost’;
$dbuser1 = ‘xxxx’;
$dbpass1 = ‘xxxx’;
$conn1 = mysql_connect($dbhost1, $dbuser1, $dbpass1) or die(‘Error connecting to mysql’);
$dbname1 = ‘xxxx’;
mysql_select_db($dbname1);$query = “SELECT email FROM users where id= ‘”.$login.”‘”;
$result = mysql_query($query);
$emailidArray = mysql_fetch_array($result);
$email = $emailidArray[0];
mysql_close($conn1);Forum: Fixing WordPress
In reply to: Not a valid MySQL-Link resource in wp-db.phpdude i have checked many times.. i am closing that another connection properly. If i dont use that other database it works perfectly fine. But after using that database it generates that error.
Forum: Fixing WordPress
In reply to: Not a valid MySQL-Link resource in wp-db.phpI tried that… I am trying to open another separate database. It works fine and i get the required result from that database also. But after accessing that database executing any query to wordpress database generates that error !!!
Forum: Fixing WordPress
In reply to: Not a valid MySQL-Link resource in wp-db.phpFacing the same kind of problem..
Has anyone found the solution????