secondv
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Have database but can't get into it to register user etcYou should be able to login to the WordPress dashboard by going to: yourdomain.com/path/to/wordpress/wp-admin/
(replacing path/to/wordpress with the folder WordPress is located in, if any)
Forum: Fixing WordPress
In reply to: Can't update anything and plugins not visible?Any type of PHP error, mainly. After you get the blank page, check the most recent error log entry (if any).
Forum: Fixing WordPress
In reply to: My Feed not workingAre you trying to redirect that URL somehow (with a plugin, htaccess, …)?
I get:
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.Forum: Fixing WordPress
In reply to: url takes me to domain host not siteLooks like a DNS issue possibly. I notice your domain was last updated yesterday. Give it some time, and the non-www version should work as well 🙂
Forum: Fixing WordPress
In reply to: Cannot view pagesNo problem Sean. I am glad that it is now working for you. 🙂
Forum: Installing WordPress
In reply to: Error establishing a database connectionThe username for MySQL on XAMPP is root by default, and the MySQL password is blank. If you did not change these, then you may want to try those values.
Forum: Fixing WordPress
In reply to: Cannot view pagesYou may want to replace that with what I posted. That appears to be your problem.
Forum: Fixing WordPress
In reply to: Cannot view pagesAre you using the default permalink structure? Do you have this in your httpd.conf file (or something similar)?:
<IfModule dir_module> DirectoryIndex index.php index.pl index.cgi index.asp index.shtml index.html index.htm \ default.php default.pl default.cgi default.asp default.shtml default.html default.htm \ home.php home.pl home.cgi home.asp home.shtml home.html home.htm </IfModule>Forum: Fixing WordPress
In reply to: I don't want 404 to go to main page anymoreTry this:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{QUERY_STRING} (p|option|g|b)=* RewriteRule ^(.*) /404.html [L] RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressForum: Fixing WordPress
In reply to: I don't want 404 to go to main page anymoreI will research it a bit more, but for now something like this should work:
RewriteCond %{QUERY_STRING} (p|option|g|b)=* RewriteRule ^(.*) /404.shtml [L]The main issue with that being you will not be able to access your posts/pages using ?p=postid
Forum: Fixing WordPress
In reply to: url takes me to domain host not siteYour site loads fine for me, as does wp-admin. You may want to try clearing your browser cache, and trying again. It could also be a DNS issue for you. It looks like 123-reg directs new domains to a parking page on registration.
Forum: Fixing WordPress
In reply to: How can I import EVERYTHING from another WordPress blog?As far as images, assuming these were uploaded using the media manager, you will want to copy over the /wp-content/uploads/ (the default location) folder to your new host.
Forum: Fixing WordPress
In reply to: A completely private online diaryAnother option would be to mark the posts as private, before publishing them.
Forum: Installing WordPress
In reply to: 500 Internal Server ErrorWhat host are you using? What are the contents of your .htaccess file? Does your host support .htaccess files (some hosts, believe it or not, may not allow you to utilize them).
Forum: Fixing WordPress
In reply to: Can't update anything and plugins not visible?Are you able to view your server/php error logs? It sounds like something is erring, given the blank page.