Seems there is a problem with the site http://sourceaddons.com/. I just checked and it was down. So let's wait and see. Hope everything is ok :)
Seems there is a problem with the site http://sourceaddons.com/. I just checked and it was down. So let's wait and see. Hope everything is ok :)
My Online Store thanks to Zen Cart
If everything else fails.... read the f@#$%ing manual :)
And always remember before any change!!! Backup to be able to go back!
I figured it out. 3 files not updated from admin:
1. zencart\your admin\modules.php
case 'fballlogin':
$module_type = 'fballlogin';
$module_directory = DIR_FS_CATALOG_MODULES . 'fballlogin/';
$module_key = 'MODULE_FBALL_LOGIN_INSTALLED';
define('HEADING_TITLE', HEADING_TITLE_MODULES_FBALLLOGIN);
break;
add the appropriate case before payment
2. zencart\your admin\includes\languages\english\modules.php
define('HEADING_TITLE_MODULES_FBALLLOGIN', 'Facebook');
3. zencart\your admin\includes\languages\english.php
define('BOX_MODULES_FBALL_LOGIN', 'Facebook ALL');
After these changes the new Module appears Modules->Facebook ALL
you have missing running install query run the below query for showing module in list.
INSERT INTO `admin_pages` (`page_key`, `language_key`, `main_page`, `page_params`, `menu_key`, `display_on_menu`, `sort_order`) VALUES ('fballlogin', 'BOX_MODULES_FBALL_LOGIN', 'FILENAME_MODULES', 'set=fballlogin', 'modules', 'Y', '4');
hope this will solve your issue
thanks
I patched the sql and verified it was there ....but did not show the Modules-> Facebook All new module until doing the above changes in my previous message