@shibuya246, do you want to start a new thread for enhancement requests/feedback/potential bugs/etc. on 1.7, or do you want to do that here? As I was doing a quick scan of just the core files (117 alone that are significantly different from my core files - yes, I've been a very bad boy changing core), I noticed in PageHandling.php (e.g., line 87) that you're specifically referring to http. One of the changes I made in my build is to replace http:// with just // because I use SSL (https). Most probably won't use SSL (unless their sites deal with money as mine does), so it's probably not a big deal but thought I'd mention it.
yes, totally agree and we do need to change out those references to http. I have started a new thread here for 1.8 requests http://forums.hotarucms.org/threads/roadmap-version-1-8.7578/
thanks for all your help @robin007 . I think you may have done over 100 test installs for this version thanks also to @sereban, @valMETNG and @jiyath for testing and suggestions in this version
Just upgraded from the last version to 1.7. Everything went sm00th There was one problem with a default template and vote plugin version 2.5, so I had to downgrade temporarly to 2.3. When I was logged in with a user I would receive errors like "Could not show show_post_extras for VOTE" all over the list page. Loved the new submit WYSIWYG editor. A really big upgrade :}
Thanks for letting me know you liked the new version. Happy to hear that. Were you able to run the "Refresh Plugins" button on the upgrade page ? Could you try uninstalling the plugin manually in the admin dashboard plugins page. right hand button next to plugin to uninstall and then reinstall it from the list at the bottom. this should make sure plugin hooks are up-to-date and also refresh the cache for it thanks
Give me a sec, I will try manually reinstalling it again. I coudn't run the "Refresh Plugins" button during upgrade even though I was logged in before the upgrade, but got logged out during it and when I tried to login I just couldn't for some reason.
ok, no problems. maybe you could try running the upgrade again to refresh those plugins. even if you just run the last step YOURWEBSITE/install/index.php?step=3&action=upgrade the refresh button uninstalls and installs again each plugin which gets all the pluginhooks lined up properly in the db. beats having to do them all manually one by one. I will add this to the admin dashboard next version as well so it can be run anytime
Yeah, it works perfectly fine now.. Apparently it was caused by not refreshing.. Ty again shibuya Will go and play with it more now. Still getting those "CSRF error. Please try again." everytime i do something for the first time, like registering or submitting... Just trying it the second time works uisually.. but still a problem I would say.. Maybe I should just fresh install, because I had the same problem after upgrading to 1.6.x?
can you make sure the Users plugin is number 2 in the list of plugins in admin dashboard re: font unknown, it says Helvetica Neue. is this a problem?
can i see your site on the web so i can check css? could you also post this in the main forum thread so it is easier to keep track of http://forums.hotarucms.org/forums/general-troubleshooting.3/
Just tried playing with the new summernote and noticed that formatting doesn't go trough to the end posts. Paragraphs gets all mashed into one big chunk of text. There are options to embed videos, but it doesn't work either. When you submit a post with video embedded the video is simply not there.
will check on formatting. maybe the encoding or inspekt is cutting it off hadnt noticed the video item but will have another look
@valMETNG do you have any quick code ideas on what you changed when you did your own text editor ? probably some changes to public function processSubmitted in the /plugins/submit/submitFunctions.php file around line 122 ? was it just replcaing this PHP: $allowable_tags = $h->vars['submit_settings']['allowable_tags']; $content = sanitize($h->cage->post->getHtmLawed('post_content'), 'tags', $allowable_tags); $h->vars['submitted_data']['submit_content'] = $content; with this PHP: $content = $h->cage->post->getHtmLawed('post_content'); $h->vars['submitted_data']['submit_content'] = $content; or did you add tags like <div><span><i><b><u> into the allowed ones in the submit plugin? <iframe></iframe> etc
Adding allowed tags into submit plugin helped to fix most of the formatting issues. Embedding videos still doesn't work though :/ My tags now: <iframe><a><blockquote><del><div><span><i><b><u><br><p><embed> Looking at the HTML code view when submitting with summernote shows that it uses <iframe> tag for video embeds, but even though it's added into allowed list it is still not working as intended :/ Picture upload doesn't work either.