WordPress în Română — lansare

Lansare WordPress România

Sunt fericit (puțin spus), să anunț lansarea oficială a proiectului de localizare WordPress în Română!

La momentul de față WordPress (trunk) este tradus 82% tradus, restul are nevoie de validare, și contribuitori. Pagina proiectului acum este întreținută de mine și Mădălin, îi invit și sincer sper să se alăture și băieții de la CNET.RO, care dețin o bună parte din meritul statutului actual a proiectului.

Planuri de viitor:

  • lansarea forumului oficial
  • terminarea localizării bbPress
  • localizarea BuddyPress

Spor, și într-un ceas bun!

N.B.: Mădălin și băieții de la CNET.RO, trimiteți-mi un mesaj cu prima ocazie. Mersi.

If NeDi fails to update

I’m using NeDi as a network monitoring solution (actually it is the only network discovery and monitoring solution I’m using when not talking about graphs generation). There might be situations when NeDi fails, like it happened for me:

DBD::mysql::st fetchrow_array failed: fetch() without execute() at /usr/local/www/nedi/inc/libmsq.pl line 244.
DBD::mysql::st fetchrow_array failed: fetch() without execute() at /usr/local/www/nedi/inc/libmsq.pl line 244.

After searching several forums and asking perl guys from the IRC, I found the solution.
The problem is not a bug in the code, the problem is that your database was corrupted.

To solve this issue, you should try repairing your database, which far easier than debugging perl scripts:

$ NEDIUSER=nedi; #Nedi database username
$ NEDIDB=nedi; #Nedi database password
$ NEDIPASS=nedipass; #Nedi database password
$ mysql -u $NEDIUSER --password=$NEDIPASS $NEDIDB -e 'repair table \
configs,devdel,devices,incidents,interfaces,links,messages, \
modules,monitoring,networks,nodes,nodiflog,nodiplog,stock, \
stolen,user,vlans,wlan'

Long live NeDi!

Launchpad.net, OpenID and delegation

To delegate your own domain as an OpenID, using Launchpad.Net as an OpenID provider, add the following code to your <head> tag on your webpage:

<link rel="openid2.provider openid.server" href="https://login.launchpad.net/+openid"/>
<link rel="openid2.local_id openid.delegate" href=""https://login.launchpad.net/+id/YOURLAUNCHPADID"/>

Where:
YOURLAUNCHPADID is a code, that can be found inside the launchpad web page source code. (Tip: use google’s cache to load your launchpad webpage, look through it’s source code, and search for openid.delegate)

Yes, as you can see, Launchpad supports both versions of OpenID (1.1 and 2.0).