I am using magento 1.7.2 version i am working on payment gateway a strange problem. please help me to out this problem here is following my config.xml
<?xml version="1.0"?>
<config>
<modules>
<Infeenty_InfeentyInvoice>
<version>1.0.0</version>
</Infeenty_InfeentyInvoice>
</modules>
<global>
<models>
<infeentyinvoice>
<class>Infeenty_InfeentyInvoice_Model</class>
</infeentyinvoice>
</models>
<resources>
<infeentyinvoice_setup>
<setup>
<module>Infeenty_InfeentyInvoice</module>
<class>Mage_Eav_Model_Entity_Setup</class>
</setup>
<connection>
<use>core_setup</use>
</connection>
</infeentyinvoice_setup>
<infeentyinvoice_read>
<connection>
<use>core_read</use>
</connection>
</infeentyinvoice_read>
<infeentyinvoice_write>
<connection>
<use>core_write</use>
</connection>
</infeentyinvoice_write>
</resources>
<blocks>
<infeentyinvoice>
<class>Infeenty_InfeentyInvoice_Block</class>
</infeentyinvoice>
</blocks>
<helpers>
<infeentyinvoice>
<class>Infeenty_InfeentyInvoice_Helper</class>
</infeentyinvoice>
</helpers>
</global>
<default>
<payment>
<infeentyinvoice>
<model>infeentyinvoice/infeentyinvoice</model>
<countries>SE,DE,NL</countries>
<order_status>pending</order_status>
<title>Infeenty Invoice</title>
<active>1</active>
<payment_action>authorize</payment_action>
</infeentyinvoice>
</payment>
<payment_action>authorize</payment_action>
</default>
<adminhtml>
<translate>
<modules>
<Infeenty_InfeentyInvoice>
<files>
<default>Infeenty_InfeentyInvoice.csv</default>
</files>
</Infeenty_InfeentyInvoice>
</modules>
</translate>
</adminhtml>
<frontend>
<routers>
<infeentyinvoice>
<use>standard</use>
<args>
<module>Infeenty_InfeentyInvoice</module>
<frontname>infeentyinvoice</frontname>
</args>
</infeentyinvoice>
</routers>
<translate>
<modules>
<Infeenty_InfeentyInvoice>
<files>
<default>Infeenty_InfeentyInvoice.csv</default>
</files>
</Infeenty_InfeentyInvoice>
</modules>
</translate>
</frontend>
</config>
strange issue might be did something wrong in this xml when i use
$this->getLayout()->createBlock('infeentyinvoice/form') then its always return false
i have create block file Form.php under Infeenty/InfeentyInvoice/Block and class is Infeenty_InfeentyInvoice_Block_Form but still i am not getting this block work
app/etc/modules/Infeenty_InfeentyInvoice.xml? Did you clear the cache after creating the module?