WordPress Plugin: WP Native Dashboard (en)
| WordPress Version: | WordPress 2.7 or higher |
| PHP Version: | PHP 4.4.2 or higher |
| tested Browser: | IE7 | FireFox 2.0.0.16 | Opera 9.27 | Safari (Windows) 3.1.2 | Google Chrome |
| not supported Browser: | none known yet |

One of my favorites in coding for WordPress is to manage different localizations. I was not convinced by PoEdit, because i have to do translation work outside the running application without a chance to verify the translation immediately. Doing so inside WordPress backend saves a lot of time and also provides the verification i need.
But the next problem raised while i was unable to switch my backend language on demand. I do normally write my posts at 2 languages (german and english) but i had no chance to work at the backend related to the language i’m currently posting with.
I think that most of the blogs where native speaking/writing authors are publishing posts, they would like to defined the prefered backend language too. That’s why i did introduce this plugin.
Capabilities
The main goal of this plugin is the definition of languages that WordPress backend can be used with. This definition can only be managed by administrators, any other user can’t change this settings. The admin can define, which of the 3 possible extensions are enabled for blog members (or which combination out of):
- extend the WordPress logon screen
- extend the backend header with quick switcher
- extend the user profile settings
All of those extension can only be enabled by administrators. All your blog member (including the subscriber) can use the enabled features to choose their prefered language.

What’s about multi-lingual plugins ?
This backend related plugin doesn’t change your blogs behavoir at frontend and also doesn’t collide with any known multi-lingual plugins. It only overstep the WPLANG given blog language and sets it to the users prefered (choosen), if the user works at backend. It’s the same as you would permanently change the wp-config.php definition prior to logon. But the plugin does this without any file modification and more sophisticated.
Where can i get the WordPress language files ?
This plugin has got a build-in download interface from svn.automattic.com to retrieve the existing files that are matching your current version and are provided by polyglot teams. You can check the repository for existing files and afterwards download the required files form your installation. Currently it is necessary to have direct write access to your file system doing so. If this is not possible (and will be detected by the plugin) the download option won’t be shown.

Direct File Write Permissions
Some configurations at your hoster may require that your updates has to be performed by FTP or SSH. This plugin now fully supports this during language file download and erasing language files. It uses the WordPress core functions for filesystem and will prompt you for user credentials if they are really needed (like updates would do).
Internally it works the same way than update of plugins/core would do it, but with a nice dialog showing up therefor. So you can safely use this as you know it.

Warning: Some languages provide a special xx_XX.php file disabling your login!
This happens if you did not define you own phrases inside the wp-config.php file. If the default is still in place at any of those defines like define(’AUTH_KEY’, ‘put your unique phrase here’); the internal validation fails. The failure reason is the additional file needed for russian language named “ru_RU.php” in cooperation with your wp-config.php file. Inside this file the default phrase has been changed to
| PHP | |
1 | $wp_default_secret_key = 'впишите сюда уникальную фразу'; |
| timing: 0.028s | |
instead of original ‘put your unique phrase here’. This can be solved if you modify the wp-config.php file with your own phases as highly recommended by WP core teams too.
Actual Download
The new version: wp-native-dashboard-v1.3.8.zip (19217 downloads) can be also found at wordpress.org/extend/plugins.






