Project

General

Profile

Bug #8257

Updated by krileon over 3 years ago

If your site is contained in a folder prefixed with 001 (e.g. 001_test) this will cause the autoloader REGEXP to treat the \0 as part of the replace syntax. 

 @AutoLoader::registerExactMap( '%^CB/Plugin/AutoActions/(.+)%i', __DIR__ . '/library/$1.php' );@ 

 This would produce the following pathing issues. 

 @ROOT\wwwCB/Plugin/AutoActions/Trigger/AdminTrigger1_test\components\com_comprofiler\plugin\user\plug_cbautoactions/library/Trigger/AdminTrigger.ph@ 

 Due to the below replace syntax. 

 @ROOT\www\001_test\components\com_comprofiler\plugin\user\plug_cbautoactions/library/$1.php@ @C:\Work\wamp64\www\001_test\components\com_comprofiler\plugin\user\plug_cbautoactions/library/$1.php@ 

 https://www.joomlapolis.com/forum/153-professional-member-support/242258-solved-plugin-autoaction-installation-problem

Back