Jump to content

aXenDev

Members
  • Posts

    658
  • Joined

  • Days Won

    6

Reputation Activity

  1. Haha
    aXenDev reacted to Rikki in Hump Day: how do you handle trolls?   
    Sometimes, turning the relationship on its head and actually employing the troll can have a beneficial outcome.
  2. Haha
    aXenDev reacted to Nathan Explosion in My head hurts...   
    ...from reading this.


     
  3. Like
    aXenDev reacted to Adriano Faria in IPS 4.7.2 final major problem   
    Another suggestion, @Matt.
     Make this message visible to everyone:

     
    Transparency never hurts and will certainly avoid posts and messages asking to update.
    Currently it shows only to file submitter (and staff).
  4. Like
    aXenDev got a reaction from Shadovv in (aXen) Content Notes - Topic Support   
    Wiem, poprawka będzie dostępna dopiero za tydzień ze względu na mój urlop.
  5. Haha
  6. Like
    aXenDev reacted to Andy Millne in IPS 4.7.2 Beta 2 (IN_DEV) - Call to undefined function IPS\Application\preq_quote()   
    This should be fixed for the next release.
  7. Like
    aXenDev got a reaction from Nathan Explosion in IPS 4.7.2 Beta 2 (IN_DEV) - Call to undefined function IPS\Application\preq_quote()   
    This error is also in my macos (macbook pro with m2/xampp with php 8.1.6/ MariaDB 10.4.21 )

  8. Like
    aXenDev reacted to Nathan Explosion in IPS 4.7.2 Beta 2 (IN_DEV) - Call to undefined function IPS\Application\preq_quote()   
    @aXenDev
    This is likely to be an issue for us who use Windows on our dev machines...cue "Windows isn't supported..."
    So, a little playing around and grabbing out all the $skipPatterns & $pathnames involved with my single application allows me to do the following as an isolated PHP file...same issue, and easier to figure out now.
    <?php $patterns[] = '/C\:\\wamp64\\www\\dev\\ips_47_dev_b/applications/neappavrecorder\/(?:hooks|setup|dev)/'; $paths[] = 'C:\wamp64\www\dev\ips_47_dev_b/applications/neappavrecorder\Application.php'; $patterns[] = '/C\:\\wamp64\\www\\dev\\ips_47_dev_b/applications/neappavrecorder\/(?:hooks|setup|dev)/'; $paths[] = 'C:\wamp64\www\dev\ips_47_dev_b/applications/neappavrecorder\dev\jslang.php'; $patterns[] = '/C\:\\wamp64\\www\\dev\\ips_47_dev_b/applications/neappavrecorder\/(?:hooks|setup|dev)/'; $paths[] = 'C:\wamp64\www\dev\ips_47_dev_b/applications/neappavrecorder\dev\lang.php'; $patterns[] = '/C\:\\wamp64\\www\\dev\\ips_47_dev_b/applications/neappavrecorder\/(?:hooks|setup|dev)/'; $paths[] = 'C:\wamp64\www\dev\ips_47_dev_b/applications/neappavrecorder\hooks\code_dispatcher_front.php'; $patterns[] = '/C\:\\wamp64\\www\\dev\\ips_47_dev_b/applications/neappavrecorder\/(?:hooks|setup|dev)/'; $paths[] = 'C:\wamp64\www\dev\ips_47_dev_b/applications/neappavrecorder\hooks\theme_core_global_forms.php'; $patterns[] = '/C\:\\wamp64\\www\\dev\\ips_47_dev_b/applications/neappavrecorder\/(?:hooks|setup|dev)/'; $paths[] = 'C:\wamp64\www\dev\ips_47_dev_b/applications/neappavrecorder\modules\admin\recorder\avsettings.php'; $patterns[] = '/C\:\\wamp64\\www\\dev\\ips_47_dev_b/applications/neappavrecorder\/(?:hooks|setup|dev)/'; $paths[] = 'C:\wamp64\www\dev\ips_47_dev_b/applications/neappavrecorder\sources\NeappAvRecorder.php'; foreach($patterns as $k=>$v){ preg_match($v,$paths[$k]); } Result (snipped for brevity):
    ( ! ) Warning: preg_match(): Unknown modifier 'a' in C:\wamp64\www\loggedin.php on line 18 Call Stack # Time Memory Function Location 1 0.0005 363704 {main}( ) ...\loggedin.php:0 2 0.0005 364456 preg_match( $pattern = '/C\\:\\wamp64\\www\\dev\\ips_47_dev_b/applications/neappavrecorder\\/(?:hooks|setup|dev)/', $subject = 'C:\\wamp64\\www\\dev\\ips_47_dev_b/applications/neappavrecorder\\Application.php' ) ...\loggedin.php:18 ( ! ) Warning: preg_match(): Unknown modifier 'a' in C:\wamp64\www\loggedin.php on line 18 Call Stack # Time Memory Function Location 1 0.0005 363704 {main}( ) ...\loggedin.php:0 2 0.0016 365328 preg_match( $pattern = '/C\\:\\wamp64\\www\\dev\\ips_47_dev_b/applications/neappavrecorder\\/(?:hooks|setup|dev)/', $subject = 'C:\\wamp64\\www\\dev\\ips_47_dev_b/applications/neappavrecorder\\dev\\jslang.php' ) ...\loggedin.php:18 ( ! ) Warning: preg_match(): Unknown modifier 'a' in C:\wamp64\www\loggedin.php on line 18 Call Stack # Time Memory Function Location 1 0.0005 363704 {main}( ) ...\loggedin.php:0 2 0.0027 365328 preg_match( $pattern = '/C\\:\\wamp64\\www\\dev\\ips_47_dev_b/applications/neappavrecorder\\/(?:hooks|setup|dev)/', $subject = 'C:\\wamp64\\www\\dev\\ips_47_dev_b/applications/neappavrecorder\\dev\\lang.php' ) ...\loggedin.php:18 The problem is, I believe, as follows:
    $dir = ( ( \defined('IPS\CIC2') and \IPS\CIC2 ) ? \IPS\SITE_FILES_PATH : \IPS\ROOT_PATH ) . '/applications/' . $app->directory; On Windows, that will give you:
    C:\wamp64\www\dev\ips_47_dev_b/applications/neappavrecorder It's the / in there that is causing the later problems.
    Manipulate $dir as follows, before the $skipPattern is created, will sort it. Likely going to need to be a manual edit by us if the expected cue comes along...
    $dir = str_replace('/','\\',$dir);  
  9. Agree
    aXenDev got a reaction from Adriano Faria in IPS 4.7.2 Beta 2 (IN_DEV) - Call to undefined function IPS\Application\preq_quote()   
    @Daniel F In beta 3: 
    preg_match(): Unknown modifier 'a'


  10. Like
    aXenDev got a reaction from SeNioR- in IPS 4.7.2 Beta 2 (IN_DEV) - Call to undefined function IPS\Application\preq_quote()   
    After upgrade forum from beta 1 to beta 2 and enabled IN_DEV mode:


  11. Like
  12. Like
    aXenDev reacted to Marc Stridgen in IPS 4.7.2 - "Error" title page after successfully updating beta form 1 to 2   
    Thank you for bringing this issue to our attention! I can confirm this should be further reviewed and I have logged an internal bug report for our development team to investigate and address as necessary, in a future maintenance release.
     
  13. Like
    aXenDev reacted to Daniel F in IPS 4.7.2 Beta 2 (IN_DEV) - Call to undefined function IPS\Application\preq_quote()   
    Thx I have fixed this for an upcoming release.
  14. Like
    aXenDev reacted to Matt in IPS 4.7.2 Beta 1 (IN_DEV) - preg_match(): Compilation failed: PCRE2 does not support - Error 500   
    This should be fixed in the next beta.
  15. Like
  16. Like
    aXenDev reacted to Matt Finger in IPS 4.7.2 - Class "IPS\cloud\extensions\core\AdminNotifications\ManualInterventionMessage" not found   
    Hi aXenDev,
    Good find, we're in the process of pushing a patch for this issue. Sorry for any inconveniences this may have caused.
    Thanks!
  17. Like
    aXenDev got a reaction from SeNioR- in IPS 4.7.2 - Class "IPS\cloud\extensions\core\AdminNotifications\ManualInterventionMessage" not found   
    After upgrade to IPS 4.7.2 Beta 1 in system logs:
    Error: Class "IPS\cloud\extensions\core\AdminNotifications\ManualInterventionMessage" not found (0) #0 /usr/home/aXenDev/domains/ips.axendev.net/public_html/applications/core/modules/admin/support/support.php(507): IPS\core\_AdminNotification::send('cloud', 'ManualIntervent...') #1 /usr/home/aXenDev/domains/ips.axendev.net/public_html/applications/core/modules/admin/support/support.php(228): IPS\core\modules\admin\support\_support->_showBlockVersion() #2 /usr/home/aXenDev/domains/ips.axendev.net/public_html/system/Dispatcher/Controller.php(107): IPS\core\modules\admin\support\_support->getBlock() #3 /usr/home/aXenDev/domains/ips.axendev.net/public_html/applications/core/modules/admin/support/support.php(48): IPS\Dispatcher\_Controller->execute() #4 /usr/home/aXenDev/domains/ips.axendev.net/public_html/system/Dispatcher/Dispatcher.php(153): IPS\core\modules\admin\support\_support->execute() #5 /usr/home/aXenDev/domains/ips.axendev.net/public_html/admin/index.php(13): IPS\_Dispatcher->run() #6 {main}  
    The URL of page the error occurred on was https://ips.axendev.net/admin/?app=core&module=support&controller=support&do=getBlock&block=version&csrfKey=XXX
  18. Thanks
    aXenDev got a reaction from Raul Danciu in CSS Missing from templates (4.7+ Related)   
    Then you probably know that you don't edit the default CSS files in the CMS.
    See:
     
  19. Like
    aXenDev reacted to Hisashi in CRITICAL BUG (Datatime) - Records   
    Hello,
    I just reinstalled a test suite and the following date error is occurring.
    Version: 4.7.1
    Did the same happen in the previous version? (4.7.0.): No
    Apps: Only Pages app
    This is a test suite, NOTHING has been modified.
     
    Date of first article created (default)

    Creating a new article
    1

    2

    3

     
  20. Like
    aXenDev got a reaction from SeNioR- in Support PHP 8.0?   
    IPS 4.6 is compatible with PHP 8.0 IPS 4.7 is compatible with PHP 8.1 See more: https://invisioncommunity.com/release-notes/
  21. Thanks
  22. Thanks
  23. Agree
    aXenDev got a reaction from Randy Calvert in Support PHP 8.0?   
    IPS 4.6 is compatible with PHP 8.0 IPS 4.7 is compatible with PHP 8.1 See more: https://invisioncommunity.com/release-notes/
  24. Like
    aXenDev got a reaction from GazzaGarratt in [Dark / Light] Fluent Design Theme Edition - Topic Support   
    Below the file description.
    I need live demo to checking this issues.
  25. Like
    aXenDev got a reaction from SeNioR- in Support php 8.1   
×
×
  • Create New...