Tag Archives: Programming

Project: Loukoulos.com

About two months ago we started a new project with the name “Loukoulos.com“.
The website is all about useful recipes, cooking tips and ideas.

Have a look at the website

Become a fan on our Facebook page: http://www.facebook.com/loukoulos.com
Follow us on twitter: @loukoulos_com ( https://twitter.com/loukoulos_com )

See some screenshots from the website as a slide-show in Flickr.com or subscribe to the set “Loukoulos.com”.

Your comments please… ;)

1 Star2 Stars (+11 rating, 6 votes)
Loading ... Loading ...
Share

WordPress permalinks with Greek/Russian/Arabic characters

Server Settings
OS: Linux
HTTP Server: Apache2
Database: MySQL (utf-8)
Scripting Language: php 5
Software: wordpress 3.0.4 - wp-confing.php

define('DB_CHARSET', 'utf8');

Create an .htaccess file in your root directory ( e.g www.example.com/ )

vi .htaccess #(you may have to sudo or su)

Add the following lines in the file .htaccess file…

# Disable Directory Browsing
Options All -Indexes

# Secure access to .htaccess files
<Files .htaccess>
order allow,deny
deny from all
</Files>

Save the file and exit vi (:wq).
You may have to give full access rights to .htaccess!?

chmod 777 .htaccess #(you may have to sudo or su)

Open your favorite browser, go to your www.example.com/wp-admin section then choose

Settings -> Permalinks

and apply your custom structure…

( e.g /%year%/%monthnum%/%postname%/ )

Save Changes

IMPORTANT
Remove the full access rights from .htaccess!

chmod 644 .htaccess #(you may have to sudo or su)

You are done! Enjoy your wordpress custom permalinks in your preffered language.

I have test it with greek, russian and arabic and worked as a charm!
See an example…
http://www.my-soul.net/blog/

;)

1 Star2 Stars (+34 rating, 15 votes)
Loading ... Loading ...
Share