arkgroup
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: help ! Internal Server Errorwhirlygirl,
Could be .htaccess, mod_security, other server error. You should contact hosting support, such issue is possible to fix in few minutes.
Forum: Installing WordPress
In reply to: Im begging for installation helpTo connect via FTP, you should type such values into appropriate fields in Filezilla:
1. host name: your domain name, IP address or server domain name.
2. username: ftp username or username from your control panel account
3. password: password for your username
4. port: 21 (default ftp port)Forum: Installing WordPress
In reply to: Im begging for installation helpleoallende,
You may try to make a little experiment on your local computer:
1. Install wordpress 3.0
2. Install template
3. Upgrade wordpress to 3.1 version.As for support guy and his answer, there is a huge possibility that his answer is not true. So may be it would be much simpler to install 3.0 version and use the template without any upgrading. As for security issues, you should just perform backups once in few days, and even if something happens, you just replace it with backup. It’s always a matter of time when someone finds some security breach even in the newest version.
Forum: Fixing WordPress
In reply to: [Newbie]Cannot Upload Themes/PicturesHelloShay,
Try 777 for /uploads/. 775 should not work for php-cli, and may be will not work for php-cgi. So if you set 777 and you’ll got the same or 500 error, try to set 755.
Forum: Installing WordPress
In reply to: 500 Internal Server Error on wp-adminNo need to paste .htaccess. Just rename it to .htaccess1. Try to access your website again. If 500 error remains then it’s not .htaccess problem. Second possible cause: mod_security.
Forum: Fixing WordPress
In reply to: Always error 404Please clarify and tell us steps to reproduce the problem. The cause of 404 error could be:
1. No files at the current address.
2. DNS issue.
3. PHP is not working.Forum: Installing WordPress
In reply to: httpd rewriting for permalinksYes, it looks like ISAPI_Rewrite 2 has different syntax:
http://www.isapirewrite.com/docs/#RegexSyntThey to ask the same question at their forum. I’ve searched and yet have not found any common solution for wordress and ISAPI_Rewrite 2.
Forum: Installing WordPress
In reply to: http://error404.000webhost.com/?ginaorefice,
Please provide your domain name. There’s a 50% chance you have simple DNS issue and 50% chance you have PHP problems.
Por favor, indique su nombre de dominio. Hay una probabilidad del 50% tiene problema de DNS y el 50% de probabilidad de que haya problemas de PHP.
conversatio,
This is probably DirectoryIndex issue. I think you’re using html or other format than php on your main website, that’s why you need to set DirectoryIndex to: index.html index.php. May be it’s possible from your hosting control panel. If you have a linux account, you may try to create a .htaccess file in the root folder of your website or append such line to existing one:
DirectoryIndex index.html index.php
If index.html is not your main website page, just replace it with a real file name of main website file.
Forum: Installing WordPress
In reply to: Newbie needs WAMP helpNJ2FL,
If you WAMP allows to run website on your local computer only from one folder (let’s say htdocs), then you may create more folders inside /htdocs/ for different wordpress blogs and access them by typing something like this in your browser:
http://localhost/wordpress1/
http://localhost/wordpress2/
etc…Each wordpress requires it’s own database. You may create databases using phpMyAdmin.
I personally recommend you this WAMP:
http://www.denwer.ru/It’s russian (I don’t know whether they have English version of it or not, may be you’ll need a little bit of google translate), but it’s good and convenient. You’ll be able to create as much local domain names for wordpress applications as you want and many more. It’s not an ad, I just use it myself.
Forum: Installing WordPress
In reply to: httpd rewriting for permalinksCreate b.html file, place it in the root folder of your website and insert any text there like:
testing isapi rewriteInsert such lines into your httpd.ini
RewriteEngine On
RewriteRule ^a.html$ /b.html [L]Try to access: http://your-domain.com/a.html
Forum: Installing WordPress
In reply to: Are there certain hosting companies that won't run WordPress?Bockett,
If you created it inside theme folder, than you should be able to access it with:
http://your-domain.com/wordpress/wp-content/themes/your-theme/phpinfo.php
or if you have wordpress installed in root folder:
http://your-domain.com/wp-content/themes/your-theme/phpinfo.phpForum: Installing WordPress
In reply to: httpd rewriting for permalinksDrReaper,
May be something’s wrong with isapi-rewrite. Try to make a simple rule and check whether it’s working or not.
Forum: Fixing WordPress
In reply to: Replace current WordPress site with new WordPress sitebeyondbabe,
To change wordpress addess you need to open your dashboard->Settings->And change WordPress address (URL) to new domain name. However, to move your website, you’ll need to move all the files and a database to new place too, and change wp-config.php according to new database info.
You should move the files and database first, make sure new domain name is operational and only then change website url.
Forum: Installing WordPress
In reply to: Are there certain hosting companies that won't run WordPress?Bockett,
It could be a GD library problem if you have problems with thumbnails. Create a simple phpinfo.php file and insert the code below:
<? phpinfo(); ?>Access this file with your browser and search for “gd”. If there’s no reference in phpinfo, than probably it’s not installed and you should ask hosting company to install it.
Read the requirements of your theme, if there is one and may be you’ll find what software should be installed to make it 100% functional.