farrokh
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Comment text not correctly aligned!Ok, disregard.
I put it in there somewhere in between the other comment list stuff and it worked 🙂
You guys are my heroes.
Forum: Installing WordPress
In reply to: Comment text not correctly aligned!Cool, I’m looking at the Style CSS sheet right now.
There are a bunch of stuff that deals with the comment list.
Where do you suggest I insert the above code in relation to the other commentlist codes? in the middle of them , above them, or beneath them?
Forum: Installing WordPress
In reply to: Comment text not correctly aligned!I don’t follow you. Can you explain a little more please?
Forum: Installing WordPress
In reply to: I can not manage categories!That was it Cat :))
Thanks. You rock!!!
Forum: Installing WordPress
In reply to: I can not manage categories!ok, will do..
Forum: Installing WordPress
In reply to: Installation fell apartI created another folder and used WS_FTP and it worked.
Thank you very much.
Forum: Installing WordPress
In reply to: Installation fell apartYes it is.
Forum: Installing WordPress
In reply to: Installation fell apartMy installation is having a problem too. The blog doesn’t install fully and properly. After it gives me my login and password, I can’t login. One thing I did find out though, was that some files are not accessible through http. What I mean is, for examole, just the file readme.html in my website is located at :
negahi.com/php_uploads/readme.htmlNow, I can access it by typing ftp://negahi.com/php_uploads/readme.html
But if I type http://negahi.com/php_uploads/readme.html,
it tells me the file is not found and it is the same case with the wp-login.php and god knows what other files.
In the case of the readme.html file I changed its properties through ftp but it didn’t help 🙁
Any ideas?
Forum: Installing WordPress
In reply to: trouble installing WP – can’t connect to databaseOk podz,
Idon’t know what happened. But without me changing anything it finally worked after many times of trying and connection with the mysql database was established!!
But now the pandora’s box has opened to a whole new slew of problems for which I’m going to surf other threads here.
Thanks for all your efforts in trying to help me.
Forum: Installing WordPress
In reply to: trouble installing WP – can’t connect to databaseOh I have and I’m quite confident they are correct. on the same note, the tech guys at godaddy offered the following scripting . what do you think? shoud I try to somehow modify wp-config using that script and then try?
<?php
//Sample Database Connection Syntax for PHP and MySQL.//Connect To Database
$hostname=”mysql.secureserver.net”;
$username=”your_dbusername”;
$password=”your_dbpassword”;
$dbname=”your_dbusername”;
$usertable=”your_tablename”;
$yourfield = “your_field”;mysql_connect($hostname,$username, $password) OR DIE (“<html><script language=’JavaScript'</html>”);
mysql_select_db($dbname);# Check If Record Exists
$query = “SELECT * FROM $usertable”;
$result = mysql_query($query);
if($result)
{
while($row = mysql_fetch_array($result))
{
$name = $row[“$yourfield”];
echo “Name: “.$name.”<br>”;
}
}
?>Forum: Installing WordPress
In reply to: trouble installing WP – can’t connect to databaseNow I get this:
Error establishing a database connection
This either means that the username and password information in your wp-config.php file is incorrect or we can’t contact the database server at mysql39.secureserver.net .Forum: Installing WordPress
In reply to: trouble installing WP – can’t connect to databaseActually, yes…
‘mysql39.secureserver.net’let me try it like that and see what happens.
Forum: Installing WordPress
In reply to: trouble installing WP – can’t connect to databaseThere is only one database created in my website and it is “farrokh” and
wp-config.php is as follows:<?php
// ** MySQL settings ** //
define(‘DB_NAME’, ‘farrokh’); // The name of the database
define(‘DB_USER’, ‘farrokh’); // Your MySQL username
define(‘DB_PASSWORD’, ‘*****’); // …and password
define(‘DB_HOST’, ‘mysql.secureserver.net’); // 99% chance you won’t need to change this value// Change the prefix if you want to have multiple blogs in a single database.
$table_prefix = ‘wp_’; // example: ‘wp_’ or ‘b2’ or ‘mylogin_’// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-includes/languages.
// For example, install de.mo to wp-includes/languages and set WPLANG to ‘de’
// to enable German language support.
define (‘WPLANG’, ”);/* Stop editing */
define(‘ABSPATH’, dirname(__FILE__).’/’);
require_once(ABSPATH.’wp-settings.php’);
?>Forum: Installing WordPress
In reply to: trouble installing WP – can’t connect to databaseI get the “Error establishing a database connection” message when I point my browser to /wp-admin/install.php
BTW, thanks for lightening fast response podz 🙂
Forum: Installing WordPress
In reply to: trouble installing WP – can’t connect to databaseI am having the same problem. My website is hosted by godaddy.com. they are using PHP version 4.3.11 and the database server they tell me is:
mysql.secureserver.net
funny thing is that Bob Parsons, the founder of godaddy, seems to be using the wordpress to power his blog, so I figure there’s got to be a way for me to get this amazing wp up and running. Is there?