Can somebody tell me why I get this error http://err.000webhost.com/ in my http://sex

Can somebody tell me why I get this error http://err.000webhost.com/ in my http://sexyono.uphero.com/index.php website?
Hi I used the http://proxy.org/ and nothing. Cannot register,nor open any link, just gtake me to http://err.000webhost.com/, do I need a .htaccess file?
Do I have this:

Installing Jisko 3.0beta2 - an open-source microblogging platform

Before using Jisko, you need to have a server with the following requisites:

–OPTIONAL–

Can not open any link in the page neither http://sexyono.uphero.com/register, just gives me http://err.000webhost.com/

your site is under review now, so i can´t have a look at it. My best guess as of now is that there is a missing .htaccess file that you are supposed to create when having clean_urls enabled during Jisko set up

I created a .htaccess file and added:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.*).htm$ $1.php [NC]

What else should I add to create clean_urls?

still having problem Can somebody tell me why I get this error http://err.000webhost.com/ in my http://sexyono.uphero.com/index.php website?
Hi I used the http://proxy.org/ and nothing. Cannot register,nor open any link, just gtake me to http://err.000webhost.com/, do I need a .htaccess file?

I can enter the home page of your website and it work fine. I get the error when I click on any of the links on your site. The error that appears is “500. Internal Server Error.” The information given in the error page indicates that you should contact the administrator. You should submit a ticket.

You should not have installed a beta version. The beta versions are for expert users and developers to find and resolve errors. It is better that you install the stable version 2.0.

Where did you get the lines to create the htaccess file? You must use your htaccess instructions that are recommended for Jisko.

Finally your problem seems to be that you have not defined either permanent links in the htaccess file. Try to make permanent links to the default in Jisko

No soy programador, me puedes explicar como:
Este es el .htaccess mio:

Jisko htaccess

Some mod_rewrite stuff

RewriteEngine On

#If you’re having trouble with the message “No input specified.”, uncomment the next line
#AddHandler application/x-httpd-php5 .php

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.+) index.php/$1 [L]

HotLinking (if you want!)

#RewriteCond %{HTTP_REFERER} !^$
#RewriteCond %{HTTP_REFERER} !yourdomain.com [NC]
#RewriteCond %{HTTP_REFERER} !images.google. [NC]
#RewriteRule .*.(jpg|gif|bmp|png)$ - [F]

Adding some security to files/dirs

IndexIgnore *
RewriteRule ^(.*/)?.svn/ - [F,L]
<Files ~ “.(conf)$”>
order allow,deny
deny from all
</Files>
<Files ~ “.(log)$”>
order allow,deny
deny from all
</Files>

Expirations

FileETag MTime Size

<ifmodule mod_expires.c>
<filesmatch “.(jpg|jpeg|gif|png|css|js)$”>
ExpiresActive on
ExpiresDefault “access plus 1 year”
</filesmatch>
</ifmodule>

I tried with the exact same .htaccess file and all i got was 500 internal server error as well. Been testing around a bit but to no avail. Now i´ll have a go at the stable 2.0 release

It is funny I have it installed here http://cogelogratis.com/boritweeter/ a upgrade account from you guys and it works great, some minor bugs, how come here is such a problem?

you need to add a line

rewritebase /

ok lets try

WOW thanks that did the trick, thanks chanh

now in URL Shortening getting this:
Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /home/a7287105/public_html/includes/themes.php on line 273

Free Web Hosting

PHP Error Message

Warning: Invalid argument supplied for foreach() in /home/a7287105/public_html/includes/themes.php on line 277
:frowning:

Is this with the stable version or BETA?

BETA 3.0 Beta2 http://cogelogratis.com/boritweeter, it is targeted for Puerto Rico

BETA versions are usually un-complete and contain bugs. Try using a stable version.

which is better Jisko or share.net?

http://boritweeter.com/Jisko20/ loaded here the stable version 2.0 added to .htaccess rewritebase / and all links gives me http://err.000webhost.com/, Help

Instead of RewriteBase / please try

RewriteBase /Jisko20/

Man Your Good!!! Thanks

Now I can not find the admin page, launched the update.php file and get the url http://64.191.112.85/Jisko20/update.php, why the IP number

This is the update code:

<?php
# Jisko: An open-source microblogging application
# Copyright (C) 2010 Rub&#381;n D&#8217;az <outime@gmail.com>
# 
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
# 
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

define('PATH', dirname(__FILE__) . '/');
require(PATH.'config.php');
require(PATH.'includes/db.php');

//connect to the database.
$db = new DB(DB_HOST, DB_PORT, DB_USER, DB_PASSWORD);

