arkgroup
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: sitename.com/index.php shows error but all internal links visable???lustandfury,
You have 301 redirect from http://morningthieves.com/ to http://morningthieves.com/ for some reason. Try to restart web service.
Forum: Fixing WordPress
In reply to: Admin URL not workingElena,
Please provide your domain name. Have you changed DNS for your domain name to hostgator’s?
Forum: Installing WordPress
In reply to: fatal error re admin.phpelasticgurl,
You have some strange path in require_once. You should check whether it’s correct or not. Also check inside admin.php, what’s on line 20?
Forum: Fixing WordPress
In reply to: Blank Page Syndrome and 403 errorsharebear,
I’ve checked support videos at mydomain.com, and according to it, they have some hosting control panel. May be there’s a link to logs anywhere. Access (httpd) logs may be have some more information than just 403 error.
Also check permissions for website root folder, it usually called like public_html, httpdocs, www or by your domain name. Try to set also 755 for it.
Forum: Installing WordPress
In reply to: Conflicting FilenamesIowa Tom,
Fantastico tries to install wordpress to /home/iowatom1/public_html/ as per the error message. Take a look at screenshot 2. You already have a lot of stuff in public_html. The problem is fantastico found index.php file in public_html folder and since wordpress needs to use it’s own index.php, the error had occurred.
There’s probably no need to edit .fantasticodata.
If you don’t need other stuff you have in public_html folder, simply delete it, or better back it up using filezilla and then delete on the server. After you delete it, you’ll be able to install wordpress. As I can see from screenshot 2, you have Joomla installed in public_html now.
Forum: Installing WordPress
In reply to: WordPress won't install….shows rubbish in all pages…debdeep1988,
Yea, I checked it. It has 302 redirect there and it’s trying to perform it all the time.
I still suggest you to copy your website to your computer and delete it from the server. Then upload a single php file, like phpinfo or helloworld, which has a simple php code inside. Access this file and you’ll see:
1. PHP is working or is not working.
2. No more 302 redirect or 302 redirect remains.Also check acceess logs, maybe you’ll find some relevant error there, or just paste it here or somewhere so we could check.
Forum: Installing WordPress
In reply to: httpd rewriting for permalinksGRAQ,
Yep, you’re right.
DrReaper,
Try this one:
RewriteEngine On
RewriteBase /news/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /news/index.php [L]Forum: Installing WordPress
In reply to: WordPress won't install….shows rubbish in all pages…debdeep1988,
Try to test php. Upload a simple page phpinfo.php with such code:
<? phpinfo(); ?>Try to re-upload wordpress, do not change any permissions and then install it using wordpress wizard.
Also check httpd logs of your website. There could be some error that will lead to a quick solution.
Forum: Installing WordPress
In reply to: Cannot view wordpress generated output files[Sat Mar 05 13:07:51 2011] [error] [client 100.2.18.14] File does not exist: /home/USER/www/WEBSITE2/about-2, referer: http://www.website2.ca/
It tries to open a directory index file in about-2 folder instead of rewriting the url for some reason.
Forum: Installing WordPress
In reply to: Cannot view wordpress generated output filesTry to disable permalinks from admin panel and then enable it again. Also try to insert this line to the beginning of a .htaccess file:
Options +FollowSymlinks
Make sure mod_rewrite installed. Just create simple phpinfo file and look for mod_rewrite there.
Forum: Installing WordPress
In reply to: Followed installation procedure doesn't workmatheve,
You have wrong database info in wp-config.php
You should access your hosting control panel first. Then check database server, database name, database username and it’s password. Change this info in wp-config.php and reupload the file.
Forum: Installing WordPress
In reply to: Cannot view wordpress generated output filesspineless,
You should have .htaccess file with rewrite rules in wordpress folder. Do you have this file?
Forum: Installing WordPress
In reply to: httpd rewriting for permalinksOr you may try to insert such code into your httpd.ini file:
RewriteEngine On
RewriteBase /news/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* /index.php [L]Forum: Installing WordPress
In reply to: httpd rewriting for permalinksForum: Installing WordPress
In reply to: Transferred site still displays old homepageWhat’s wrong with home page now? Have you disabled it or deleted index.php file?