How to Install/Run A Wordpress Blog on a Palm Pre!

by admin on Friday, August 21st, 2009

(Download This YouTube Video using FREE FLVDirect software)

palmpre-wordpressblog

lighttpd-palmpre

(screenshot of SSH Top command showing processes running on my Palm Pre)

Since the Palm Pre is based on Linux, I figured that you could probably run a Wordpress blog on the Palm Pre.   Well, after about 3 hours of research, I found a way to run a wordpress blog using Optware Lighttpd and MySQL server.  (Lighttpd is a “light” version of Apache pretty much and would be perfect candiate for the Palm Pre since its hardware isn’t made for full-fledged websites rather for a smartphone.)

I think this might be a great way to host your personal websites that your family and friends visit without having to pay for hosting fees.  (Well, just be careful Sprint doesn’t find out…)

Anyways, I am amazed that you can actually run a Wordpress blog on the Palm Pre, here’s detailed step-by-step instructions so you can do it too.

You will have to first learn how to SSH into your Palm Pre, after doing that follow the rest of the directions outlined here.

P.S. If you have never dealt with Linux, just be patient and feel free to ask me questions on the comments line as I will do my best to help you setup a Wordpress blog on your Palm Pre.

1) First, we will need to mount the filesystem to be writable.  Go SSH into your Palm Pre to the linux command prompt and type the following.  (Please press enter after any of these code lines of course…)

sudo mount -o remount,rw /

2) Next, let’s install optware MySQL package by typing the command below:

sudo ipkg-opt install mysql

You will get the following messages if installation is successful.

To start mysqld at boot time you have to copy support-files/mysql.server
to the right place for your system

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:

/opt/bin/mysqladmin -u root password 'new-password'
/opt/bin/mysqladmin -u root -h castle password 'new-password'
See the manual for more instructions.

You can start the MySQL daemon with:
cd /opt ; /opt/bin/mysqld_safe &

You can test the MySQL daemon with the benchmarks in the 'sql-bench' directory:
cd sql-bench ; perl run-all-tests

Please report any problems with the /opt/bin/mysqlbug script!

The latest information about MySQL is available on the web at

http://www.mysql.com

Support MySQL by buying support/licenses at http://shop.mysql.com
Starting MySQL SUCCESS!
Successfully terminated.

3) Let’s reset our MySQL root password by typing the following command where new-password should be your new password.  (Please make a note of your MySQL root password as we will need it later for Wordpress configuration file.)

/opt/bin/mysqladmin -u root password 'new-password'

4) Next, let’s create a new database for the MySQL server so we can use it for the Wordpress blog.

/opt/bin/mysql -u root

mysql> create database test;

mysql> quit;

5) Next, we will install Lighttpd, which is the light version of Apache.

sudo ipkg-opt install lighttpd php-fcgi

Your web root will be in the following directory:

/opt/share/www/

6) Next, we will edit the Lighttpd port to 9999 to not interfere with other httpd processes on the Palm Pre:

sudo vi /opt/etc/lighttpd/lighttpd.conf

Change the server.port form 8081 to 9999 like here:
(You will need to type “i” to start typing…refer to complete VI command instructions here or you can use your favorite linux editor too.)

## bind to port (default: 80)
server.port                = 9999

Press the Esc key on your keyboard and “:wq!” to save file and exit back to command prompt.

7) Next, we will setup a start-up event so our lighttpd and mysqld server runs at boot time and when your phone is on:

sudo vi /etc/event.d/optware-lighttpd

Copy and paste the following: (hit “i” and Shift+Ins in the editor)

# don't start until the WebOS finishes it's normal boot
# that way no delay is added to the GUI startup
start on stopped finish
stop on runlevel [!2]

# Restart the lighttpd daemon if it exits/dies
respawn

exec /opt/sbin/lighttpd -f /opt/etc/lighttpd/lighttpd.conf

pre-start script
/usr/sbin/iptables -D INPUT -p tcp --dport 9999 -j ACCEPT || /bin/true
/usr/sbin/iptables -I INPUT -p tcp --dport 9999 -j ACCEPT
/opt/bin/mysqld_safe &
end script