if (!$db) die('MySQL error! Check your config.php');
else {
	
	$db->select(DB_NAME);
	
	$querysett = $db->send("SELECT `value` FROM `settings` WHERE `category`='db_version'");
	if (!mysql_num_rows($querysett)) {
	//Let's check if the database has the column 'shorter_service'
	$query = mysql_list_fields(DB_NAME, 'users');
	$array = array();
	
	for ($i = 0; $i < mysql_num_fields($query); $i++) $array[] = mysql_field_name($query, $i);
		if (!array_search('shorter_service', $array)) {
			if (!$db->send('ALTER TABLE  `users` ADD  `shorter_service` VARCHAR( 255 ) NOT NULL DEFAULT \'a:3:{s:7:"service";s:7:"default";s:4:"data";s:0:"";s:7:"preview";b:0;}\';')) {
				die('There was an error while trying to update the database. Please contact Jisko at http://answers.launchpad.net/jisko. Error: `shorter_service`');
			}
		}
		$query = $db->send("CREATE TABLE IF NOT EXISTS `tags_c` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL,
  `timestamp` int(11) NOT NULL,
  `founder` varchar(255) NOT NULL,
  KEY `id` (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 ;");
	
		$query = $db->send("CREATE TABLE IF NOT EXISTS `tags_n` (
  `id` int(11) NOT NULL auto_increment,
  `note_id` int(11) NOT NULL,
  `tag` varchar(255) NOT NULL,
  `timestamp` int(11) NOT NULL,
  `poster` int(11) NOT NULL,
  KEY `id` (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 ;");
	
		$query = $db->send("CREATE TABLE IF NOT EXISTS `settings` (
  `id` int(11) NOT NULL auto_increment,
  `category` varchar(255) NOT NULL,
  `value` varchar(255) NOT NULL,
  KEY `id` (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; ");

$db->send("INSERT INTO `settings` VALUES (1, 'db_version', '0');");
	}
	else {
		$db_version = mysql_result($querysett, 0);
		if ($db_version == 0) {
			if (!$db->send('ALTER TABLE  `users` ADD  `post_tweets` SMALLINT( 1 ) NULL AFTER  `twitter_password`')) {
				die('There was an error while trying to update the database. Please contact Jisko at http://answers.launchpad.net/jisko. Error: `post_tweets`');
			}
			$db->send('UPDATE `settings` SET `value`=\'1\' WHERE `category`=\'db_version\'');
		}
		if ($db_version <= 1) {
			if (!$db->send("ALTER TABLE `settings` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci")) {
				die('There was an error while trying to update the database. Please contact Jisko at http://answers.launchpad.net/jisko. Error: `alter_characterset`');
			}
			if (!$db->send("ALTER TABLE `tags_c` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci")) {
				die('There was an error while trying to update the database. Please contact Jisko at http://answers.launchpad.net/jisko. Error: `alter_characterset`');
			}
			if (!$db->send("ALTER TABLE `tags_n` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci")) {
				die('There was an error while trying to update the database. Please contact Jisko at http://answers.launchpad.net/jisko. Error: `alter_characterset`');
			}
			if (!$db->send("ALTER TABLE  `tags_c` CHANGE  `founder`  `founder` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL")) {
				die('There was an error while trying to update the database. Please contact Jisko at http://answers.launchpad.net/jisko. Error: `alter_characterset`');
			}
			if (!$db->send("ALTER TABLE  `tags_c` CHANGE  `name`  `name` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL")) {
				die('There was an error while trying to update the database. Please contact Jisko at http://answers.launchpad.net/jisko. Error: `alter_characterset`');
			}
			if (!$db->send("ALTER TABLE  `tags_n` CHANGE  `tag`  `tag` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL")) {
				die('There was an error while trying to update the database. Please contact Jisko at http://answers.launchpad.net/jisko. Error: `alter_characterset`');
			}
			if (!$db->send("ALTER TABLE  `settings` CHANGE  `category`  `category` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL")) {
				die('There was an error while trying to update the database. Please contact Jisko at http://answers.launchpad.net/jisko. Error: `alter_characterset`');
			}
			if (!$db->send("ALTER TABLE  `settings` CHANGE  `value`  `value` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL")) {
				die('There was an error while trying to update the database. Please contact Jisko at http://answers.launchpad.net/jisko. Error: `alter_characterset`');
			}
			
			$db->send('UPDATE `settings` SET `value`=\'2\' WHERE `category`=\'db_version\'');
		}
		
	}
	
	if (!unlink(PATH.'update.php'))	die('OK: If there were no errors, please erase this file and then you can run Jisko');
	else header('Location: index.php');
}
?>