DNL
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blog being blocked by web browsershttp://appointmentsetting.blog.yorkc.com/
I deleted the cookies and now it’s working again.
Forum: Fixing WordPress
In reply to: Switching wordpress from one subdomain to anotherI did the same thing on Friday – just copied all the files from one subdomain to the other. Changed in general settings the URLs and it all worked perfectly fine. But after the weekend when I wanted to check the blog, it gave me the 404 error. It can’t find it.
Do you know what could be the reason and what should I do to make it work?
Thanks!
Forum: Fixing WordPress
In reply to: Can't create the directoryMy web-host has transferred my site to another server and after that the blog was able to create folders and upload themes, and pictures etc. But it still couldn’t create new pages with posts! To fix that I just added in the .htaccess file, in the main directory the following:
# BEGIN WordPress
<IfModule mod_rewrite.c>
ErrorDocument 404 /index.php?error=404
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress…and everything started to work great.
Forum: Fixing WordPress
In reply to: Can't create the directoryHave you tried to download all the files to your computer through FTP. This would keep your theme settings and all changes you’ve made in the blog’s templates code. And through the control panel you would also be able to export the database.
Then upload them to another webhost’s server.
This might be a solution.
Forum: Fixing WordPress
In reply to: Can't create the directoryI have fixed the problem 🙂
I added to the .htaccess file the following:
# BEGIN WordPress
<IfModule mod_rewrite.c>
ErrorDocument 404 /index.php?error=404
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressEverything works works now 🙂
Forum: Fixing WordPress
In reply to: Can't create the directoryHi Esmi,
Thanks for your reply!
It was a problem with my webhost. He changed the server and now I can upload/create folder, but other problems still persist.
I can upload images, new themes, but it doesn’t add new pages/posts. They all appear on the home page, but when clicking on the title to open the article, it opens a link that doesn’t exist:
http://exampleblog.website.com/2010/12/article-title/It seems like it can’t create them and it doesn’t give me any error messages.
I have all the pages in the wp_admin folder – I see and can edit them in the admin interface, but they don’t appear on the public interface. There are no new files created.
It makes changes in existing files, creates sub folders, uploads files, but it seems like it doesn’t create anything in the main directory of the subdomain, where the blog is located.
Do you know what could be the reason?