Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../var/softacul.../fuel
File: info.xml
<soft xmlns="http://www.softaculous.com">
[0] Fix | Delete
<overview>
[1] Fix | Delete
<img src="logo.gif" style="float:right; margin:10px" alt="" />{{overview}}
[2] Fix | Delete
</overview>
[3] Fix | Delete
<features>
[4] Fix | Delete
{{features}}
[5] Fix | Delete
</features>
[6] Fix | Delete
<demo>
[7] Fix | Delete
http://www.softaculous.com/demos/FuelPHP
[8] Fix | Delete
</demo>
[9] Fix | Delete
<ratings>
[10] Fix | Delete
http://www.softaculous.com/softwares/frameworks/FuelPHP
[11] Fix | Delete
</ratings>
[12] Fix | Delete
<space>
[13] Fix | Delete
12539987
[14] Fix | Delete
</space>
[15] Fix | Delete
<support>
[16] Fix | Delete
http://fuelphp.com/
[17] Fix | Delete
</support>
[18] Fix | Delete
<version>
[19] Fix | Delete
1.8.2
[20] Fix | Delete
</version>
[21] Fix | Delete
<mod>14</mod>
[22] Fix | Delete
<mod_files>1</mod_files>
[23] Fix | Delete
<release_date>27-06-2019</release_date>
[24] Fix | Delete
<softversion>
[25] Fix | Delete
4.5.4
[26] Fix | Delete
</softversion>
[27] Fix | Delete
<requirement check="php" type="version" operator="ge" value="5.4.0" />
[28] Fix | Delete
<languages>
[29] Fix | Delete
<english-overview>
[30] Fix | Delete
<font size="5" color="#182e7a">FuelPHP</font> is a simple, flexible, community driven PHP framework, based on the best ideas of other frameworks, with a fresh start!
[31] Fix | Delete
<br /><br />
[32] Fix | Delete
FuelPHP is a MVC (Model-View-Controller) framework that was designed from the ground up to have full support for HMVC as part of its architecture. FuelPHP is extremely portable, works on almost any server and prides itself on clean syntax.
[33] Fix | Delete
<br /><br />
[34] Fix | Delete
FuelPHP is released under the <a href="http://fuelphp.com/docs/license.html" target="_blank">The MIT License</a>.
[35] Fix | Delete
</english-overview>
[36] Fix | Delete
<english-features>
[37] Fix | Delete
<font size="3" color="#8339E7">An (H)MVC framework</font>
[38] Fix | Delete
<p>
[39] Fix | Delete
FuelPHP is a MVC (Model-View-Controller) framework that was designed from the ground up to have full support for HMVC as part of its architecture. But we didn't stop there, we also added ViewModels (also known as presentation models) into the mix which give you the option to add a powerfull layer between the Controller and the View. FuelPHP also supports a more router based approach where you might route directly to a closure which deals with the input uri, making the closure the controller and giving it control of further execution.</p>
[40] Fix | Delete
<ul>
[41] Fix | Delete
<li>
[42] Fix | Delete
Full HMVC implementation</li>
[43] Fix | Delete
<li>
[44] Fix | Delete
ViewModels to get the View-specific logic out of your Views and Controllers</li>
[45] Fix | Delete
<li>
[46] Fix | Delete
Route directly to closures</li>
[47] Fix | Delete
</ul>
[48] Fix | Delete
<font size="3" color="#8339E7">Modular and extendable to a fault</font>
[49] Fix | Delete
<p>
[50] Fix | Delete
Almost every class in FuelPHP's core package can be extended without you having to change a single line of code where it's used on extending the core). You can package more functionality into packages that extend or replace the FuelPHP core and you can keep your application modular by dividing it up into application modules. Packages and modules are also a great way to enable re-use of your code.</p>
[51] Fix | Delete
<ul>
[52] Fix | Delete
<li>
[53] Fix | Delete
Extend or replace Core classes without rewriting a single line of code.</li>
[54] Fix | Delete
<li>
[55] Fix | Delete
Package additional functionality into Packages.</li>
[56] Fix | Delete
<li>
[57] Fix | Delete
Create modular application by dividing it up into Application Modules.</li>
[58] Fix | Delete
</ul>
[59] Fix | Delete
<font size="3" color="#8339E7">Security</font>
[60] Fix | Delete
<p>
[61] Fix | Delete
Security concerns have been front and center from the beginning. Out-of-the-box FuelPHP's Views will encode all your output to make it secure and prevent XSS attacks. If you need to allow HTML through you can mark it as safe or have it cleaned by the default included HTMLawed. FuelPHP also supports CSRF prevention with tokens, input filtering and the Query Builder will assist you in preventing any SQL injection attacks. Several security features inside the framework use functionality offered by PHPSecLib. More about Security in FuelPHP can be read in the documentation.</p>
[62] Fix | Delete
<ul>
[63] Fix | Delete
<li>
[64] Fix | Delete
Input filtering</li>
[65] Fix | Delete
<li>
[66] Fix | Delete
URI filtering</li>
[67] Fix | Delete
<li>
[68] Fix | Delete
XSS filtering</li>
[69] Fix | Delete
<li>
[70] Fix | Delete
Output encoding</li>
[71] Fix | Delete
<li>
[72] Fix | Delete
CSRF token protection</li>
[73] Fix | Delete
<li>
[74] Fix | Delete
SQL injection prevention</li>
[75] Fix | Delete
</ul>
[76] Fix | Delete
<font size="3" color="#8339E7">Oil: the power of the command line</font>
[77] Fix | Delete
<p>
[78] Fix | Delete
FuelPHP leverages the power of the command line through a utility called "oil". The utility is designed to help speed up development, increase efficiency and assist testing and debugging while being entirely optional if you are not a fan of the terminal.</p>
[79] Fix | Delete
<ul>
[80] Fix | Delete
<li>
[81] Fix | Delete
Code generation, Scaffolding and Admin generation.</li>
[82] Fix | Delete
<li>
[83] Fix | Delete
Run Database Migrations.</li>
[84] Fix | Delete
<li>
[85] Fix | Delete
Interactive Debugging.</li>
[86] Fix | Delete
<li>
[87] Fix | Delete
Tasks - useful for cron type activities like importing data and other batch or background operations.</li>
[88] Fix | Delete
</ul>
[89] Fix | Delete
<font size="3" color="#8339E7">Base classes for Controllers and Models</font>
[90] Fix | Delete
<p>
[91] Fix | Delete
FuelPHP includes some base classes to give you a flying start.</p>
[92] Fix | Delete
<ul>
[93] Fix | Delete
<li>
[94] Fix | Delete
Controller_Template - Add simple page templating functionality to your controllers.</li>
[95] Fix | Delete
<li>
[96] Fix | Delete
Controller_Rest - An easy way to create a RESTful API.</li>
[97] Fix | Delete
<li>
[98] Fix | Delete
Controller_Hybrid - Combine the two features into a single controller.</li>
[99] Fix | Delete
<li>
[100] Fix | Delete
Model_Crud - Provides all methods for CRUD operations on a single table.</li>
[101] Fix | Delete
</ul>
[102] Fix | Delete
</english-features>
[103] Fix | Delete
</languages>
[104] Fix | Delete
</soft>
[105] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function