Download the PHP package kiatng/openmage-shooter without Composer
On this page you can find all versions of the php package kiatng/openmage-shooter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download kiatng/openmage-shooter
More information about kiatng/openmage-shooter
Files in kiatng/openmage-shooter
Package openmage-shooter
Short Description Troubleshooting tool for OpenMage developers
License GPL-3.0
Homepage https://github.com/kiatng/openmage-shooter
Informations about the package openmage-shooter
Shooter - A Troubleshooting Tool for OpenMage Developers
A browser-centric troubleshooting tool for OpenMage developers. Features:
- Logging capabilities:
- Custom logging with timestamp, URI, and user context
- Support logging of objects (Varien_Object and collections)
- Trace stack logging for debugging
- Browser debug output:
- Recent logs from exception, system, and other log files
- Echo variables, objects, and collections with formatting
- Display controller request parameters including uploaded files parameters
- System information:
- Server host name, IP address, OS, PHP version
- OpenMage version
- PHP information
- OAuth 1.0a Tester:
- Test OpenMage REST API as a consumer
- Test SSL connection
CAUTION: This module is designed for development environments. It may not be suitable for production environments due to the potential for exposing sensitive information.
Table of Contents
- Quick Start
- Debug Helper
- Output the Log Files in the Browser
- Capture the Last Error
- Show Information in the Browser
- REST OAuth 1.0a Tester
- Installation
- Composer
- Manual Installation
- Contributing
- License
Quick Start
You need to be able to access the customers in the database. The first 20 customers with ID from 1 to 20 are allowed to view the output in the browser. You can edit the entity_id
in the table customer_entity
for these users.
Debug Helper
Example uses of the helper:
Output the Log Files in the Browser
URI /shooter/log
To output the recent entries of the log files in var/log/*.log
and var/report/{latest file}
:
Optional parameters:
?lines=L
, where L is the number of lines to display, default is 80.?secs=S
, where S is the number of seconds from the modification time beyond which the file will not be displayed, default is 80.
For example, to list the log files from the last 120 lines and modified in the last hour:
URI shooter/log/tail
To show exception.log
:
Optional parameters:
?fnm=F
, where F is the name of the file to display, default isexception.log
.?lines=L
, where L is the number of lines to display, default is 80.?dir=D
, where D is the directory of the file to display, default isvar/log
.
Refer to LogController.php for more details.
Capture error_get_last()
To capture the last error, insert the following code in index.php, just before the last line Mage::run($mageRunCode, $mageRunType);
:
The error captured is displayed with URI /shooter/log
.
Show Information in the Browser
Refer to InfoController.php for more details.
REST OAuth 1.0a Tester
The tester allows you to test the OpenMage REST API as a consumer interactively with a browser. Use the following URI to access it:
The OAuth credentials are only stored in the session and never saved anywhere else.
Refer to RestController.php for more details.
Test SSL Connection
For public accessible URLs, tools like SSL Labs may be preferred. But if the site is private or under development, this tester is useful:
Refer to SslController.php for more details.
Installation
modman
Use modman to install the module, open a bash terminal and run:
Composer
Open a bash terminal and run:
Manual Installation
Download the files in the app
directory to your OpenMage root directory.
Contributing
We welcome contributions! Here's how you can help:
- Fork the repository
- Create a feature branch
- Submit a Pull Request with your changes
- Update documentation as needed
Please follow our coding standards and include appropriate documentation with your contributions.
Contributors ✨
Thanks goes to these wonderful people (emoji key):
License
@copyright 2024 Ng Kiat Siong This module is licensed under the GNU GPL v3.0.