1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Download Hotaru Cms Core 1.7.3

Main Core code for Hotaru CMS

  1. shibuya246

    shibuya246 Hotaru Developer Staff Member Admin

  2. Sv9t

    Sv9t Active Member

    updated from 1.5.2 to 1.5.2RC2 without problems and errors.
     
    shibuya246 and Nick like this.
  3. angolanmade

    angolanmade Well-Known Member

    Thanks again for another great update. Installed just fine!
     
    shibuya246 likes this.
  4. shibuya246

    shibuya246 Hotaru Developer Staff Member Admin

    thanks
    couple of minor changes to Activity and Comments plugin which I have put out
    Trying to catch up on a few other items, but nothing major
     
  5. frytec

    frytec Member

    Hey guys, i saw some plugins update lately, and now the core update.
    Glad to see hotaru is not compleatly dead.

    im facing a problem with a hotaru site.
    i use lots os rss feeds to create tons of topics and my system is fully loaded, my posts table have 400mb with 300.000 records and growing.

    my page is heavy to load as you check here catalink.com.br

    sometimes my host complains about using excessive server resources.

    Can hotaru deal with that amount of data?

    Can any cms deal with that ammount of data? :)
     
  6. shibuya246

    shibuya246 Hotaru Developer Staff Member Admin

    The new version Hotaru CMS 1.5.2 has some performance enhancements, but v.1.4.2 can handle that amount of data.
    Probably with a bit of a cleanup your site will perform better

    A couple of points, you are loading a lot in the header including a lot of javascript. Javascript calls should really go in the footer
    You are loading jquery twice with different versions. This is not good
    You have jquery 1.3.2 and jquery 1.4.4 loading

    Your FacebookShare javascript is throwing errors

    Your page is actually throwing a 500 error which means it wont complete. This needs looking at also
     
  7. suresh

    suresh Moderator

    You mean that comment plugin got problems? I noticed in admin settings that comment manager shows errors at lin number 284 and 286 , can't remembered much, since I thought it was mistake from uploading files.
     
  8. shibuya246

    shibuya246 Hotaru Developer Staff Member Admin

    yes, i updated those plugins and put them out in forums
     
  9. suresh

    suresh Moderator

    Thanks, but wasted time more than 5 hours by importing table of comments several times.
    Still the problem is showing here
    Code:
    Notice: Undefined property: stdClass::$post_title in /hermes/bosoraweb130/b1063/public_html/libs/Comment.php on line 284
    
    Notice: Undefined property: stdClass::$user_username in /hermes/bosoraweb130/b1063/public_html/libs/Comment.php on line 286 
     
  10. shibuya246

    shibuya246 Hotaru Developer Staff Member Admin

    Try this file to be copied to your libs folder

    You didn't waste your time. If you were doing something, you invested your time.
    Don't be upset with time spent researching, practising and perfecting things. Success is not an instant achievement.
     

    Attached Files:

    suresh likes this.
  11. suresh

    suresh Moderator

    Yeah, that's true researching is good, but thought that was fault on my side, and had tested more than 5 times and kept quiet until i seen your post in this thread.
    The file is working, and I also try to work along with you in coming days, I am not getting what's happening and where to start or end just blindly loading files all those things and testing them for the release sake. :mad:
    There's easy to catch things and that error too, but did not used the brain or knowledge to see what it was.
     
    shibuya246 likes this.
  12. Sv9t

    Sv9t Active Member

    I started to edit the theme default and faced with the fact that the css theme default intersects theme admin. As a result, changes the theme default, as amended and theme admin. Now I have to rewrite many class in css theme default, to change it as I want. This is a disadvantage of this theme default.
     
  13. shibuya246

    shibuya246 Hotaru Developer Staff Member Admin

    The css required for admin does not come from the theme css file

    The admin theme has its own css file in /content/admin_themes/admin_default/css
    The default theme has its css file in /content/themes/default/css

    Making a new theme and changing css will not affect the admin pages
     
  14. Sv9t

    Sv9t Active Member

    yes, but the themes Defaults and Admin are at the top of the overall panel, with shared file css libs/frameworks/bootstrap/css/bootstrap.min.css changing it, so does the panel in theme Admin. I can take a picture of a screenshot to make it clearer.
    It turns out that changing the file .php in theme brings some inconvenience.
     
  15. shibuya246

    shibuya246 Hotaru Developer Staff Member Admin

    They both use bootstrap because that is the css framework we are using as a base for all plugins to tap into. The admin theme uses the full framework of bootstrap, but the user side of Hotaru CMS only uses a lite version of bootstrap which gives it access to the dropdown menus, buttons and some javascript. It does not use the full bootstrap css.

    The default theme itself uses the full bootstrap theme, but other themes do not. You can see the other themes in the download section of this forum

    You can override the bootstrap css by building your own css stylesheet which is what he default theme and all other themes do.

    Can you show me the code you have for your index.php file or show me a screenshot. That may help to explain things
     
  16. Sv9t

    Sv9t Active Member

    I did so, and rewrote all the styles in the CSS as I need to. The other themes I do not use, because is the version 1.5.2 of them have errors and many features do not work or do not work correctly. Perhaps these errors is just me.

    I think I understand what you mean, no need for screenshots.
     
  17. shibuya246

    shibuya246 Hotaru Developer Staff Member Admin

    Most of the other themes are written by people who may or may be active in these forums. They mostly work but may need some minor updating for v.1.5.2. I hope that the theme authors might update them or someone else might fork them and update, then release them as new.

    This forum is not a support center. We dont just answer questions one to one. It is a learning forum where everyone can share in the knowledge. If you have solve a problem then it would be nice if you shared it with others rather than just saying "dont worry, I solved it"

    Help us to help you to help others :)
     
    Nick and narc like this.
  18. Sv9t

    Sv9t Active Member

    I did not mean it. I do not mind sharing a turnkey solution of problems, but do not see a problem here :). shibuya246, I'm confused, you ask I put theme defaults, which is independent of the CSS file bootstrap.min.css? I mean, that is completely your own theme CSS file, right?:confused:

    or where there are themes in the corrected error, lay out (to attach to the forum) corrected files? I have not studied them.
     
  19. shibuya246

    shibuya246 Hotaru Developer Staff Member Admin

    In the default theme I have this in the top header.php file

    Code:
    <!-- Bootstrap -->
            <?php $h->getFramework(); ?>	
            
            <!-- Theme -->
            <?php $h->getThemeCss(); ?>
            
            <!-- include this CSS last so it gets priority -->
            <!-- Bootstrap Responsive - only include when required -->
            <?php $h->getFramework('bootstrap-responsive'); ?>
            
            <!-- Theme CSS from stlye.css in folder for theme -->
            <!-- Include merged files for all the plugin css and javascript (if any) -->
            <?php $h->doIncludes('css'); ?>			
    
    It sets the framework, then the css for the them. I also call bootstrap-responsive for a responsive layout (optional) and get all of the other plugins css files wrapped up as one minified css file

    The css for the theme itself is in the /contents/themes/default/css folder as style.css

    If you paste the code for your header.php file and/or index.php file we could start a discussion
     
  20. valMETNG

    valMETNG Administrator Staff Member Admin

    Permissions

    When I went to the permissions screen for a user via User Manager, I received the following red message: "Could not find profile_action_buttons function for messaging." It's actually about half the size of the normal red message.
     

Share This Page