arkgroup
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Fatal error during installationTry to delete wordpress files, upload again and reinstall.
Forum: Themes and Templates
In reply to: Funky new header after installing 3.1There’s something in your template. May be in index.php. Could be hacked.
It seems like <?php start_template(); ?> line is trying to load something to header and footer and instead gets default pages of some service. May be footer.php has different php function that tries to do the same. Anyway, check code in your templates, check where start_template declared and what it actually doing. I’ve searched in wordpress docs and I found nothing about this function, that’s why I think it should be declared somewhere in template.
Forum: Installing WordPress
In reply to: Install problemchash,
You’ve made a simple syntax error while modifying config file. Check out the last line you’ve modified above 77 line. The syntax error should be there, like no semicolon or quotes.
Forum: Installing WordPress
In reply to: starting the installationgovpatel,
000webhost has no support, it’s free hosting. You’ll be lucky to get an answer from them. However you’re right about database.
laesir,
You should change localhost to correct server name. As I remember correct server name should be like: mysql[number].000webhost.com
You should access your account there and you’ll see that info in the right part of the window along with your domain name, stats and other stuff.
Don’t forget to delete “define(‘WP_DEBUG’, true);” line after you fix issue with database server name.
redsetter,
Sushosin is a new disaster, seems to be. I’ve never ever encountered problems related to it, but now it’s a second time here at wordpress forum. From now on I’ll remember to check for this software if 500 error occures.
Forum: Installing WordPress
In reply to: Installation Errorbarbar733,
Yes, you need to setup database, database user and password for this user first from your hosting control panel.
Forum: Installing WordPress
In reply to: Installation Errorbarbar733,
Some kind of Fantastico glitch probably. Try to install manually:
http://codex.wordpress.org/Installing_WordPressForum: Installing WordPress
In reply to: Installing/testing on new host prior to DNS moveiluvpinkerton,
Yes, you should copy all the files first. Then add two lines above to configuration file of wordpress and insert new IP address or temporary domain name there. For example:
define(‘WP_HOME’,’http://123.123.123.123/’);
define(‘WP_SITEURL’,’http://123.123.123.123/’);Then upload everything to new server. You’ll be able to access your website with IP address or temporary domain name then. Don’t forget to import wordpress database to new server.
Forum: Themes and Templates
In reply to: Error when I try to install a new themeMichael,
It tries to create file D:\Inetpub\michaelchapnick\wordpress/wp-content/suffusion.tmp during the installation and failed because wp-content probably has no write permissions. You may try to set write permissions for this folder or you may try to upload theme manually via FTP and then turn it on in wordpress.
Forum: Installing WordPress
In reply to: Install problemJacob,
You already have some files in the folder you’ve specified for wordpress. Try to install it into another folder (or clear the specified folder and install there) using the article above.
Forum: Fixing WordPress
In reply to: help ! Internal Server Errorwhirlygirl,
You may contact me by email (arthur.riskal@arkgroup.org) and I’ll check your website, if you want. It should not take much time.
I would check website itself, .htaccess, logs, permissions and ownership, may be something else according to logs.
Forum: Installing WordPress
In reply to: 404 error when trying to access /wp-installgovpatel,
Again wrong. It depends on hosting configuration. There is no need to delete anything except default home page and may be default images. I saw a lot of problems because of deleting stuff.
Forum: Installing WordPress
In reply to: What went wrong with my install??tycoonbob,
It looks like permission issue now, different from the first one. About Siteurl, I recommend to change it directly in database using phpMyAdmin.
About permissions, if you have any hosting control panel installed, it probably has some methods to fix permissions automatically. Google “fix permissions” for your control panel.
Forum: Installing WordPress
In reply to: local Windows / XAMPP path problemschzumbrunnen,
the .htdocs file that WordPress generates when I change the permalink structure is like that:
You mean .htaccess probably. It should be .htaccess in wordpress folder.
Forum: Installing WordPress
In reply to: What went wrong with my install??tycoonbob,
Here is the part of the code from your website:
<link rel=”stylesheet” type=”text/css” media=”all” href=”http://localhost/wp-content/themes/atmospheric-augmentation/style.css” />
Every link has localhost in it. You should change SiteURL of your wordpress blog to http://www.tycoonbob.com/. There are several ways to do that. Read the article below and you’ll fix the problem:
http://codex.wordpress.org/Changing_The_Site_URL