Magento extension - magento-1.7

I have created magento module as per the
Custom Module with Custom Database Table
I have replace with proper variable, but I am not able to see, on able to create.
And I am using 1.7 community edition.
but on the admin panel two blocks are displayed.
how to display only single block
and also have problem that after saving and refreshing page title get change automatically
How to we debug if any error occur in processing request

try to install module with module creator its very simple and easy,,,

Related

How to put multiple forms in the same page using joomla?

I'm using CKForms to create 3 forms, so far, they are independent components, I would like to put them in the same page.
This manual could help :
http://joomlacode.org/gf/download/frsrelease/12021/48586/manual_ckforms-EN-1.3.4.pdf
In order to use multiple instances of the same component in a joomla page, you have to check if there is a module or a plugin available.
If there is an option for a module you could publish each instance in a module position.
If there is a plugin, you could create an article (or a module in some cases) and add plugin code to load plugin instance.
Checking CKForms site I could see that there are both options.
Hope this helps

Oracle Application Express plugin development using v4.2.2

I am working on some Oracle APEX Plugin development and wonder whether the following requirement is possible.
I basically would like to be able, via a plugin, create a form with say six page items, where two of those page items might be LOVs, another two are page items are text fields, where users have to enter values and the remaining two are display items only.
Based on this form requirement, I want to be able to upload/install this plugin within other Oracle Application Express apps/schemas, so when installed within other apps, this plugin is rendered within a region and the data is stored within a table in that schema, but using the form described above.
Can this be achieved building a plugin in Oracle APEX, and if so, how?
Create a stock application with the pages and regions that need to be replicated, export that, and import it into the other workspaces that need it. Then, when developing an application, copy the regions and/or pages as necessary from that stock application.

Unable to Edit Article After System Plugin Install

I have developed a front-end system plugin for Joomla 3.0 which replaces keywords for HTML formatted objects. This works perfectly in my local lab environment but when installed on the hosted site (WHM/cPanel) it causes issues with the administration area and prevents the administrators from editing the articles.
When the administrator clicks on a article to edit the page attempts to load then appears to go back to the same page. I have developed this as a front-end plugin only so I shouldn't affect the administration area.
The problem is also preventing admin from creating anything new (news, blogs, content, menu items etc.)
As this does not happen within my lab I can only assume the issue is with some server settings which I may need to enable/disable. I have complete administrative access to both WHM, cPanel and Joomla so can change settings where ever needed...
Things I have observed:
The article URL changes from:
/administrator/index.php?option=com_content&view=article&layout=edit&id=7
to:
/administrator/index.php?option=com_content&view=article&layout=edit&id=7
when the plugin is enabled. Notice the ampersand has changed to amp;. This makes me think it could be something to do with UTF-8 character encoding has been set in MySQL to utf8general_ci.
Any pointers on configurations I may need to change would be greatly received.
Question: How do I prevent this from occurring (without removing my essential plugin).
If you create System Plugin that should work only on front-end you have to check in your plugin if current page is front-end. You can do it using this function: JFactory::getApplication()->isSite() or JFactory::getApplication()->isAdmin()
Example usage (I assume you use onAfterRender event):
function onAfterRender() {
// Exit if current page is from Administration panel
if( JFactory::getApplication()->isAdmin() ) return;
/* your plugin main code goes here*/
}
It will prevent your plugin from modifying administration panel output. If you already done it and it does check like it should to, there is no way that reason of your problems is that plugin.

adding a table to moodle database

I have some tables in moodle. how can I add a table in it?
I built my table in xmldbeditor first. Then, paste the php code in db/upgrade.php and change it's version to date (2012103000). finall I change version.php to that version. But i think it isn't created. what's the problem?
You need to create proper plugin for that the best place is local plugin folder.
if you creating a new plugin then you can add your tables in local/pluginname/db/install.xml
install.xml will only call when plugin is installed first time.
after that if want to change in structure then you need to put your code into db/upgrade.php and need to change the version and open admin/index.php
I usually back up the data in the tables I already have, uninstall the plugin and then go to the notifications page to install it again. Update.php should be called when you type in a new version number within version.php and then visit the notifications page, but when I am developing a plugin I tend not to rely on that.
Alternatively, load the table within the XMLDB editor on Moodle and click on the "[View SQL code]" link. This will generate SQL code which can be executed on PHPMyAdmin or MySQL Workbench to create the table directly.

Need to write a admin module in joomla for managing the contents from front end

I am very new to Joomla , i want to write a module for Joomla admin to create a form to add name, title and file upload in the admin side and also i want to manage the list of contents in the list as that of Joomla default behavior. Its quiet easy in Drupal like creating content type and data entered using content tyle can be moderated using views. like thats is there any free modules available in joomla.
For the front end we are providing the data through web services so we no need to worry abut the front end. only cms end with form and records moderations. Please help me out to solve this.
There are a number of extensions that allow you to do this already. They're all listed on the JED, under Forms Extensions.