Jump to content

CodingJungle

Clients
  • Posts

    3,066
  • Joined

  • Days Won

    31

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by CodingJungle

  1. 26 minutes ago, liquidfractal said:

    Thanks for your help @Millipede.  But I managed to isolate the cause of my site breakage: it is a conflict between @CodingJungle's Keywords and @Martin A.'s Minimized Quote plugin, which I have had to disable.

    @Square Wheels, if you have this plugin installed that might be the cause for you as well.

    what was the issue? @Martin A. is in a slack channel i troll, i can get with him to figure out  a solution. 

  2. 1 minute ago, liquidfractal said:

    Thanks...and I assume these error logs are available through Cpanel's WHM?  Or is there a straightforward way to check them (sorry...not a guru!)?

    they should be,i don't use WHM very often so i am not too familiar with it (nor cpanel)

    1 minute ago, Square Wheels said:

    I am having the same issue.  It happened only after this update, no other changes had been made.

    If you two find a solution, would you please post it here so I'll know too?

    sure, if you could check your apache/php error logs, it would probably help in establishing what has caused this. 

  3. On 11/20/2018 at 11:29 AM, Simon Culshaw said:

    @CodingJungle It works in the default theme but doesn’t like the theme from Ehren’s IPSFocus... Chameleon

    You will prolly have to do a manual replacement of the primary menu, as a lot of third party themes do heavy changes in the area, and there is no way to predict the types of changes. on most of these themes the other locations will work without issue.

    On 11/21/2018 at 5:20 PM, Square Wheels said:

    I just updated keyword tooltips.  Now my entire site is inaccessible.  It worked fine immediately before the update, now I get a 500 or 503 error, this happened right after the upgrade.

    Any suggestions?

    loopsters.org

     

    16 hours ago, liquidfractal said:

    I have a problem like this one.  Keywords was working fine until I upgraded from the last version to 3.1.6.  Now my site won't load - I get a blank screen for the homepage and there is absolutely no data in the page when I inspect the source (although I can still get to the adminCP).  When I disable Keywords, everything comes up fine again.

    @CodingJungle, can you look in to this?  I love this app and it's important to my site. Thanks!

    The only change i made that would effect anything globally was moving the JS from a theme hook into includeCSS to a code hook for front diispatcher. I am not seeing how that could cause this issue. I've tested it in several locations, including a rolling upgrade and did not run into any issue, so it would seem to be  a conflict with another plugin/app that also hos into the front dispatcher on the baseJS method.

    if you could check your php/apache error logs, it would more than likely tell you the exact error. if you want you can send me the error in the logs via PM. 

  4. On 11/11/2018 at 2:55 AM, Simon Culshaw said:

    Hello,

    I installed Menu Groups Manager on my site and got this error which took my site offline:-

    ParseError: syntax error, unexpected '}', expecting elseif (T_ELSEIF) or else (T_ELSE) or endif (T_ENDIF) (0)
    #0 /home/sites/4b/3/377a64d893/public_html/system/Theme/Theme.php(741): IPS\Theme\Cache\_Template->exists()
    #1 /home/sites/4b/3/377a64d893/public_html/system/Dispatcher/Dispatcher.php(166): IPS\_Theme->getTemplate('global', 'core')
    #2 /home/sites/4b/3/377a64d893/public_html/system/Dispatcher/Standard.php(118): IPS\_Dispatcher->finish()
    #3 /home/sites/4b/3/377a64d893/public_html/system/Dispatcher/Front.php(574): IPS\Dispatcher\_Standard->finish()
    #4 /home/sites/4b/3/377a64d893/public_html/system/Dispatcher/Dispatcher.php(148): IPS\Dispatcher\_Front->finish()
    #5 /home/sites/4b/3/377a64d893/public_html/index.php(13): IPS\_Dispatcher->run()
    #6 {main}

    It didn't seem to like my theme which is Chameleon from IPSFocus.

    Any idea what I did wrong?

    Thanks in advance

    i'm not familiar with that theme, does it work on the default theme or does it still throw this error?

    On 11/13/2018 at 4:38 PM, Metmet said:

    Hi @CodingJungle

    A blank doesn't appear when I write two keywords in following..

    Let see by yourself :

    P3sf5U7.gif

    Any idea to fix this ?

    i've fixed this in the next version.

    On 11/15/2018 at 2:31 PM, Sonya* said:

    Two questions:

    1. Keyword Tooltip: have you tested it with built-in acronym expansion feature? If the same word defined as acronym and keyword, what happens then?
    2. Joel R has mentioned you here https://invisioncommunity.com/forums/topic/448406-black-friday-cyber-monday-for-ips-marketplace-2018/?tab=comments#comment-2764457 participating on Black Friday action. Will you? :rolleyes:

     

    1, yes i have, it supersedes the acronym's, so if you have an acronym and a keyword both with the same name, the keyword will win out.

    2. yeah, just got late to the party 🙂 was thinking a black friday sale was gonna be on well, black friday or cyber monday 🙂 

    On 10/25/2018 at 9:39 AM, Phil7789 said:

    Menu Groups Manager

    Hey there,

    is the MGM pulling the theme from anywhere? I'm using a custom theme where the default menu is styled with CSS. Will the MGM look different from that or is it using the default classes of IPS?

    Thanks in advance,

    Phil

    it uses its own classes. there are  a few different css files depending on what you are using.

    block.css will control the look and feel of block menu types. 

    mega.css will control how the mega sub menus will look.

    traditional.css will control how the single column sub menus will look.

    cjmg.css contains all the other styling.

    there is also cjmg_custom.css that loads after all these to allow easily override the css rules in the other css.

  5. 25 minutes ago, teraßyte said:

    Yeah, I can hook into specific classes but not the main one. For example I want to make all apps not save a point for the chosen reputation under certain circumstances. I'd have to go around making an hook on each class for each application I want to support. And I just can't go around adding support for any 3rd party apps 1 by 1. I could do it, but I won't. I'll use my time in better ways 🙂

    have you tried telling the class to use the class method instead of the traits method? like:

    trait FooTrait {
    	public function bar(){
    		return "hello, i'm a trait method!";
    	}
    }
    class myhook extends HOOK_TEMP
    {
    	use FooTrait {
    		bar as traitBar;
    	}
    
    	public function bar()
    	{
    		return "I am not the trait method!";
    	}
    }

    i haven't tested this, but i can think of a potential problem or two. 

  6. 11 minutes ago, Circo said:

    Is it possible to get a refund on the downloads + app.  It wasn't cheap and I've been waiting for it to get fixed but I've never used it for more than a few hours.

    what is wrong with it? i couldn't reproduce the problem with that you reported after the last fix, and i do use the app on my own site:

    I haven't noticed any bugs with it lately.

  7. 3 hours ago, Unlucky said:

    Hi,

    we get this error when clicking settings in your media app.

    Error: Class name must be a valid object or a string (0)
    #0 /home/badhabi5/public_html/system/Helpers/Form/FormAbstract.php(264): IPS\Helpers\Form\_Node->html()
    #1 /home/badhabi5/public_html/system/Helpers/Form/Form.php(415): IPS\Helpers\Form\_FormAbstract->rowHtml(Object(IPS\Helpers\Form))
    #2 /home/badhabi5/public_html/system/Theme/Theme.php(824) : eval()'d code(1668): IPS\Helpers\_Form->__toString()
    #3 /home/badhabi5/public_html/system/Theme/SandboxedTemplate.php(58): IPS\Theme\class_core_admin_global->globalTemplate('b41752bb1740b6f...', Object(IPS\Helpers\Form), Array)
    #4 /home/badhabi5/public_html/system/Dispatcher/Dispatcher.php(166): IPS\Theme\_SandboxedTemplate->__call('globalTemplate', Array)
    #5 /home/badhabi5/public_html/init.php(460) : eval()'d code(44): IPS\_Dispatcher->finish()
    #6 /home/badhabi5/public_html/system/Dispatcher/Standard.php(118): IPS\easypopup_hook_showPopup->finish()
    #7 /home/badhabi5/public_html/system/Dispatcher/Dispatcher.php(148): IPS\Dispatcher\_Standard->finish()
    #8 /home/badhabi5/public_html/admin/index.php(14): IPS\_Dispatcher->run()
    #9 {main}

    are you on the latest version 2.1.1?

  8. 5 hours ago, VladislavD said:

    Keyword Tooltip 3.1.5

    Hi, does this application work on mobile devices? Are the links active?

    i thought i had answered this on my site, but it doesn't seem to have been saved (will need to look into as why). i've replied there, but i will reply here as well.

    yes it will work with mobile devices, it will be styled like links for your theme will. you can aslo style them differently using the class for css keywordUrl  (this is for keywords that are URLS) and keyword (this is for KW that aren't URLS). 

  9. On 9/21/2018 at 9:56 AM, RLPVT said:

    I am still getting this error on the media system with Media 2.1 in the Admin CP when I click on settings. Also I am wondering is there a way to control the size of the thumbnails in the category views? I went in the settings to see if it was there and I get this error or debug or whatever it is still

     

    it would seem you have an app installed that has a content router extension, but it doesn't have a container class (or it is missing the property for it).

    i've put a check in the code to make sure this property is populated and/or the class actually exist before passing it to the form helper.

     

    14 hours ago, Millipede said:

    Yet a Joomla site that I have in another directory didn't show any such errors and opened fine, which makes me think it’s something to do the IPB installation.

    My server was recently upgraded to use MariaDB and EasyApache 4, not that I know anything about either. Previously, I only had the PHP Selector, which is where I now switched to PHP 7; now I also have MultiPHP Manager, but I’ve no idea if I’m supposed to do something with this or not when switching PHP versions?

    when i first activated php 7.2 on my cpanle/easyapache 4 server, it was missing the php-mbstring and php-mysql, and all i had to do was go rebuild it with the missing plugins and it worked fine, so i'd imagine it is something similar for you, as there are a few plugins IPS needs to run properly.

    14 hours ago, Millipede said:

    That said, PHP 5.6 is still supported on IPB 4.3, so I guess there’ll be others still using PHP 5.6. If more recent versions of MGM aren’t compatible with it, maybe the description should mention it?

     

    I've gone ahead and rolled back to a early version of the codebase, before the php 7 syntax was introduced and then back ported the fixes (changing them to work in php 5.6 as well).  I will be releasing this shortly. 

    most of my new stuff and new major versions for any of my apps will be written with php 7+ in mind. just a friendly reminder, php 5.6 and php 7.0 will reach EOL this december.

     

    On 9/21/2018 at 1:31 PM, Circo said:

    Have you been able to duplicate the issue.  Would be sweet if it worked again.  It used to drive sales when it worked right. 

    its next in my queue to take a look at.

  10. 26 minutes ago, Millipede said:

    PHP 5.6. I can upgrade to 7, I just haven't got round to it yet.

    4 hours ago, CodingJungle said:

    yeah try going to php 7, as any new fixes (and eventually) i'll be rolling over to php 7+ syntax, doing a quick once over of the code for mgm, its in between this conversion, it has too many elements that are php 7+ syntax to go easily change. 

    oh btw, don't go to php 7.3, as IPS's furl system doesn't work under php 7.3 (due to php 7.3 adopting pcre2, and the subtle changes in it).

  11. 54 minutes ago, Millipede said:

    MGM v.1.0.6

    Show Preview now works again, thanks.

    However, I’m still getting these:
    - Clicking New Menu item = blank page
    - Clicking Edit for menu item = blank page

    I now have yet another new problem:
    When I open the block manager, I get a popup saying: “Couldn't get list of available blocks”. If I disable MGM, the block manager works again.

    Forum root error_log:

    Admin error_log:

    Is there a way to backup the menus and settings and later re-import them, so’s I can uninstall and re-install MGM in the hope a fresh new installation will work without all these problems? I really don’t want to have to keep restoring from a full backup just to get v.1.0.3 back... as it's the only version that works for me, (apart from the script being at the bottom in the wrong place).

    what version of php are you on? MGM was developed using the new features of php 7.0+.

    there haven't been any DB changes, you can just install the last working version over the new one. 

  12. On 9/2/2018 at 3:47 AM, Unlucky said:

    It still appears duplicate member logger is not working and either sending out the pm's or banning the duplicate accounts

     

     

    On 9/14/2018 at 11:37 PM, Circo said:

    I have this issue as well, its better than nothing I just have to check it each day and do everything manually

     

    so its the automated one that isn't working? cause last time it was reported, i tested the manual (since they both use the same code) and it was working there. must be a hiccup in the flow that is causing it then, i'll check it out.

     

    On 9/14/2018 at 2:39 PM, RLPVT said:

    Do I need install a newer version? Has this been fixed? I loaded what I thought the newest version and it works NOW on the front end. But when I go to look at settings I get this in the Admin CP. I was trying to go in and see if there was a size control for thumbnails on the category images

     

    its not a bug, its a debug message, i meant to type in debug instead of log, that way it would only work if the constant is defined for it, its been fixed in this latest version.

    On 9/11/2018 at 5:57 AM, Cyboman said:

    I would be highly interested when the new babble chat version (major upgrade) will be ready. Is there any ETA?

     

    working on UI and stabilizing the features i've added, all i can really say for ETA, possibly in the next 3 weeks or so. Since it is a huge upgrade from v2, i want to make sure everything is working and stable before releasing. 

    On 9/11/2018 at 5:57 AM, Cyboman said:

    Further more, my moderators report, that if a member gets regularly warned via the native IPS warning system (temporary ban as well as indefinite ban), the banned members are still able to go on chatting (while they are banned in the rest of the community and can't use other apps/functions). This seems to be a bug in the app.

    check the rooms perms, does the banned group have permissions to use babble? if they don't and this is still possibly, i'll dive a bit deeper into what could be causing this. 

    On 9/14/2018 at 11:37 PM, Circo said:

    Using Downloads Plus I have come across a bug, when enabled when you click the Report this file link instead of the text box to report what was wrong it just shows the file description.  Text entry box is missing.  When I disable the plugin "Report this file" works properly again.

    On 9/2/2018 at 3:47 AM, Unlucky said:

    this has been fixed in the latest version of dplus.

    On 9/12/2018 at 4:48 PM, beats23 said:

    Hi, regarding Name 2 Avatars 3.4.1 

     

    i'll reply in the PM you sent thanks. 

  13. 19 hours ago, Millipede said:

    MGM V.1.0.4

    Well, that was a bit of a disaster, I’m afraid...

    The good news is that the MGM errors are gone.

    The bad news is that the widget blanked the forum.

    I tested the widget: it was blank, with just one word: “Error”, and it had no close button. When I closed the sidebar block manager, the forum went blank with an empty white page. Clearing caches didn’t help.

    If I disabled the app, the forum came back (albeit with the primary menu).

    System Logs showed:

    
    ErrorException: Method IPS\cjmg\widgets\cjmg::__toString() must return a string value (4096)
    #0 /home/mydomain/public_html/forum/applications/core/modules/front/system/widgets.php(150): IPS\IPS::errorHandler(4096, 'Method IPS\\cjmg...', '/home/mydomain/...', 150, Array)
    #1 /home/mydomain/public_html/forum/system/Dispatcher/Controller.php(85): IPS\core\modules\front\system\_widgets->getBlock()
    #2 /home/mydomain/public_html/forum/applications/core/modules/front/system/widgets.php(38): IPS\Dispatcher\_Controller->execute()
    #3 /home/mydomain/public_html/forum/system/Dispatcher/Dispatcher.php(146): IPS\core\modules\front\system\_widgets->execute()
    #4 /home/mydomain/public_html/forum/index.php(13): IPS\_Dispatcher->run()
    #5 {main}
    
    Backtrace
    #0 /home/mydomain/public_html/forum/init.php(537): IPS\_Log::log('ErrorException:...', 'uncaught_except...')
    #1 [internal function]: IPS\IPS::exceptionHandler(Object(ErrorException))
    #2 {main}

    The error_log in the root of the forum showed:

    The error_log in the /admin directory showed:

    As I couldn’t get the forum back without a blank white page as well as use MGM, and I don’t have time to remove v.1.0.4 and re-install v.1.0.3 and restart the whole menu from scratch, I restored the forum from a backup with v.1.0.3 instead as it was quicker.

    Luckily, this was on my test forum.

     

    the error was caused by the selected menu group being empty, its been fixed and wont throw an error now.

    I also moved the footer menu group placement to a place above where the JS is rendered to fix the other issue you had report.

  14. 12 hours ago, RLPVT said:

    Not to be a pain but I haven't been able to use this mod since I purchased it. Can I at least get an expected time frame for next release? I think almost two weeks since purchase is a fair amount of time

     

    On 8/25/2018 at 9:55 AM, Millipede said:

     


    Any news on this please? My system logs are still being filled with these errors.

    Also, the widget doesn't work, in that it doesn't show anywhere in the sidebar manager. I'm guessing that's because it's related to the system errors?

    sorry guys, been asleep at the wheel, but i've put out updated versions of both these apps. let me know if they fix you issues.

    On 8/27/2018 at 12:24 PM, Millipede said:

    MGM

    Sorry, I’ve got another possible problem...

    I’ve got Themes > Edit> Custom > “Javascript include location” set to “Just before /body tag”.

    However, despite this setting, GMetrix is giving me a poor F rating for “Defer parsing of JavaScript”. When I try to investigate why, I see in the source code that there’s this HTML immediately above the closing body tag and below all the javascript:

    
    <div class="cjmg_container"></div>

    Might there be a way to fix this please?

    i'll check this out, they should be right after the body tag and before the close body tag. might need to check out the theme hook config for them, make sure they didn't accidentally get moved or changed.

  15. 14 hours ago, RLPVT said:

    Anyone have any thoughts? Has anyone else experienced this? Cannot really use this right now.

    sorry for the delay, i missed the notification in my email.

    i think i've identified the problem and will release a update on wednesday or thursday (depends on how tomorrow goes ? )

  16. 10 hours ago, Peter L McCormick said:

    What actually are "groups"? Pretty simple, basic concept. I'm still not sure I know. I think "menu" could be substituted pretty easily. Maybe it's a developer/coder thing.

     

    I thought it was pretty self explanatory what a Menu Group would be. Its used in the same sense as Member Groups.

    10 hours ago, Peter L McCormick said:

    Choose from "drawer, URL, applications, wrapper and magic block" types. OK, I get URL and applications, but have no clue what drawer, wrapper and magic blocks are.

     

    I had made a bunch of videos for CJ Menu when i launched it, but after 3 1/2 years, they only had a half dozen views. I had made one MGM that was like 30 minutes long, that went over into more detail what everything was, but it was reported that audio was corrupted in parts of it, so i took it down. I just haven't had the time to remake the video and there hasn't been any demand for it.

    10 hours ago, Peter L McCormick said:

    - although it appears as if the "group"/menu has to be live in order for the preview to work

    it is probably a bug, i'll test it out and release an update.

    10 hours ago, Peter L McCormick said:

     Finally, the statement, "MGM will attempt to remove the IPS default menu navigation, this isn't always a guarantee ..." kind of scares me. Does this mean the default navigation is gone, or just isn't visible but could be easily reversed?

     

    it doesn't alter anything on a permanent basis. if you were turn on the setting, it would attempt to remove the HTML associated with the default menu manager found in IPS from the theme at compile time, if you turned it off/disabled MGM or removed MGM your default navigation would return without any issue. (this description actually exist cause of my experiences from CJ Menu and ProMenu for 3.x. a lot of third party themes will change the class names for the css so the hook doesn't work, or will remove the default HTML for the menu, to replace it with something that they created or pulled off something like code canyon. it is why MGM doesn't attempt to replace the default menu like CJ Menu and ProMenu before it had done).

    10 hours ago, Peter L McCormick said:

    The price has been reduced from $300 to $35, which is great, but I would have paid way more than $35 to have an in-place help file, FAQ or tutorial video. And in retrospect, I shouldn't have purchased it at all without a help feature. The time I've spent just today jerking around with MGM all but eliminated the difference in cost, right out of the gate.

    I will redo some of the tutorials videos this weekend for MGM. they can take a few hours to produce, so there isn't a whole lot of incentive to do them when they only get viewed a handful of times. but you are right, there are plenty of features and abilities of MGM (like CJ Menu) that need better explanation. My PM's are always open for questions and assistance if you have any questions or issues however.

    FYI, the $300 price tag for CJ Menu is cause not everyone who bought CJ Menu has been transferred to MGM (many wont till CJ Menu stops working or has issues with new versions of IPS, considering i had a client just a few weeks back, who began noticing some style issues, was still running like cj menu version 2. i'm gonna say it might be awhile before a lot of purchasers of CJ Menu notice there is a new, replacement for it). so since i can't disable new purchases, and people still have access to the download to see the description, i set the price to a high value so there aren't any accidental purchases of the app (as it isn't actually supported any longer). 

    so like if you have any question or need assistance with anything in MGM you can let me know here or send me a PM. I'll set some time aside to begin working on a new tutorial video on some of the more advanced features. 

  17. 3 hours ago, CavySpirit said:

    I'm extremely confused about Menu Groups Manager. Where do you actually put what the menu is supposed to do??

    can you be a bit more specific? if you are talking about a groups settings, go to the group, and you will see a button that says "manage group", click on this and choose "edit" to edit the various options for a group. you can then select where to position it, there are several predefined locations to place a group.

    3 hours ago, SJ77 said:

    I thought you had a way to get rid of "VERSION" in downloads using downloads plus?

    Version is back. Did something change?

    not that i am aware, but i will check to see what they have done to give me a headache ? 

  18. 7 hours ago, Millipede said:

    Thanks, again. The media query override only seems to work on the list of forums, but not on the list of topics... but it then overlaps the topic stats.

    yeah i hadn't tested it extensively, just something that i came up with off the top of my head.

    7 hours ago, Millipede said:

    I don't know why IPS thought it a good idea to hide avatars on iPad when in landscape view; avatars can further aid in recognising who's who. It's not as if there isn't enough space, and they'd need to left align the topic stats. I guess we all have to put up with it, in that case.

    only the secret of life is a bigger mystery to why IPS does what it does sometimes ?

    7 hours ago, Millipede said:

    I must have a funky forum or browser dev tools... today, Firefox's responsive view showed it as it is, without avatars. Go figure, as they say. 

    i was able to reproduce it on my firefox and chrome dev tools and when i resized a EDGE window to ipads landscape viewing range.

  19. 14 minutes ago, Millipede said:

    Is there perhaps some way of fixing it for n2a?

    not sure of the rationale behind why they hide them at these resolutions, could have undesired results (as n2a just hijacks the url for the avatar, so there aren't actual theme/css changes for where they are displayed).

    however you can try this, i haven't extensively tested this, so i don't know all the end results it could have, but you can override the css class that is causing this. add this to your custom.css for your theme:

    @media screen and (max-width: 1200px)
    {
        .cForumRow .ipsDataItem_lastPoster li:first-child {
            display:block;
        }
    }

     

  20. 9 hours ago, Millipede said:

    MGM

    I recently bought this too :smile:

    Whenever I open the block manager on the forum home page, I always get the following system error. It only happens on the main forum page, not on other pages.

    It's on IPB 4.3.4 having recently been upgraded from 3.3.4. My system logs are filled with this error whilst I install stuff and test out blocks and widgets. Is this a bug in the app or have I got something wrong somewhere?

    On a side note: in the Permissions tab, what is “Use DB Perms”, assuming “Use Apps Perms” is whatever perms are for the app the menu is linking to, and assuming “Manual Perms” overrides both the DB and Apps Perms?

    seems to be a bug in MGM, i'll see what is causing it and release an update when i find it.

    if you select a CMS page for the link, you can set it to use the DB permissions, the ones you set for the database (its the view permission it will check against). if you set it to use "app perms", it will follow the ones that are set for the application in system->application. and yes, manual perms will override all them, but if they can't see the app or the db due to db perms, you will just have a menu item that takes them to an error page ?

    17 minutes ago, Millipede said:

    Sorry to be a nuisance... I installed it on my real forum a few few hours ago, and have just now noticed that no avatars at all show in the list of forum categories or in the lists of topics in a forum on my iPad; all avatars show fine in sidebar blocks/widgets and within topics. It all seems to work fine via my desktop browser. 

    How might I be able to fix this, please?

    doesn't appear to be an issue with n2a (i don't have it installed here on my dev). seems to be an issue with IPS responsive and the resolution scaling:

    non2a.thumb.PNG.1a96dc16b65016694fba6788a8406a0d.PNG

×
×
  • Create New...