Hello, please don't mind me barging in, I'm new here.
I have the same issue as mcathereal. When I try to install Joomfish 1.8 I end up with a blank screen. At that time the website also goes blank. In the backend all Joomfish menuitems (Components -> Joom!Fish -> ...) also show blank screens.
The php error log does not seem to log any errors nor does MySQL.
The server runs windows 2000 server with IIS5.0, PHP5 and MySQL5.
I've been looking into it myself and when I look at the file install.joomfish.php it seems to go wrong in the next part
- Code: Select all
$database->setQuery( "ALTER TABLE `#__jf_content` ADD INDEX `jfReferenceTable` ( `reference_table` ) ;");
$database->query();
// Information text
require_once( $adminDir . "/joomfish.class.php");
$joomFishManager = new JoomFishManager( dirname( __FILE__ ) );
require_once( JOOMFISH_ADMINPATH . '/admin.joomfish.html.php' );
if( file_exists( JOOMFISH_ADMINPATH . '/help/joomfish.help.inc_' . $mosConfig_lang . '.php' ) ){
require_once( JOOMFISH_ADMINPATH . '/help/joomfish.help.inc_' . $mosConfig_lang . '.php' );
} else {
require_once( JOOMFISH_ADMINPATH .'/help/joomfish.help.inc.php' );
}
HTML_joomfish_help::showPostInstall();
return;
The index gets created correctly and from there on something seems to go wrong.
Maybe this helps in resolving mcathereal's and my problem.
PS: Joomfish 1.7 seems to install fine.