Press Esc key and “:wq!” to save file and exit VI editor.

8) Now we will need to install the blog. Since this is a test, we will install it in a subdirectory called /blog.

Browse to the web root by typing the cd command below:

cd /opt/share/www/

9) Next, let’s make a new directory called blog:

sudo mkdir blog

10) Enter the blog directory:

cd blog

11) Let’s download the latest version of Wordpress:

sudo wget http://wordpress.org/latest.zip

12) Unzip the Wordpress zip file:

sudo unzip latest.zip

13) Copy the files in wordpress directory to the blog directory like this:

sudo cp wordpress/* . -rf

14) Open up your dynamic domain name on your browser like this:

http://MyDynamicDNS.blogdns.com:9999/blog/

15) If you get a screen like below, you are ready to rock, let’s go back to the Linux command prompt and edit the Wordpress configuration files so we can setup the new Wordpress Blog.

palmpre-wordpress-0

16) We will first move the wp-config-sample.php file to wp-config.php.

sudo mv wp-config-sample.php wp-config.php

17) And let’s edit the Wordpress config file:

sudo vi wp-config.php

18) Change the following lines to your database name and root password:

define('DB_NAME', 'test');
define('DB_USER', 'root');
define('DB_PASSWORD', 'mypassword');

19) Since we are using Lighttpd, we need to tell PHP where the www root is, so let’s edit the php.ini file like this:
(This is to enable the MySQL server to work with Lighttpd!  If you don’t do this step you will get a DATABASE ERROR message because PHP cannot find your web root.)

sudo vi /opt/etc/php.ini

20) Find the following line and add /opt/share/www to doc_root parameter:

doc_root ="/opt/share/www/"

21) Hit Escape key and “:wq!” to save and exit.

22) Next reboot your Palm Pre so the changes take effect:

sudo /sbin/reboot

23) Open up your dynamic domain name on your browser again (on your computer of course!):

http://MyDynamicDNS.blogdns.com:9999/blog/

You should now see something like this:

palmpre-wordpress-1

24) Fill out Blot Title, E-mail, and “Install WordPress”!

palmpre-wordpress-2

25) Log In using the admin username and password provided.

palmpre-wordpress-3

26) Open up your dynamic domain name on your browser again…

http://MyDynamicDNS.blogdns.com:9999/blog/

27) You should see a new Wordpress blog, completely hosted on your Palm Pre.  Congratulations, you did it bud.

palmpre-wordpress-4

Final Words

Based on my testing, it seems that the Wordpress blog could easily handle light traffic (up to 3 concurrent users) and I am sure that could be a lot better by installing Wordpress Super Cache, which I will have some test reports later this week.  Also, when you run Lighttpd, you will need to refer to this guide on how to do human-friendly permalinks and to work with Super Cache.  There’s also ways to optimize the Lighttpd and MySQL server, which could further enhance the Palm Pre Wordpress blog.

You can also install Apache on the Palm Pre but I don’t recommend it as your Palm Pre blog will run much slower than on Lighttpd.

Well, I am sure you can also install many other types of websites running on the LAMP stack now, it doesn’t have to be a Wordpress blog but I’ve laid down the foundation for you so you can save time while developing your next mobile Palm Pre website.

I wish I could publicly show you my Wordpress blog running on my Palm Pre but Sprint will surely pinpoint me and cancel my contract so I will leave it up to you guys to try it out yourselves. :)   And don’t make your Palm Pre blog public either, I won’t be responsible if you lose your contract because of it.

*Note -  This guide works well and I am no linux expert myself.  I just happened to know a little bit about linux systems as I manage web servers on a daily basis.  Please follow the instructions carefully and I am sure you can do it too and learn a bunch of great stuff about linux.  If you ever have trouble or want to know more about certain commands, just google it! :)

FAQ

Q: I cannot edit files, I get a “readonly” error!

A: Whenever you reboot the Palm Pre, you will need to make the filesystem writable again, just use this code before trying to edit files:

sudo mount -o remount,rw /

Also, you might want to make sure to add “sudo” before any code.  This is so you have root permissions to execute files.  Sometimes I forget this and I get errors.

Q: How do I disable the web server from running?

A: To disable, use the following command and reboot your phone:

sudo chmod 000 /etc/event.d/optware-lighttpd

To enable, use the following command and reboot your phone:

sudo chmod 700 /etc/event.d/optware-lighttpd

Q: How do I reboot my phone via command line?
A: This code right here:

sudo /sbin/reboot

Reference: Commands for Restarting, Stopping Lighttpd or Mysqld

Restart lighttpd!

sudo /opt/etc/init.d/S80lighttpd restart

Start mysqld:

sudo /opt/bin/mysqld_safe &

sudo /opt/bin/mysqld_safe &

Resources

I’ve used many resources to install Wordpress blog on my Palm Pre.  I’ve hacked existing code to make this work but I have to give credit to these guides that have helped me get through problems.  (Thanks Open Source!!!)

Free Nexus One phones



Enter your zip code here and find out if you can qualify for 2 free Nexus One phones.

Rate

1 Star2 Stars3 Stars4 Stars5 Stars (5 votes, average: 5.00 out of 5)
Loading ... Loading ...

Related News and Resources



80 Responses to “How to Install/Run A Wordpress Blog on a Palm Pre!”

  1. How to Install/Run A Wordpress Blog on a Palm Pre! | Palm Pre … | wpden Says:

    [...] the strange post here: How to Install/Run A Wordpress Blog upon the Palm Pre! | Palm Pre … Related Posts:Download 960px wordpress themes | Island Two Palm Trees Free …Internet Marketing [...]

  2. How to Set Up Google GPS Tracking on your Palm Pre! | Palm Pre Hacks Blog! Says:

    [...] Home About RSS Follow @PalmPreHacks on Twitter « How to Install/Run A Wordpress Blog on a Palm Pre! [...]

  3. How to Install/Run A Wordpress Blog on a Palm Pre! | Palm Pre … | Crazy for the Palm Pre Says:

    [...] Follow this link: How to Install/Run A Wordpress Blog on a Palm Pre! | Palm Pre … [...]

  4. Palm Pre GPS Tweets - Hack a Day Says:

    [...] that you have Linux installed on your Pre, but that’s not that big of an issue as he has a tutorial for that too. Getting the tweet to happen involves setting up a custom PHP file that sends the tweet, then a [...]

  5. spensera Says:

    I cant change my password for sql…..please email me

    [Reply]

  6. zedomax Says:

    Did you do this? /opt/bin/mysqladmin -u root password 'new-password' where new-password is your new password? What error message do you get?

    [Reply]

  7. s00pcan Says:

    Thanks a lot for writing this! But I installed it and it made my pre too slow to use (and over a 5 minute startup time!) Any ideas on fixing that?

    [Reply]

  8. spensera Says:

    I get Access Denied for root user (using password = NO)

    [Reply]

  9. zedomax Says:

    Hmm… that is weird, mine runs fine, do you have any other apps installed?

    [Reply]

  10. zedomax Says:

    You mean for MySQL? try adding “sudo” before the command, I might have forgotten that part for some reason.

    [Reply]

  11. spensera Says:

    yep for MySQL, also I am logged in as root. This is my error.

    sudo /opt/bin/mysqladmin -u root password 'new-password'
    /opt/bin/mysqladmin: connect to server at 'localhost' failed
    error: 'Access denied for user 'root'@'localhost' (using password: NO)'

    [Reply]

  12. zedomax Says:

    Looks as if your mysqld process is not running, did u do the command:

    /opt/bin/mysqld_safe &

    Sorry, I might have changed the order on the DIY…ooops, will have to update that if that's the case…

    [Reply]

  13. willsurg Says:

    hey how did you fix your problem because I have the same error and cant get past it.

    thanks in advance

    [Reply]

  14. josh Says:

    Ditto:
    josh@castle:~$ sudo /opt/bin/mysqld_safe &
    josh@castle:~$ A mysqld process already exists

    [1] + Done(1) sudo /opt/bin/mysqld_safe
    josh@castle:~$ sudo /opt/bin/mysqladmin -u root password apassword
    /opt/bin/mysqladmin: connect to server at 'localhost' failed
    error: 'Access denied for user 'root'@'localhost' (using password: NO)'

    [Reply]

  15. josh Says:

    I found a fix. Originally I had set a password, but got this error:

    root@castle:/opt# /opt/bin/mysql -u root
    ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

    Then I used the following command – pure guess-work!

    root@castle:/opt# /opt/bin/mysql -u root -p

    and got:

    Enter password:
    Welcome to the MySQL monitor. Commands end with ; or g.
    Your MySQL connection id is 5 to server version: 4.1.22

    Type 'help;' or 'h' for help. Type 'c' to clear the buffer.

    I used the password I originally set up.

    [Reply]

  16. zedomax Says:

    Try without the /opt/bin/mysqladmin added:

    sudo /opt/bin/mysqladmin -u root password apassword

    [Reply]

  17. zedomax Says:

    Awesome, you got it working!

    [Reply]

  18. davemex Says:

    Yea this is an awesome tutorial but by the time I got it all up and running I couldn't even bring up the launcher on the phone without it grinding to a near halt. The moment I removed the web server it sped back up completely :-( This is disapointing, I was looking forward to starting the “Dave's Pocket” blog.

    [Reply]

  19. zedomax Says:

    Actually I did find that the mysql and lighttpd puts a LOT of load on the Palm Pre, only when it starts up but doesn't affect performance of the Pre thereafter. If you don't mind slow starts, it's still possible. I don't really turn my Pre much, maybe once a week so it doesn't bother me.

    [Reply]

  20. Otto Says:

    Does PHP come already installed on the thing, or is it part of Lighttpd? Because I didn't see you explicitly install that anywhere.

    From the shots, obviously you're running php with FastCGI, just wondering how it got installed/configured.

    Also, while lighttpd is far faster at static file serving, Apache+mod_php has been shown to be still somewhat quicker than lighttpd + php-fcgi. You might get slightly better results that way, although I can't say how well the pre will work with Apache's multi-threading model. If the Pre can't do threading well, then lighttpd is pretty much the only choice.

    [Reply]

  21. WP on Palm Pre — Matt Mullenweg Says:

    [...] How to Install/Run A Wordpress Blog on a Palm Pre. Sweet. ¶ « Automattic Aquires AtD [...]

  22. TheSpotter Says:

    This is great example of WordPress portability! Thanks for sharing

    [Reply]

  23. zedomax Says:

    PHP does come with Lighttpd which comes with PHP-FCGI installed. (the latest version.) Lighttpd I have seen does perform much better than Apache, even this blog runs Lighttpd. I also do recommend Nginx, which is run on Wordpress.com and big sites like TechCrunch. Well, just my 2 cents.

    I would never run Apache on anything anyways, Apache is the worst performer based on my testing:

    http://webserverhacks.com/uncategorized/wordpre...

    There's many many aftermarket web servers out there. For those of you who know how to use linux, there's absolutely no reason to use Apache other than ease of use. Cherokee is also a great choice although I haven't tested it yet.

    [Reply]

  24. zedomax Says:

    Sure! Thanks for visitin', Wordpress should be portable to anything that runs linux.

    [Reply]

  25. roj Says:

    why?

    [Reply]

  26. zedomax Says:

    The real question is, “why not?” haha.

    [Reply]

  27. Instalando e Rodando um Wordpress no Palm Pre | Gostei Says:

    [...] Link: How to Install/Run A Wordpress Blog on a Palm Pre! | Palm Pre Hacks Blog!. [...]

  28. linmob's status on Thursday, 10-Sep-09 20:57:19 UTC - Identi.ca Says:

    [...] http://palmpre-hacks.com/palm-pre-hacks/how-to-installrun-a-wordpress-blog-on-a-palm-pre/ a few seconds ago from web [...]

  29. Turo! Says:

    :O wwwwwwuuuuuuuuuuuuuuaaaaaaawwwwwwwwwwwwwww
    Wordpress and a Palm Pre :D that's an amazing combination

    [Reply]

  30. Børge (forteller) 's status on Friday, 11-Sep-09 08:07:02 UTC - Identi.ca Says:

    [...] http://palmpre-hacks.com/palm-pre-hacks/how-to-installrun-a-wordpress-blog-on-a-palm-pre/ a few seconds ago from Gwibber [...]

  31. min luktar oxo fisk! » Wordpress på din Palm Pre, någon? Says:

    [...] Kolla här för instruktioner på hur du kan installera och köra Wordpress på din telefon! Palm Pre kör Linux, så det bör inte vara alltför svårt. Och kanske, med lite tur och tålamod, lär jag mig bemästra GIMP så småningom. Palm Pre, Wordpress, prylar, GIMP [...]

  32. Running Wordpress on a Palm Pre : Cellphone9 - Mobile Phones – Wireless Life – Cellular Phones Says:

    [...] a detailed explanation on how to run your Wordpress blog on a Palm Pre. Palm is Linux based so it should be fairly easy for someone to get the hang of this given some [...]

  33. Wordpress and the Pre sitting in a tree | Mobile Tech Says:

    [...] my favorite blogging platform.  Palm Pre, a nice mobile device.  Matt found this post on how to install a LAMP stack on a Palm Pre and serve a Wordpress blog from the mobile [...]

  34. Running a WordPress Blog from Your Palm Pre. Brilliant! || Technology Nerd Says:

    [...] at Palmpre-Hacks have figured out a way to install and run a WordPress blog of a Palm Pre phone by installing the [...]

  35. ETARD Says:

    This looks cool and all but Y would you want to run WP off a palm-pre?
    What is the point of that?
    From my point of view that just seems like a wast of time & you got way to much free time on your hands dude.

    [Reply]

  36. High tech » Running Wordpress on a Palm Pre Says:

    [...] a detailed explanation on how to run your Wordpress blog on a Palm Pre. Palm is Linux based so it should be fairly easy for someone to get the hang of this given some [...]

  37. zedomax Says:

    In the future, maybe blogs can run off super small devices like a Palm Pre and you could take your web servers with you. For example, I don't host my websites at my house because I can't oversee them if I am on vacation. If you could take your web servers with you, I could host my websites myself. Well, this is just the beginning. Yes, I do have a lot of free time on my hands as my primary job is to blog all day long, this is my job, it's better than flipping burgers for sure. No pun intended, just trying to be helpful!

    [Reply]

  38. Read about gadgets » Blog Archive » Running Wordpress on a Palm Pre Says:

    [...] a detailed explanation on how to run your Wordpress blog on a Palm Pre. Palm is Linux based so it should be fairly easy for someone to get the hang of this given some [...]

  39. David Mach » Jak zprovoznit WordPress na Palm Pre Says:

    [...] kterým chci tenhle malý drahokam také vlastnit. Brácha mi poslal odkaz na blogpost o tom, jak nainstalovat a provozovat WordPress v telefonu Palm Pre. Že to je možné se dalo tušit díky tomu, na čem webOS funguje, ale stejně jsem zůstal [...]

  40. hamyhay Says:

    after step 23 whem i try to open my blog i got the following message

    Your PHP installation appears to be missing the MySQL extension which is required by WordPress.

    [Reply]

  41. Samyak Says:

    Nice content, thanks for uploading.

    I was also trying to install Wordpress on my server, got the easiest way from eZdia's knowledge bucket, have a look http://www.ezdia.com/Installing_WordPress_on_yo...

    [Reply]

  42. Instalando e Rodando um Wordpress no Palm Pre | Bruno Alves Says:

    [...] How to Install/Run A Wordpress Blog on a Palm Pre! | Palm Pre Hacks Blog!. AKPC_IDS += "769,";Popularity: unrankedArtigos RelacionadosNova versão do SkyfireFotos noturnas: [...]

  43. Brian Hendrickson (brianjesse) 's status on Saturday, 26-Sep-09 06:12:38 UTC - Identi.ca Says:

    [...] http://palmpre-hacks.com/palm-pre-hacks/how-to-installrun-a-wordpress-blog-on-a-palm-pre/ a few seconds ago from Twitter Tools [...]

  44. ferchope Says:

    same here

    [Reply]

  45. ferchope Says:

    i was wrong the server is running i got:
    root@castle:~$ /opt/bin/mysqladmin -u root -p version
    Enter password:
    /opt/bin/mysqladmin Ver 8.41 Distrib 4.1.22, for none-linux-gnueabi on arm
    Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
    This software comes with ABSOLUTELY NO WARRANTY. This is free software,
    and you are welcome to modify and redistribute it under the GPL license

    Server version 4.1.22
    Protocol version 10
    Connection Localhost via UNIX socket
    UNIX socket /tmp/mysql.sock
    Uptime: 52 min 40 sec

    Threads: 1 Questions: 11 Slow queries: 0 Opens: 11 Flush tables: 1 Open tables: 2 Queries per second avg: 0.003
    now i dont know why i have this:
    Your PHP installation appears to be missing the MySQL extension which is required by WordPres

    [Reply]

  46. Nathan Says:

    I can't seem to get past bringing up the new blog on the browser for the first time like in step 14 it keeps telling me server time out

    [Reply]

  47. Nathan Says:

    I also am not able to ping anything accept my main domain… I am totally new at this and have worked through this perfectly till this point. I even worked through the password issue mentioned… Please help I want to make this work so I can do the gps web tracking… Thanks

    [Reply]

  48. ferchope Says:

    anybody know how to solve this when i try to install wordpress
    “Your PHP installation appears to be missing the MySQL extension which is required by WordPres”
    php.ini needs to be set up properly.something is missing here

    [Reply]

  49. ferchope Says:

    now its working i just installed the php-mysql package to have the missing extension.

    [Reply]

  50. Austin Says:

    I have exactly the same situation. Have you found a way to fix it?

    [Reply]

  51. Austin Says:

    Thanks! I just noticed this post and tried it out. It works now! Outstanding.

    [Reply]

  52. zedomax Says:

    Make sure Lighttpd is running, if not, you will get that error.

    [Reply]

  53. preneeds Says:

    Hey on step six, it says to change the server.port to 9999, but there is no server.port in the script. All i get is server.module….what do i do?

    [Reply]

  54. ferchope Says:

    one easy way to check if lighttpd is running is to type in your browser: http://MyDynamicDNS.blogdns.com:9999/.

    [Reply]

  55. ferchope Says:

    do step 5 again

    [Reply]

  56. neilfleming Says:

    At step 23, I get this error message:
    “Your PHP installation appears to be missing the MySQL extension which is required by WordPress.”

    What did I miss?

    Thanks…Neil

    [Reply]

  57. zedomax Says:

    Great for the port 9999 error, it's because you are trying to run lighttpd while its running already, try killing the process first with killall lighttpd command.

    [Reply]

  58. ferchope Says:

    just type “sudo ipkg-opt install php-mysql” and reboot the phone

    [Reply]

  59. neilfleming Says:

    Thanks, guys. php-mysql fixed the issue, and the phone speed has picked back up to normal.

    …Neil

    [Reply]

  60. Name Says:

    I can't tell you how wonderful your instructions are. I have read all of them, from “how to hack pre into wifi rounter,” to “how to ssh into pre,” and “how to setup gps tracking on pre.” All of them are clearly written with detail step by step instruction. I'm awaiting for your next project. Keep up the good work!

    [Reply]

  61. spdqbr Says:

    Thanks a million for all of the wonderful guides. They are very well done and I appreciate all of the work that has gone into them. Here is a tip for anyone who has had the same problem I ran into on step 5 where the command:
    sudo ipkg-opt install lighttpd php-fcgi
    returns the error:
    Failed to download lighttpd. Perhaps you need to run 'ipkg update'?

    1. Download the file http://ipkg.nslu2-linux.org/feeds/optware/cs08q...
    2. copy it to your pre's /tmp directory using SCP or cygwin
    3. ssh into the pre and run the commands:
    sudo ipkg-opt install php-fcgi
    cd /tmp
    sudo ipkg-opt install lighttpd_1.4.25-1_arm.ipk
    rm /tmp/lighttpd_1.4.25-1_arm.ipk

    This should get you ready for the next stages of step 5

    Keep the tips coming!

    [Reply]

  62. databasejobs12 Says:

    Interesting thoughts well expressed.
    For more jobs visit http://www.staffingpower.com

    [Reply]

  63. login from palm pre to wordpress site - PreCentral Forums Says:

    [...] see this place How to Install/Run A Wordpress Blog on a Palm Pre! | Palm Pre Hacks Blog! [...]

  64. Palm pre batteries Says:

    Thanks for this very good technical information. I really appreciate this article. Many people will find it very useful.

    [Reply]

  65. เกมส์ทําอาหาร Says:

    Awesome, you got it working!

    Thank you for article this!

    [Reply]

  66. How to remove MySQL from Palm Pre - PreCentral Forums Says:

    [...] just install it via this article… How to Install/Run A Wordpress Blog on a Palm Pre! | Palm Pre Hacks Blog! i didn't need [...]

  67. hywhetLydrard Says:

    Weenueglomo, http://www.webjam.com/breastactives, sadogreed, breast actives, IDORRIPSY

    [Reply]

  68. EldeplemeWard Says:

    А как установить себе аватар без регистрации? А для сайта на друпале так сделать можно?

    [Reply]

  69. ovekly Says:

    Not sure if it really is me because of I still had never time to upgrading so i’m still utilising Opera 9 but My spouse and i noticed some type of strange code all over the web page . It says this together with lots of different different words right after it, such as Error: Impossible modify head tag … and the like. Its a bit unusual since for me my own internet site car-hire-alicante-airport and also the widely used sort as for example google.com and yahoo.com cause me never issues.

    [Reply]

  70. Lopes Streamyx Says:

    Many thanks for the good information. I was pondering in case you could possibly point me in direction of some more recourses?.

    [Reply]

  71. game Says:

    Thanks for this very good technical information.

    [Reply]

  72. mikethopson Says:

    Do not use RegCure until you read this!

    [Reply]

  73. benches clearing hockey fight Says:

    Foster & Smith Litter Box Benches Super Mega with Silhouette for Cats in Cocoa CarpetLitter Box Benches Super Mega w/Silhouette by Foster & Smith. The bench that conceals your litter pan just got even better. Fits all our automatic litter boxes. Available in Color: Cocoa Carpet. Available in Door Type: Left..

    [Reply]

  74. เกมส์ Says:

    Thanks for this very good technical information.

    [Reply]

  75. agel Says:

    Awesome, you got it working!

    Thank you for article this!

    [Reply]

  76. เกม Says:

    Thanks for this very good technical information.

    [Reply]

  77. Hugo Says:

    Has anyone noticed that the 8th step forms an emoticon. On a different tutorial it says to follow this one from step 5-8 and I could not find the 8th step because of the ) the 8) makes a smiley. Just wondering if anyone has noticed this.

    [Reply]

  78. Lighty Web Server - lighttpd on your Pre - Page 5 - PreCentral Forums Says:

    [...] install. Try reinstalling. If the preware version does not work try the CLI way. I always preffered this tutorial. Just follow steps 1 then [...]

  79. Lighty Web Server - lighttpd on your Pre - Page 5 - PreCentral Forums Says:

    [...] not work try reinstalling. If the preware version does not work try the CLI way. I always preffered this tutorial. Just follow steps 1 then [...]

  80. Shanaya Says:

    Well expressed. Very informative article. Thanks for the tutorial. I learned a lot from you. Keep it up!

    [Reply]

Leave a Reply

Featured Sites from Our Network