Kornelije Sajler
28.07.2009 | 00:09Hi, first thanks for this great plugin and all rest plugins. I have some problems with this plugin, and problem is when I install your plugin I got an error, in foreach loop of $installed languages inside wp-native-dashboard.php.
So I debug it to find why installed languages aren’t filling $installed array.
In wp_native_dashboard_collect_installed_languages() you are searching for languages in wp-content directory or (WP_CONTENT_DIR.’/languages’) but in my installation of WordPress (2.8.2) languages are stored in wp-includes directory.
I’m very new in WordPress world and don’t know the past of changes, and I really don’t know is there a constant for wp-includes dir like WP_CONTENT_DIR for wp-content dir. And I don’t know why your searching languages in content when they are (for me) in includes folder, but maybe you can tell us
I fix it easily like this changing WP_CONTENT_DIR.’/languages’ to ABSPATH.’wp-includes/languages’, but it is called twice. This is what my function looks at the end, I comment code that didn’t work for me:
I don’t know does anyone have had this problem but this is my fix, and it works fine, hope will help someone. I think to write a blog about it and I hope that’s OK with you, and you probably give us more information about this problem.
Thanks again Heiko for this wonderful plugin!
reply »
codestyling
28.07.2009 | 00:22It seems, that i made this mistake inside. I sould have used the constant therefore like WP_LANG_DIR
This can be found as defintion at wp-setting.php:
I will changed this as soon as possible and also adapt it to FTP capabilities for users unable to write directly to disk. Placing in includes path is an old style behavoir the location has been changed to be wp-content. Reason for that was not to loose language files during an automatic update and also make a backup easier for user (just zip the wp-content path and make a db dump)
reply »
Kornelije Sajler
28.07.2009 | 11:30Yep, this far more nicer and cleaner solution than my, but I didn’t know about WP_LANG_DIR.
I would also point you to make more readable dropdowns for changing languages, I really don’t like en_US, or de_DE I would rather prefer English or Deutsch for choosing.
reply »
codestyling
28.07.2009 | 11:45Currently i’m testing the fixed version (and also the FTP credentials support for not writable webspaces).
The naming for languages i have also thought about, but where to obtain the names ?
Let’s say i write a *.php only containing a huge array of translation from “en_US” => “Englisch” etc.
I have to extend this any time a not yet available language appears. Furthermore what happens to “ja_SJIS.mo” in this case ?
It’s not trivial to map this with “user friendly” names, any suggestions are welcome.
reply »
Kornelije Sajler
28.07.2009 | 15:48Now I see that Localization is total mess!
First you mention ja_SJIS, but according to wikipedia SJIS is a character encoding and there is no ja_SJIS because it isn’t valid. Valid patterns are Language_Region like en_US, en_GB. United States, Great Britain are valid but Shift JIS is not valid region it’s a character encoding. Here I have found a lots of information and they all point to IANA text file, but thanks to Richard Ishida who have made a page for searching and displaying everything from IANA text file (and also leave PHP source code).
Problem with IANA is there is no rule, order or relation between Languages and Regions tags so nothing stop you to put a en_DE, as some kind of German English dialect, which is very liberal but is confusing and gives endless possibilities, so no help from IANA.
Now I can’t see only one solution to make “user friendly” names is to display name and language code. And I would’t translate “user friendly” name for me it must bi in Native language like Français, Deutsch, Hrvatski, עברית,…
And yes i think it had to be in array in .php file, I see no solution, but you could maybe sync with WP i18n repository, is there an attribute like native name of language in .mo file or somewhere else?
reply »
codestyling
28.07.2009 | 16:00Yes, that’s my daily struggle, there is no reliable standard.
I think, i will solve this as i did it for the localization plugin, just create an UTF-8 based *.php file containing an hash map and fill it as possible. It will result as fallback to the current locale specifier. It have to be updated whenever someone wants it language correctly named.
And no, the mo-files contains in best case the english language names but need not. So you can have non, lowercased, uppercased or something wired inside. It’s also not reliable.
reply »
ovidiu
29.07.2009 | 10:47just wondering, tried your plugin today, loading the available languages for download took 5 minutes, then when I click on any of the language files for downloading, all I get is a pop up saying: Error. Download not available.
am I doing somethign wrong? will check the logfiles later on from home, can’t check now, but if you have another idea, I am open for suggestions.
reply »
codestyling
29.07.2009 | 11:09The download search process takes some time, because the repository will be walked for all registered language directories. It’s new for me, that this takes upto 5 min, on my machine it takes 1.5 min to get the list of available languages. As reason for this delay i could only think about low connection speed from your server to other outside servers.
Download not available signals a problem in most cases. If repo scan founds something and lists it, it should also be downloadable. You didn’t write, if you have been requested for user credentials. This would be nice to know to have a direction where to investigate first.
It may be, that this could caused by missing language file folder at original US installations. Normally the folder should be at /wp-content/languages/ (normal WP versions). I will check, if missing such folder runs into this issue. You could check, if you have such a folder too.
reply »
ovidiu
29.07.2009 | 14:42ok, thx. forgot to mention its wpmu 2.8.2. where is the languages folder supposed to be so I can check? There is definitely no wp-content/languages folder here
and yes, its an original US english version, just downloaded…
No I wasn’t asked for credentials, the permissions are set up perfectly, I can isntall and edit themes and plugins from within wordpress jsut fine.
reply »
codestyling
29.07.2009 | 15:45I’ve checked the WPMU package and yes, the languages folder is missing as also known from US WP normal version. This folder should be created as /wp-content/languages, so you can also backup your localizable version by just zipping the wp-content folder.
WordPress internally searches first this folder and in case of missing it assumes, that the old one location is still been used (version prior to 2.6) as /wp-includes/languages
In the meantime i found out, that missing both folder the update won’t work as expected. I have changed this and will update this night a new version again.
If no such folder exists, WP sets the constant nevertheless to the old path. So a download will force creation of folder first based on the constant prior to populate it with files. I’m thinking about to report this as bug at WP Trac, because in case of missing both folders it should default the constant WP_LANG_DIR to the new instead of old on location.
reply »
ovidiu
30.07.2009 | 09:57thx. works now with the latest version
reply »
Paul
08.09.2009 | 13:55Hi,
I’m trying to use the plugin, but clicking on “Available for download: check repository » ” link does nothing.
I’ve opened write access to www folder on my FTP and deactivated other plugins just in case. The link still doesn’t work.
What can be the problem, and is there a way to manually upload language files?
Thank you!
reply »
Tomáš Kapler
01.10.2009 | 21:06I wonder if that plugin can also do one very important thing - change frontend __() functions language. E.g. it would be great, if the plugin can detect visitor language and based on this if it could change e.g. “5 comments” and other automatic texts to his needs.
And one offtopic - what is on your opinion the best plugin or way to do multilanguage webs? I didn’t like anything i tried, for me very often the best way was to create page structure with 2 top pages, with slugs e.g. “en” and “cz” and then simply create translated articles under this top pages.
reply »
Fake
03.11.2009 | 09:59Hi, I’m building a wordpress based website (not live so I can’t show you yet), and I’ve installed your plugin for the backend. It works great, looks slick and I’m really happy with it, so I was wondering if you could give me some pointers as to how to bring the language selector to the front end?
All it would do there is change the items in the main menu and the titles in the sidebar, not any content of course, but as our users are invited to log in and ad their own content, and thus will be working with the back end as well, it would be nice if they could change language in both front- and backend with one button.
thanks in advance for your input!
reply »
nonegiven
19.12.2009 | 03:29Nice plugin.
Can I suggest a “global option/preset” for WPMU?
Or is there a simple hack to set the default settings to “on” rather than “off”?
Thanks.
reply »
anthony
12.02.2010 | 23:10No problem, I found it… it rocks! hehehe
reply »
anthony
13.02.2010 | 00:35Hi! It’s me again
I downloaded hr.mo file and I used Localization plugin to try fix Croatian translation because it’s quite bad and it works fine. Everything works fine from technical view but there are few things you cannot translate, like “Add new” for add new posts and few things more.. I want it to look perfect so I better leave it in english for now.
reply »
SithuThwin
10.04.2010 | 11:03i use your wp-native dashboard plugin in my blog site. everything just fine except logon screen. language selector doesn’t appear on logon screen. i’m not coder and i don’t know about php. how can i fix this problem.
denke sehr,
herzcthu.
reply »
Lod Lawson
17.04.2010 | 21:50I installed this plugin that works great.The issue i came accross is that the default admin menus and content are nicely translated however,any other plugin menu is not translated.Any way you can give me tips on how to get this done?Or maybe consider this feature in the next coming updates.Thank .
reply »
Lod
28.06.2010 | 12:57i have a site in Hebrew .I setup the site admin to be in hebrew and english using this plugin.Before i installed and activated this plugin, the menus where located on the right for hebrew as hebrew is a right to left language .However since i activated the plugin the menu moved to the left,what is not attractive at all.I desactivated the plugin but the admin does no revert to the previous layout.I mean that the menus are still located in the right.Can you help please.Seems like the plugin made change to core file.Otherwise desactivating the plugin should allow things to get back to normal.i am using wordpress 2.9.2
thanks
reply »
Ariel
02.07.2011 | 05:36automatic download doesn’t include hebrew ? dou you have any idea why ?
reply »
falk
06.09.2010 | 21:16love the plugin. should be used my many more people. unfortunately it seems to be not that popular it should be. thanks a lot for your work. greetz
reply »
JuhaO
27.09.2010 | 16:59I don’t understand the info You have on the WP site. I’m trying to get russian blog with english dashboard to work. “the additional file needed for russian language named “ru_RU.php” in cooperation with your wp-config.php file. ” Where is the file: ru_RU.php?
reply »
codestyling
27.09.2010 | 18:53If you download the russian language with my plugin at backend, you will get the ru_RU.php downloaded too. This is an additional feature WordPress have had to support special things at several languages on loading this language. But as stated, this may lead to problems, if the config has not been proper changed.
reply »
anmari
13.11.2010 | 05:56Hi,
I have taken the liberty of adding a link to your plugin from the wordpress codex
http://codex.wordpress.org/WordPress_in_Your_Language and
http://codex.wordpress.org/Installing_WordPress_in_Your_Language#Manually_Installing_Language_Files.
I was astounded that it took me a while to find the plugin - I could not believe that the functionality did not already exist somewhere.
Two comments:
1. It came up with 3.0 files, however I had seen some 3.0.1 translations in the repository.
2. It would be even more amazingly helpful if it also downloaded the current default theme (eg: twentyten) - they seemed to be stored in the same folder as the main wp files and just need a different destination folder under the theme.
I have rated the plugin (5 star and works) to try to elevate the plugin, and of course a donation is on the way. I also have a little project on the way that I will be using it on and it may get a bit more attention then.
reply »
Milan
11.12.2010 | 17:27Do you plan to update this plugin so that it can show language menu at new admin bar that will be introduced in WP 3.1?
If so, I would like to add some functions specific to Serbian language to your plugin, if you don’t mind that.
(btw, you should enable some comment email subscription plugin for easier tracking of comments replies)
reply »
codestyling
10.06.2011 | 14:27Currently this is not planned but seems to be a valid idea for future extension. Thanks for pointing this out.
(Because of memory limit issues and other things i’m not able run such a plugin. This is subject of relaunch this blog at future.)
reply »
Kevin
11.12.2010 | 20:13Thanks for the plugin, i think it’s very easy to use and powerful, it’s also very helpful to install language files!
Though i had some problems, the first one being it doesn’t install on WPMU, i mean it doesn’t affect other blogs (at least the header dropdown list).
Also if someone had the brazilian-portuguese files, i’d be grateful. I’ve taken them from br.wordpress.org, put them in the wp-includes/languages/ folder, it does appear and work through the header dropdown list, but it doesn’t appear in the option page..
Thanks again for this great plugin!
reply »
Luke Miller
17.01.2011 | 16:12An excellent plugin. Does exactly what it says on the tin very well.
The screen shots on wordpress.org Plugin download suggest there is a Polish language kit. Is it possible for me to download this, as I am not able to find this in the Native Dashboard settings screen? Any help will be greatly appreciated.
reply »
Sotos
28.01.2011 | 00:14Hello I am trying to install the Native dashboard plugin.
I have not got any window for crdentials and when searching to download available languages I get no result.
Actually I would love to know if the greek language is included and what is your suggestion on downloading it!!!
Thanks in advance
Best Regards
Sotos
reply »
codestyling
10.06.2011 | 14:36Currently there is no reporsitory hosted greek translation afaik.
reply »
Sotos
28.01.2011 | 00:21…coming back again. If that helps I follow the steps:
1.Press link “check repository”
2.The searching image is displayed
3.After a few seconds the title “Available for download: ” is presented
4.Undernetath no languages are shown.
5.Have used firefox, iexplorer & chrome as web-browsers
6.In the meanwhile no window with user credentials has popped up
reply »
codestyling
10.06.2011 | 14:35If no credential pops up, you may not need those. Does your automatic update need credentials?
Futhermore you should get a progress bar while searching for files. If not, 2 things could be possible:
a) another plugin breaks my plugins with wild js code
b) your server can’t contact the internet as expects to find the downloads.
Please check this.
reply »
Khanh
18.09.2011 | 17:39Hello, I got the same problem. I searched for comments here which can solve the problem. It seems that the author does not answer the question about this problem. Could anybody help to solve this problem?
reply »
Dedy Sofyan
12.02.2011 | 06:35Guten Tag,
I’m currently actively involved in BuddyPress localization and maintaining the SVN repo, if you need the address to be included in your plugin, that’ll be great. Bitte.
http://i18n.svn.buddypress.org/id_ID/branches/1.2/
for the latest 1.2.7 version
PS. I’ve translated for your codestyling localization plugin as well, and commented on the respected page, but (the comment) still awaiting moderation till now
Cheers.
reply »
codestyling
10.06.2011 | 14:39Thanks for this information. Seems to be a good idea to collect those links for special plugins/themes.
I will think about the support for the future soon.
reply »
Fulanito
22.02.2011 | 16:43I can’t download language files… nothing happen when I click “Check Repositories”… My server does not support flash for uploading new media through my admin panel… I’m using the “browser uploader” instead of the “Flash uploader” is this a similar problem? is there an other way to download or install the language files manually through ftp?
Thanx!
reply »
Robert
26.02.2011 | 12:25This has been of great help for me, as my new website will be used by different editors who not all capable of understanding each others language.
Thanks.
PS: Do you recommend any plugin for having the content also multi-language ?
WPML changed into a paid version now, but I am still considering to use an other plugin to do this.
reply »
Mostafa
23.06.2011 | 16:00GREAT WORK!!! I’ve been looking for this for more than 3 hours (I’m relatively very fast at finding things on the net), now I’ve finally found it!
reply »
a4jp.com
11.07.2011 | 16:42This plug-in is wonderful but the “register new user (/wp-login.php?action=register)” page is missing the language settings. Also how do I get the language to change on the page when I choose the language with the drop down box? Adding the flags to the drop down would also be good. I select a language but nothing on the page changes until I log in. The first screen needs to be translated as well, before the user or registering user logs in. I can help you with Japanese translations if needed or a few tweaks to the log-in screen.
You can see the problem on my site http://agreatdream.com . After I get the log in working in lots of different languages I will be making a multilingual site with lots of free study resources for every one. I’ve got the user registration working now so everything is very close. I hope you enjoy the free lessons.
Glen
reply »
Sven
23.07.2011 | 10:42Hello,
I’ve installed the WP Native Dashboard and want to change my website into Dutch.
However, under the ‘downloads’ tab, no language appears
and when I click ‘check repository’ nothing happens. I am using Firefox and also tried it in Internet Explorer, but there is no difference.
Is there anybody who know what the cause is of this, and how I can make it work?
I have to mention that I know nothing about programming.
Thanks a lot for the help,
Sven
reply »
marie
06.08.2011 | 18:27This wasn’t working for me (and it had in the past on other sites I was putting together). I read through the comments here and added a languages directory to wp-content, which did the trick!
Thanks for a great plug-in.
reply »
Celesh
21.10.2011 | 12:08Hi,
your plugin is really great!
I wonder if there is a way to let the theme “get” the language I set up with your plugin, so users can see the site (at least, the dashboard and the template) in their language!
Let me know
Thank you very much!!
Celesh
reply »
Danny Cruz
25.10.2011 | 20:31Would it be good practice to delete the language files that are not needed from the language repository of Wordpress? Meaning, if I know I’m never going to use Polish, Chinese or Dutch, can I just delete them altogether so the WP Native Language selector only shows the languages I might need?
reply »
Hiwa
31.10.2011 | 22:16Hi there
Great plugin thanks. Could we have a little more room for Kurdish please? It adds the Turkish flag to it which is not quite accurate, could we have a Kurdish flag for it please?
Great png here
http://krg.org/download/Kurdistan_flag_3457×2355.gif
thanks
Hiwa
reply »
Robin Massart
06.12.2011 | 14:21Hi,
I’ve installed this on Wordpress multisite and whilst it seems to work, some bits might need tweaking to make it fully compatible with WP 3.2.1:
1. Integration into the admin pages needs new styling as it looks a bit out of place at the moment.
2. The setting “extend WordPress Admin Bar with a language quick selector. ” doesn’t seem to have any effect at the moment.
Otherwise works fine though.
Thanks.
reply »
a4jp.com
13.12.2011 | 20:29This plugin works but shows up a bit weirdly in the newest version of WordPress 3.3. Can you update the plugin so the text doesn’t show up on top of the flag icons? Also fix the color of the text links. The drop shadow makes it look like the text is doubled on my site (http://a4jp.com).
Love this plugin (^-^)v
Glen
reply »
Adam
15.12.2011 | 10:16He there,
I’m trying to build a plugin that will enable my students to switch to Hebrew with one click, and was hoping I might be able to consult with you about how to go about it.
I want to rely on remotely hosted language files (on my server), rather than have the users download them, but can’t seem to figure out how to force Wordpress to use a different path for the language files.
Any assistance would be very appreciated!
-Adam
reply »
Marc
26.12.2011 | 04:47Hello.
Great pluggin. You are doing the world a big favor.
I downloaded for Wordpress version 3.3 and the pluggin doesn’t show up when activated. Is this a known issue?
This is for a new site. I don’t understand. Please advise.
Marc
reply »
Wlady
27.12.2011 | 13:21Very nice. I like it much.
Excuse my english…
My problem and question is, i want it to use for buddypress too. Do you have an solution to collegate it?
So when i change my language it will change the language from buddypress, too?
Is something like this possible with your really great plugin? Or have you an other solution?
Thank you very much
reply »
agreatdream.com
10.03.2012 | 23:05Please update your amazing plugin. It would also be good if the log in screen had the same options and refreshed the screen.
reply »
Reza
03.05.2012 | 02:58Massive Thanks … How I can present (donate) something to you?
With Respect
reply »
Izya
23.05.2012 | 13:49The latest 1.3.7 doesn’t swith languages in the console anymore,
And you have a busted (-2009) copyleft in the plugin setting bottom.
reply »
codestyling
23.05.2012 | 14:48Copyleft is overlooked, sorry
But swithcing works, I don’t understand, what you meen with console? It may be a problem of your browser caching scripts, please try as first step to cleanup the browser cache. If this not solve it, save the settings of this plugin.
If you are using a WP Version less than 3.0 please let me know to run this against such a version locally for testing purpose.
reply »
Izya
25.05.2012 | 02:52Hi. Save settings was the first thing I tried,
I installed a clean portable FF browser.
I login to the site and go to the cosole (the back end, where you have all the settings, etc - the dashboard).
In the pligin setting menu I have two languages - en_EN and ru_RU
In the top left corner I have the Russian ru_RU. I hower my mouse there, point it to English and click English.
The page reloads, but it is in Russian. Whatever I do, it is still Russian.
I even deleted and reinstalled the plugin, but it didn’t help.
I have to keep a Russian wordpress intallation for the Russian users, but the language drives me mad in administration since you never know what the button means. English is so more understantable in technical issues and much shorter. So had to revert to the previous version. The new version is not working for me. And yes, that’s WP 3.2.2
reply »
codestyling
25.05.2012 | 08:21Seems to be an issue, that I can’t resolve without access to the backend and do an investigation, why this is not working. I assume, there may be a scripting issue between my plugin and other installed plugins/theme. This has to be sorted out first and than to anaylse, why this behavior occures.
I can’t reproduce it locally, I have installed only russian lang file and english is build in. And all works locally (and all my testing environments) as expected.
If it’s an option, I would check your problem, please permit access to it. My mail can be found at imprint page.
reply »
Izya
25.05.2012 | 22:04told ya:)
reply »
codestyling
26.05.2012 | 11:02Solved. Will be included at version 1.3.8 comming soon.
reply »
Izya
26.05.2012 | 22:41Thanks. You’re awesome!
reply »
a4jp.com
23.05.2012 | 19:34Thank you sooooooooooo much for the update.
Just two things: The language option is missing from the admin bar when we are just looking at the site, and En (US English) doesn’t work anymore.
Everything shows up in English if I load Canadian English though. Maybe the American English files just didn’t get updated or got left out.
Glen
reply »
codestyling
24.05.2012 | 07:26I don’t understand the issues. Tested with WP 3.3.x and WP 3.4 (nightlies) all is normal at my system. Could you explain it more in detail? I will send a mail to clarify this off blog and return the result later on here.
reply »
Izya
26.05.2012 | 22:42S/He just didn’t check the needed boxes in the options I guess
reply »
Mike
31.05.2012 | 20:44Hello everybody,
After the update of the day about the plugin “NATIVE DASHBOARD”, the update was blocked on loading and after waiting a long time, a message appears on the screen : The site is not availaible … maintenance.
After, my site returns this information now:
Warning: require_once(/homez.443/rjvclkbl/www/wp-content/plugins/wp-native-dashboard/loginselector.php) [function.require-once]: failed to open stream: No such file or directory in /homez.443/rjvclkbl/www/wp-content/plugins/wp-native-dashboard/wp-native-dashboard.php on line 224
Fatal error: require_once() [function.require]: Failed opening required ‘/homez.443/rjvclkbl/www/wp-content/plugins/wp-native-dashboard/loginselector.php’ (include_path=’.:/usr/local/lib/php’) in /homez.443/rjvclkbl/www/wp-content/plugins/wp-native-dashboard/wp-native-dashboard.php on line 224
Could you help me ?
reply »
codestyling
01.06.2012 | 07:04As written by mail:
The way you described it, WordPress seems to be died in between the automatic update process and didn’t write all the files out of the *.zip package tot he disk. Afterwards my plugin trie to load the additional file like loginselector.php but it doesn’t exists.
Toget the site running again, use FTP client and erase the folder
wp-native-dashboard
within the plugins folder. Afterwards a reload oft he site detectes the missing plugin, removes it from the loading list and your site should be back.
I have no idea, why it dies during update at your host, maybe, you have a very low memory limit and a lot of other plugins loaded. So the automatic update gets too less memory and dies. You could also download the *.zip file of my plugin from wordpress.org to your local pc, extract it a upload the complete folder using FTP to your plugins directory as alternative.
reply »
Nuke
13.06.2012 | 09:37Hi,
great plugin but i have a question. How do you choose the default language? seems like its always English.
Thank you.
reply »
codestyling
13.06.2012 | 18:05I don’t know, what you suppose to be a “default” language?
Normally, as slong as you don’t download additional WordPress language files you will only have english US. If you have at least one other WordPress language file present, the plugin remembers per user, what was the last chosen language. If you hav enabled the login selector too, that one always is english as default because nobody is logged in. If you forget to choose at login you language, the remembered lang will be set to that one at login dialog and you will get english. By disable the login language but enabling the adminbar qucik switcher you will get after login the language you left your backend last logout.
reply »
Nuke
14.06.2012 | 04:22The default language is the language that the page is in without selecting any other language. So, if i have English and Russian and Russian is the default language users would see the site in Russian unless they change it to English on their profile. Wordpress default language is English right now so i want to change that. Is it possible with your plugin? at least it would be nice if you can change the order of the languages in the dropdown selector so Russian appears first and this way users dont miss it and register in Russian even if they forget to select the language.
Thanks.
reply »
codestyling
20.06.2012 | 06:26There is no simple way to default to a language at login box language selector. If you allow the user the switcher at backend, than you can disable it at login. After login the user get’s the language he/she left the backend the last time. I think, this may solve it for now.
I have to think about, how the login can be bound to a default because the user is only known after login.
reply »
rawonam
21.06.2012 | 23:20Hi, thanks for the plugin, saved me lots of time.
I needed to download many (namely, all of them) of the localization files and I did it with your plugin, but for the BuddyPress I still need to do it manually
On the info page you write that you have not found the repository for BuddyPress language files, so here it is:
http://i18n.svn.buddypress.org/
I guess I will not wait until you implement the download for BuddyPress, but who knows, maybe you’ll surprise us
reply »