Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • @jochent,

    Thank you so much! I’ve used the solution of adding both non trailing and with trailing slash as Source URL before but with your help. that worked!

    Thanks!

    k3ith08

    (@k3ith08)

    I see you are installing it on your local drive. Try to change the php version you are using. If you are using WAMP or XAMPP.. go to their documentation., it should taught you how to do that.

    Thread Starter k3ith08

    (@k3ith08)

    Hi thanks to all of you who contribute your time and answers, I already resolve changing my permalinks from ugly to pretty one using phpmyadmin from my cpanel. It’s kinda technical though but I created a video tutorial on how I did it to help others.
    http://keith-web-assistants.com/permalink-options-problem/

    Hi krazyb you said you installed your wordpress to the directory home.com/wordpress/ so the code on your .htacess should not be the same below as you stated:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    You should try to change it to:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /wordpress
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /wordpress/index.php [L]
    </IfModule>

    # END WordPress

    Did you notice the changes? Hope this help and let me know if it did, because I tried it with mine when I got the same error 500 as you had.

    Hi kiiro,

    I also had this problem before but I resolved it using some checked with my .htaccess file. What I did before was, I put this following codes from wordpress.

    # 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

    Also, if your blog is installed from other directory and not on your root like for example you installed it at http://yoursite.com/blog you must do some following changes from the code above.

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    ErrorDocument 404 /index.php?error=404
    RewriteEngine On
    RewriteBase /blog
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /blog/index.php [L]
    </IfModule>

    # END WordPress

    Did you notice the changes? I make the changes in bold. Take note, before you do edit your .htaccess, you should try to make some back up on it and download it to your drive or put on the place where you can easily upload it back again and restore if something’s wrong happens.

    P.S. You can find your .htaccess file from the root domain of your website.

    Hope this helps but if not, maybe other users will come up with you an answer.

    At my local PC and at my hosting with php5, i can’t change the page permalink. With blog posts all OK, but here it again and again revert to previous permalink ((
    http://screencast.com/t/7yVrZnhOw

    Is it a 2.7.1 bug?

    @exey
    Hi Exey, I see your problem and I don’t even think that is a problem for me. As I watch your video, you haven’t click the “Update Page”, you just copy the permalink that you have changed and saved,you did not updated the entire page.
    And ofcourse, the permalink doesn’t change at all after you came back to edit it again because, you did not click the “Update Page” button. Hope I had helped you.

    Happy blogging.

    Thread Starter k3ith08

    (@k3ith08)

    thanks for the reply sir, but I don’t know where to find what you are talking about. I’m just not a code savvy but I am learning it as much as I can. And here’s another user I found that have the same problem with mine :
    http://ww.wp.xz.cn/support/topic/383731?replies=1

    What else should I do for this? Thanks a lot.

Viewing 7 replies - 1 through 7 (of 7 total)