- Problem: SIMGallery uses the latest Mootools version (1.2) for its javascript features. This can cause some trouble if your
template uses Mootools 1.1Solution: See”Disabling Previous Mootools Version 1.1” in document.
-
Problem: In IE8, picture can’t be enlarged.
Solution: Add following code into /components/com_simgallery/shadowbox/skin/classic/skin.css
#shadowbox_title {
border: 0px solid;
}
#shadowbox_info {
border: 0px solid;
}
Archive for the 'Joomla' Category
When we use full size image to show product instead of thumbnail, we don’t need “View Full-Size Image” link. But there is no configuration options to disable this. We have to change code to do this.
The code file is shop.products_details.php.
Or we have another easy cheating way to do this by change language file:
var $_PHPSHOP_FLYPAGE_ENLARGE_IMAGE = ”;
For other unwanted link such like “vendor information”, may do in same way.
While using VirtualMart component, we may display other than 5 items per row. Using default pagination setting as 5, 10, 15, 20, 25, 30, 50, 100, all may cause alignment problem. In this case we would like use 4, 8, 12, 16, 20, 40, 80, all for 4 items per row.
Because this is hard-coded, we have to hack it in code.
file: libraries\joomla\html\pagination.php
In function getLimitBox(), line 324:
// Make the option list
for ($i = 5; $i <= 30; $i += 5) {
$limits[] = JHTML::_(’select.option’, "$i");
}
$limits[] = JHTML::_(’select.option’, ‘50′);
$limits[] = JHTML::_(’select.option’, ‘100′);
$limits[] = JHTML::_(’select.option’, ‘0′, JText::_(’all’));
Change it to:
// Make the option list
for ($i = 4; $i <= 20; $i += 4) {
$limits[] = JHTML::_(’select.option’, "$i");
}
$limits[] = JHTML::_(’select.option’, ‘40′);
$limits[] = JHTML::_(’select.option’, ‘80′);
$limits[] = JHTML::_(’select.option’, ‘0′, JText::_(’all’));
This will make global change for everywhere.
Firstly, Create a new user for testing purposes using the JFusion Login Module.
Note: The Admin user will not sync for any software which is why we need to create a test user.
Dual Login from Joomla! side:-
In Joomla, go to Components > JFusion > Plugin Configuration >
Make sure there is a green check under ‘Dual Login’ for the phpbb3 plugin.
In Joomla, go to Components > JFusion > Plugin Configuration > Edit phpbb3
1. Put a dot ( . ) infront of ‘Cookie Domain’ example: .yourdomain.com
2. Note the name of the ‘Cookie Prefix’ so you can match it in the cookie setting in phpbb. Or you can change this to whatever you want but it must match the settings in phpbb.
3. Make sure ‘Cookie Path’ and ‘Allow Login Cookie’ have a forward slash ( / ).
In phpbb3, go to General > Server Configuration > Cookie Settings
1. Put a dot ( . ) infront of ‘Cookie Domain’ example: .yourdomain.com (The domain must match the domain used in ‘JFusion phpbb plugin’ and of course must be your actual domain.
2. Name the ‘Cookie name’ exactly the same as the settings in the JFusion phpbb plugin.
3. Make sure the ‘Cookie path’ has a forward slash ( / ).
Delete all your browser cookies.
Login with your test user.
Dual Login from phpBB side:-
As JFusion does not modify or hack the integrated software, the default component allows for a setup where when one logs into or out of the Joomla side, he/she is automatically logged into the phpBB side.
One of the JFusion community member has developed a phpBB auth plugin which allows dual login to take place even from the phpBB side i.e. when a person logs in or out of phpBB the same takes place on the Joomla side.
Follow the following steps for the same.
1. Download the file here.
2. Copy the downloaded file to {your_forum_directory}/includes/auth directory.
3. Proceed to the phpBB ACP. Search for the ‘Client Communication’ Category in the left column. Click the ‘Authentication’ under it.
4. On the ‘Authentication’ page set ‘Select an authentication method’ to ‘Db_joomla’ from the drop down box. Save the changes.
5. Dual Login from phpBB has been setup.
For any issues with phpBB dual login please post it in this thread.
Joomla 1.5.x中使用UTF-8编码,在对某些关键字(如:卡尔加里)进行所有字搜索时会产生如下错误:
Warning: preg_replace() function.preg-replace: Compilation failed: invalid UTF-8 string at offset 9 in
root\components\com_search\views\search\view.html.php on line 146
这是由于在低版本PHP中preg_split函数对UTF-8编码支持的缺陷所导致的,据此情况,用explode函数代替preg_split函数可解决这一问题,在进行中文测试、英文测试和中英文混合测试,目前证明是有效的。
root\components\com_search\views\search\view.html.php line129
$searchwords = preg_split(”/\s+/”, $searchword);
改为:
$searchwords = explode(” “, $searchword);
1. Migrate users
Related tables: mos_core_acl_aro, mos_core_acl_groups_aro_map, mos_users
mos_core_acl_aro field aro_id should be rename as id.
These tables should be truncated before import to the joomla database.
2. Migrate Zoom
This part can be transfer smoothly, the directory structure is same. Just copy the image file with directory to new site.
3. Migrate Categories, Sections, contents
These tables can be migrated smoothly.
First, enable Gmail Authentication Plugin in Joomla administrator interface. Log in with you Gmail mailbox full address and password, you will be automatically registered with Joomla.
If you want to authorize this user permission to publish, just do it as a normal user. After the user get the permission, user is able to publish new article for Windows Live Writer.

Entries (RSS)