Da ieri sto cercando di installare il blog "easymoblog" http://www.easymoblog.org
sembra che ho eseguito alla lettera le istruzioni per poterlo installare direttamente dal loro sito ..ma mi ridà continuamente il seguente messaggio di errore .."Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request" ...non so cosa o dove sbaglio ..oppure che altro tipo di problema ci possa essre ..sono su server aruba ..se fra voi qualcuno può delucidarmi in merito lo ringrazio anticipatamente ...ciao
Quì di seguito inserisco la modalità di installazione suggerita dai produttori:
Installation
Follow these instructions to install and configure EasyMoblog 0.4.1
1. DOWNLOAD EASYMOBLOG
Download the current zip or tar.gz archive and extract the files:
$ tar -zxvf easymoblog-x.x.tar.gz
This will create a new directory easymoblog-x.x/ containing all files and directories. Move the contents of that directory into a directory within your web server's document root or your public HTML directory; i.e.:
$ mv easymoblog-x.x /var/www/html
when copying files, ensure you also copy the hidden .htaccess files.
2. FILE PERMISSIONS
You just have to make some folders world writable, in order to allow EasyMoblog to store your posts images and your configurations
$ chmod -R 777 /path/to/easymoblog/img/tmp
$ chmod -R 777 /path/to/easymoblog/img/easymoblog
$ chmod -R 777 /path/to/easymoblog/img/posts
$ chmod -R 777 /path/to/easymoblog/img/topics
$ chmod -R 777 /path/to/easymoblog/include
If you dont'have shell access, you can change permissions with your FTP client (look for the CHMOD command, and set permissions to the specified folders to 777)
If you have troubles, ask your system administrator!
3. CREATE THE DATABASE
You must create a new database for your EasyMoblog site:
$ mysqladmin -u user -p create easymoblog
where:
'user' is your mysql username
'easymoblog' is the name of the database you want to create
MySQL will prompt for the user database password and then create the initial database files. Next you must login and set the access database rights:
$ mysql -u dba_user -p
Again, you will be asked for the user database password. At the MySQL prompt, enter following command:
GRANT ALL PRIVILEGES ON easymoblog.*
TO user@host IDENTIFIED BY 'password';
where
'easymoblog' is the name of your database
'user@host' is the userid of your webserver MySQL account
'password' is the password required to log in as the MySQL user
Enter the following command to activate the new permissions:
flush privileges;
Please refer to MySql documentation for further details, or ask your system administrator.
4. INSTALLATION WIZARD
Just open your browser ang enter the following URL: http://<url_of_your_easymoblog_site>/
Follow instructions [Smile]
5. CRON JOB
In order to work properly, you have to schedule the script
easymoblog-x.x/batch/easymoblog_batch.php
You simply have to add a line to your crontab file. For example, if you want to schedule the batch every 10 minutes:
*/10 * * * * /path/to/php -q /path/to/easymoblog_batch.php
If you have problems with your cron configuration, ask your system administrator!
NEW!
If you cannot run cron jobs on your server, just activate the mod_batch module in EasyMoblog Admin Area! It will run the batch script without needing any other configuration.