arkgroup
Forum Replies Created
-
Forum: Installing WordPress
In reply to: admin page not loadingpenchan777,
You should delete default index.shtml file.
I’m able to get to http://www.lilita.co.cc/wp-admin/, in eventually redirecting to http://www.lilita.co.cc/wp-login.phpYou may also add such line to .htaccess file:
DirectoryIndex index.php index.htmlUsing that line webserver will try to load index.php file first, and then ,if there’s no one, index.html and so on.
Forum: Fixing WordPress
In reply to: Recent Slow loading timechokko,
The other websites on the server could also make it slow even if you have 10 uniques per day. If you feel like you should make your website more stable, move to VPS.
Forum: Installing WordPress
In reply to: admin page not loadingpenchan777,
It should show some error. If 404, may be your domain name is still under DNS propagation. Are you able to access just your domain name?
If 500 error, then it’s probably some server misconfiguration. In case of 500 error you need to check:
1. .htaccess file – try to rename it and access the site again.
2. Permissions and ownership for all the wordpress files and folders.
3. May be you have mod_security or suhosin enabled. Try to disable using hosting support.Forum: Installing WordPress
In reply to: WordPress 3.1 update fatal error.Maggzz,
Download wordpress 3.1 from wordpress.org, unzip it on your local computer and try to re-upload all the default wordpress files.
Forum: Installing WordPress
In reply to: Multiple WP installations on addon domainsPothi,
This is not a DNS issue.
Jeremy,
http://who.is/whois/besteugenerestaurant.com/
besteugenerestaurant.com appears to be availableYou need to register a domain first, and then you may add it to your hosting account.
Forum: Installing WordPress
In reply to: Issues with Godaddy dedicated server and WPtivers73,
First thing I want to say: godaddy will not suspend your account because of any issues, because it’s dedicated server. Permission issue is not a problem at all. Even 777 is safe if you know how to use it.
Permissions like 777 allows other system users to have all access to that folder or file. It doesn’t mean that anybody in the world may have access to it, but anybody in the file system.
To fix the problem you need to set 777 permissions for /uploads/ folder. If you want to make it extra secure, you may set open_basedir php parameter in php.ini (or vhost.conf) to make it a little bit more secure. It will prevent potential attackers to screw with the whole server, but will not prevent spoiling your website anyway, so I just recommend you to create backups once a week. You may simply set cron to do backups.
To make php safer, you may try to recompile php to cgi mode with suphp, but from my experience it probably wont work with plesk, so I don’t recommend to do this.
Forum: Installing WordPress
In reply to: 3.1 install.php gives blank pagejhp1,
Probably you have wrong database info at wp-config.php file. Try to access blog without wp-config.php file and wordpress installation wizard will create it automatically during the installation. Also it should show you database error if you type wrong info.
display_errors, sorry. This is php parameter. Could be set in php.ini or .htaccess
Matthew,
Try to turn diplay_errors on to see the exact error.
Forum: Installing WordPress
In reply to: Can't open wp-admin/install.phpstarairi,
Looks like server issue. Php isn’t working. Try to contact hosting support and they will fix it.
Forum: Fixing WordPress
In reply to: 403 Forbidden Errormotasim,
Try to re-upload all the files, may be there are more missing or corrupt files exist.
Forum: Installing WordPress
In reply to: Page Not Found!hotrocks,
Does .htaccess file exist in wordpress folder?
If you have wordpress installed in the root and there’s no .htaccess there, you may create .htaccess manually and insert such lines there:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Forum: Installing WordPress
In reply to: WordPress & IIS 6 (blog not loading)Charles,
Try to reset web service for that domain name, clear your browser cache and try to access it again. Also you may try to recreate virtual hosts.
snapoint,
Issue could be fixed in minutes. Probable cause:
1. Wrong info in wp-config.php files.
2. Some files were damaged during the move.Forum: Fixing WordPress
In reply to: WP installs ok, then logging in to admin page wrecks itLyle,
Download wordpress from wordpress.org, unzip it on your local computer and re-upload all the wordpress files via FTP. Let FTP program to overwrite existing files. It should fix the problem.