Knowledge Base
Categories
Latest Articles
- How to resolve the issue of unable to Create or Save Draft on Contest app v4.02 on phpFox v4.6.1b5
- Fixing unable to delete videos in Ultimate Video
- Missed "Can add a new blog?"
- Error: Fatal error: require() ... C:\xampp2\htdocs\phpfox\PF.Base\include\library\phpfox\template\template.class.php
- [Social Media Importer] Add "Import Photo" menu on Advanced Photo app
- [Social Chat] Change color of Chat box
- PHP module "Multibyte String" is missing
- PHP module "PHP ZipArchive" is missing
- [phpFox] Unable to remove caches in memcache on apps of third party
- Error: PHP module 'PHP Exec is missing'
Most Viewed Articles
Featured Articles
Advanced Marketplace: Compatible with Pages app installed from phpFox Store
Updated: Oct 9, 2017
Issue: Unable to go to detail page of Pages app
Solution:
Please go and edit this file: PF.Base/module/advancedmarketplace/include/service/callback.class.php
Find the below codes:
public function getPageMenu($aPage)
{
if (!Pages_Service_Pages::instance()->hasPerm($aPage['page_id'], 'advancedmarketplace.can_access_advancedmarketplace')
) {
return null;
}
$aMenus[] = [
'phrase' => _p('advancedmarketplace.advancedmarketplace'),
'url' => Pages_Service_Pages::instance()
->getUrl($aPage['page_id'], $aPage['title'], $aPage['vanity_url']) . 'advancedmarketplace/',
'icon' => 'module/advancedmarketplace.png',
'landing' => 'advancedmarketplace'
];
return $aMenus;
}
Change to:
public function getPageMenu($aPage)
{
if (!phpFox::getService('pages')->hasPerm($aPage['page_id'], 'advancedmarketplace.can_access_advancedmarketplace'))
{
return null;
}
$aMenus[] = [
'phrase' => _p('advancedmarketplace.advancedmarketplace'),
'url' => phpFox::getService('pages')->getUrl($aPage['page_id'], $aPage['title'], $aPage['vanity_url']) . 'advancedmarketplace/',
'icon' => 'module/advancedmarketplace.png',
'landing' => 'advancedmarketplace'
];
return $aMenus;
}