arkgroup
Forum Replies Created
-
Forum: Installing WordPress
In reply to: getting a 404 page….HappyWarrior,
Check out permissions of all the files and folders you have. Folders should be 755, files 644. Make sure you have uploaded all the wordpress files to correct folder. If permissions are ok, just contact hosting support and they will check out the rest.
Forum: Fixing WordPress
In reply to: Multiple Hostnames, Single Blogtomacco0,
It’s a bit challenge. Well, it is possible. As I understood it should be just one database and 3 blogs with different categories. I personally have such solution:
1. Install 3 wordpress blogs on each hostname and use the same wp-config.php for all 3 blogs. It will allow you to use 1 database for 3 blogs.
2. You’ll need some custom code changes to get only the category you want from the database for different hostname.
May be it would be easier just to install and maintain 3 different blogs.
Forum: Installing WordPress
In reply to: Problems w/ Admin Panelpedrovonb,
Once DNS changed to bluehost, your website will be hosted there. It means that if I want to see your-domain.com, I’ll see the files hosted at bluehost. So yes, you’ll need to transfer your wordpress blog to bluehost and you’ll be able to make any changes there, like themes, plugins and other stuff.
Forum: Installing WordPress
In reply to: 404 error – Page not displayedIf you want it to be available at blueshost too, then you should move it’s files and database to bluehost.
A little typo:)
Forum: Installing WordPress
In reply to: 404 error – Page not displayedtheartofteddybears,
Your domain name, and I suppose it’s theartofteddybears.com, has different name servers than bluehost. It means your current website hosted elsewhere.
The link http://66.147.244.243/~theartu1/ shows “Welcome to searchezy.com” for some reason, not theartofteddybears.com. It could be just bluehost error, or you set it as your domain too. It actually allows to access http://66.147.244.243/~theartu1/wp-admin/ but you’ll probably go no further from that page.
Make sure you have all the wordpress files in public_html folder. You’ll need to reinstall it and set http://66.147.244.243/~theartu1/ as SiteURL for wordpress (you’ll be able to change it later to your real domain name). Once everything will be ok, you’ll need to change SiteURL to your domain name(I recommend the phpMyAdmin method).
http://codex.wordpress.org/Changing_The_Site_URLThen you’ll need to change DNS of your domain name from your domain name control panel to bluehost.
https://www.bluehost.com/cgi/help/42You’ll be able to see your new website at bluehost in 24-72 hours from then.
Note, that current website http://www.theartofteddybears.com/ will not be available after your change DNS. If you want it to available at blueshost too, then you should move it’s files and database to bluehost.
Forum: Installing WordPress
In reply to: The page cannot be founddblouin,
Looks like PHP isn’t working. Check it out.
Forum: Installing WordPress
In reply to: Fatal Errorbaldinho,
To fix the problem set the following php values:
1. memory_limit to 64M
2. max_execution_time 300
3. upload_max_filesize 10M
4. post_max_size 10MContact hosting support to get information about how to set such values at your hosting account.
Forum: Installing WordPress
In reply to: www. (mysite).com/wp-admin/install.phpVesajohn,
If they told you to use IP or domain instead of localhost, then you should do it. It actually doesn’t matter what to use: IP or domain name, because server will resolve domain name to IP anyway.
That is why I recommend you to use such line:
define(‘DB_HOST’, ‘mysql.server.com’);Where mysql.server.com is their mysql server’s domain name.
By the way, you can post such information here as domain name, IP address of mysql server or it’s domain name. It’s absolutely safe.
All the other parameters should be correct too.
define(‘DB_NAME’, ‘database_name’);
Where database_name is a name of new database for wordpress.define(‘DB_USER’, ‘mysql_user’);
Where mysql_user is username to your database.define(‘DB_PASSWORD’, ‘users-password’);
Where users-password is a password of mysql username.Usually it’s possible to create database, database user and password from hosting control panel (like cPanel, Plesk, H-Sphere, DirectAdmin etc.)
All this info could be also provided by hosting support.
Forum: Installing WordPress
In reply to: www. (mysite).com/wp-admin/install.phpbasslion,
Thanks for the info, but the part about .htaccess it’s not correct. WordPress will automatically create htaccess file when you enable permalinks and the htaccess lines you’ve provided will work only for http://domain.com/wordpress/
Forum: Installing WordPress
In reply to: www. (mysite).com/wp-admin/install.phpVesajohn,
Error establishing a database connection
This is a good error. You are close. Information in wp-config.php is wrong. Make sure you have correct database name, database username and it’s password, and correct database server. If you’re not sure about this info, contact your hosting support and they will help you.
Forum: Installing WordPress
In reply to: www. (mysite).com/wp-admin/install.phpVesajohn,
That’s your choice.
Reply: “Sorry, I need a wp-config-sample.php file to work from. Please re-upload this file from your WordPress installation”.
Quick fix to this is to upload wp-config-sample.php along with wp-config.php (created from wp-config-sample.php).
Forum: Installing WordPress
In reply to: Can’t select databasehuzie,
There are options:
1. You’ve provided wrong database name.
2. Database user has no permissions to access database.There are other errors as well, I suggest to re-upload all default wordpress files.
Forum: Installing WordPress
In reply to: www. (mysite).com/wp-admin/install.phpVesajohn,
Sometimes you just need to start from the very beginning. You’ve confused yourself, while the installation is very simple process. It’s not bad, it’s normal, because you probably don’t have much experience with websites.
I can install wordpress for you for free and show you screenshots of every step. I think it will be better for you not just to read instructions, but also to see how to install. By the way, may be there are some videos on youtube exist about installing wordpress.
So, my email is in my previous post, just contact me and I’ll create a little tutorial for you. I’ll need to know your domain name, credentials from hosting control panel (to create new clean DB, db username and password) and FTP (to upload wordpress). Don’t worry about credentials, you may provide me temporary passwords, or change after I install. I’ve worked in different hosting companies before, you can trust me.
basslion,
I’ve posted an answer into your thread. It’s 99% database related issue (incorrect info in wp-config.php).
Forum: Installing WordPress
In reply to: Blank Screen at installbasslion,
It’s not empty) Yea, it’s a bit strange reply you probably think. You just need to activate display_errors for php and you’ll see error on your screen and it’s 99% database related. Check your db name, db username and it’s password, and check server name because it could be localhost or could be specific value as server.host.com.