Shows my limited knowledge of how php works. I'll have to do some more research on why you would populate a variable in this fashion (i.e., during an if). Thanx.
Thank you very much!Thank you very much!Thank you very much! Thank you very much!Thank you very much!Thank you very much!Thank you very much!
Please try copying this file into your /libs folder to replace existing /libs/Database_mysql.php file
Hi, I would like to thank in advance anyone willing to help me. I'm a complete ignorant in this field so any advice would be appreciated. I've been playing with a few tools (wordpress, kusaba, phpbb among others) in a local server installation but just stumble upon hotaru and I'm intrigued about it. I was trying to run a local instance of it but I have tried several local server programs, db and php but none seem to work. I've download the current version of hotaru 1.5.2 from Github and I can't login as administrator post-installation. This is the screencap I'm stuck in and might help: The server I'm using at the moment is the last version of Wnmp with MariaDB. Every seemed to work, although there was a "Ah! You've triggered a CSRF error." problem. As I changed the admin's info in the installation (password, email), opening the DB it seems those values weren't written accordingly. I apologize if this is not the correct thread for this kind of problem. I'm here because I was trying to download the hotaru version with plugins from the first post, but every time the forum kicks me out to the login screen. Any help would be appreciated. If there's a mirror of the hotaru-with-plugins file, please let me know (Just refreshing the login page triggered the download). Thanks for your attention and your hard work in this project. Hansel Edit: Disregard this post... It seems that the installation from Github is somewhat troublesome. After refreshing the download page from this forum, I achieve to download the with-plugins hotaru installation container. I've installed this one without any problems and I'm testing it right now. Seems really cool by the way... I didn't delete this post due it may help someone suffering the same problems. Cheers
widget.js missing semicolon Noticed Firebug displaying an error in my build related to an expected but missing semi-colon. It appears there should be one at the end of widget.js (or, at least, when I put one there, the error went away).
Potentially misplaced </ul> in users_navigation Looking at the following code in /plugins/users/templates/users_navigation.php (starting at line 130): Code: <div class="profile_navigation"> <ul> <li><a href='<?php echo $h->url(array('page'=>'profile', 'user'=>$h->vars['user']->name)) ?>'><?php echo $h->lang["users_profile"]; ?></a></li> <?php $h->pluginHook('profile_navigation'); ?> <?php // show account and profile links to owner or admin access users: if ($own) { ?> <li><a href='<?php echo $h->url(array('page'=>'account', 'user'=>$username)); ?>'><?php echo $h->lang["users_account"]; ?></a></li> <li><a href='<?php echo $h->url(array('page'=>'edit-profile', 'user'=>$username)); ?>'><?php echo $h->lang["users_profile_edit"]; ?></a></li> <li><a href='<?php echo $h->url(array('page'=>'user-settings', 'user'=>$username)); ?>'><?php echo $h->lang["users_settings"]; ?></a></li> </ul> <?php } ?> </div> Using HTML Tidy, I saw a warning for a missing </ul>, which traces back to line 142. It appears the closing tag doesn't always get put down. I'm wondering: shouldn't the closing </ul> be placed right after the <?php } ?> tag?
clas should be class in search_box In /plugins/search/templates/search_box.php, shouldn't clas be class in line 34? Code: <form name='search_form' [COLOR="#FF0000"]clas[/COLOR]='form' id='search_form' action='<?php echo BASEURL; ?>index.php?page=search' method='get'>