This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

Sort of Question


avatar
acaro 0
From: -
Sort of Question

Hello
First of all sorry about my bad English

I have sort of question about ur CMS

1-I have PHP-Nuke Powered Site , with medium size of Forum Post (~ 9,000) and users (~ 16,00) I want to use Stand alone PHPBB with ur CMS is it possible (I dont want to import News and Forum Post from PHP-Nuke) ? I mean using PHPBB instead of Storyteller CMS default forum ? with same users and forum posts ?

2-where can I modify Date Function for news,reviews,polls,... ? I just look into core.php and index.php but I couldnt find it .... I wanna localize Date Function with our standard system (Jalali Date) somethin like this :
--------------------------
jdate(string, integer)
echo jdate("Y/m/d");
output :
1382/08/05
--------------------------

thanks 4 ur cool CMS

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: Sort of Question
avatar
Administrator
1340
From: Vienna, Austria
Sort of Question

Hello acaro,

Originally posted by acaro:
1-I have PHP-Nuke Powered Site , with medium size of Forum Post (~ 9,000) and users (~ 16,00) I want to use Stand alone PHPBB with ur CMS is it possible (I dont want to import News and Forum Post from PHP-Nuke) ? I mean using PHPBB instead of Storyteller CMS default forum ? with same users and forum posts ?

Yes, this is possible. However, you need to convert your PHP-Nuke phpBB installation to the standalone phpBB version first.

To integrate the CMS with phpBB 2.0:
Open the bbwrapper.php script for phpBB 2 (located at /extras/bbwrappers/phpbb20/bbwrappers.php) in an editor and change the configuration to your installation. Then copy this script to your storyteller main directory. The front end is now integrated with phpBB 2.0.

Originally posted by acaro:
2-where can I modify Date Function for news,reviews,polls,... ? I just look into core.php and index.php but I couldnt find it .... I wanna localize Date Function with our standard system (Jalali Date) somethin like this :
--------------------------
jdate(string, integer)
echo jdate("Y/m/d");
output :
1382/08/05
--------------------------

This is a small modification in the templates.

Here an example for the news and story templates:

After
<?php

global $insert;


Add
$insert[story_time] = jdate("Y/m/d",strtotime($insert[story_time])); 


Let me know if you have other questions

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.