php tools/mergeUsers.php adminx aaronmeece gets Could not open input file: tools/mergeUsers.php
Cause:
Invalid pathe
Solutions:
Go the ojs root and run the command or update the path to ojs root.
by dev
php tools/mergeUsers.php adminx aaronmeece gets Could not open input file: tools/mergeUsers.php
Cause:
Invalid pathe
Solutions:
Go the ojs root and run the command or update the path to ojs root.
by dev
by dev
We need to clean the YUM cache to reclaim the disk space used or to fix some errors due to corrupted metadata files.
yum clean packages
yum clean headers
yum clean metadata
Clean database cache yum clean dbcache
Clean expire cache yum clean expire-cache
yum clean all
Done!
by dev
For Windows, make sure you have PHP installed and type this into command prompt:
C:\Path\To\php.exe C:\Path\To\Your\script.php
And for Linux/Unix:
php /path/to/script.php
by dev
The disable_function is used to stop certain dangerous PHP functions from executing.
Example of disable_function.
disable_functions = "exec, system"
Use the disable_functions directive in php.ini file to disable specific functions.
At least disable exec(), shell_exec() and system(). (If using WordPress).
disable_functions = "exec, passthru, shell_exec, system, proc_open, popen, curl_exec, curl_multi_exec, parse_ini_file, show_source"