|
dah cek kat term die baru kejap nih.. memang ader limitation.. so sesapa yang ader foru kat sane better bace term and condition die... sebab kemungkinan untuk ditutup tuh ader |
|
|
|
|
|
|
|
Reply #65 zacko_inc's post
zacko.....
online la....
mo mintak tunjuk ajaooo ni |
|
|
|
|
|
|
|
Reply #65 zacko_inc's post
abe zacko....online la
byk mende mo mintak tlg ajaooo |
|
|
|
|
|
|
|
Tlg terjemahkan css ni tuk aku....
aku xbape paham lah css ni sgt....
Installation
============
1. Upload to the server -- > SETEL!
--------------------
Upload the chat folder to your server into your phpBB3 forum directory:
e.g. http://example.org/phpBB3/chat/
2. Creation of database tables -- > xpaham!!
---------------------------
Execute the provided installation script by visiting the following URL with your browser:
http://example.org/phpBB3/chat/install.php
Replace "http://example.org/phpBB3/chat/" with the real URL to your chat directory.
3. Delete the installation script -- > paham!
------------------------------
Delete the file install.php from the chat directory on your server.
so..yg no.2 ni....apa ek? xpaham laaa |
|
|
|
|
|
|
|
Reply #68 polaris_girlz's post
U kena run 'install.php' tu utk create database tables... type URL ko kat situ... yg dia letak 'http://example.org/phpBB3/chat/install.php' tu sample jer... |
|
|
|
|
|
|
|
Reply #66 0001's post
nak run pakai apa ek?
kena install easyphp lah ek?
Lagi satu folder phpbb3 tu dah di pecah2kan...
maksud nyer...sy upload terus sub2 folder dia terus masuk hosting..
jadi main folder yg nama nyer :: phpBB3 :: mana ada dah....
tuk folder chat tu lak...sy masukkan terus dlm folder2 phpBB3 tu
(kira dah bcampur2 lah dgn sub2 folder phpBB3 tu...)
xpe ker? |
|
|
|
|
|
|
|
Reply #67 polaris_girlz's post
No... just type URL tu kat browser nyer addressbar...
eg. kalau yr website url is www.polaris_girlz.com, and yr chat/forum tu kat dalam directory 'forum', then ko kena type yg bawah ni dalam addressbar kat browser ko:
- http://www.polaris_girlz.com/forum/install.php
Copy the Code |
|
|
|
|
|
|
|
Reply #71 polaris_girlz's post
Yup..pasal customise CSS tu takyah buat pun takpe...dia akan guna default nyer.
Good luck! |
|
|
|
|
|
|
|
Reply #72 0001's post
saya pening laaa xjumpa ar dia nyer code.....
ke saya yg xpaham
Tlg tgk kan
/*
* @package AJAX_Chat
* @author Sebastian Tschan
* @copyright (c) Sebastian Tschan
* @license GNU Affero General Public License
* @link https://blueimp.net/ajax/
*/
AJAX Chat
=========
This is the phpBB3 integration version:
http://www.phpbb.com/
AJAX stands for "Asynchronous JavaScript and XML".
The AJAX Chat clients (the user browsers) use JavaScript to query the web server for updates.
Instead of delivering a complete HTML page only updated data is send in XML format.
By using JavaScript the chat page can be updated without having to reload the whole page.
Requirements
============
Server-Side:
- PHP >= 4
- MySQL >= 4
- Ruby >= 1.8 (optional)
Client-Side:
- Enabled JavaScript
- Enabled Cookies
- Flash Plugin >= 9 (optional)
Installation
============
1. Upload to the server
--------------------
Upload the chat folder to your server into your phpBB3 forum directory:
e.g. http://example.org/phpBB3/chat/
2. Creation of database tables
---------------------------
Execute the provided installation script by visiting the following URL with your browser:
http://example.org/phpBB3/chat/install.php
Replace "http://example.org/phpBB3/chat/" with the real URL to your chat directory.
3. Delete the installation script
------------------------------
Delete the file install.php from the chat directory on your server.
Ready! Just place a link to the chat directory on your forum.
Configuration files:
====================
AJAX Chat is fully customizable and contains two configuration files:
1. lib/config.php
--------------
This file contains the server side (PHP) settings.
2. js/config.js
------------
This file contains the client side (JavaScript) settings.
Each configuration option is explained with a comment prior to the setting assignment.
Customizing the layout:
=======================
The layout of AJAX Chat is fully customizable by using CSS (Cascaded Style Sheets).
AJAX Chat comes with a predefined set of styles. To add your own style, do the following:
1. Add a new CSS file (e.g. mystyle.css) by copying one of the existing styles from the CSS directory.
2. Edit your file (css/mystyle.css) and adjust the CSS settings to your liking.
3. Add the name of your style without file extension to the available styles in lib/config.php:
// Available styles:
$config['styleAvailable'] = array('mystyle','beige','black','grey');
// Default style:
$config['styleDefault'] = 'mystyle';
To further customize the layout you can adjust the template files in lib/template/.
Make sure you are creating valid XHTML, else you will produce errors in modern browsers.
This is due to the page content-type served as "application/xhtml+xml".
Using this content-type improves performance when manipulating the Document Object Model (DOM).
If for some reason you cannot create valid XHTML you can force a HTML content-type.
Just edit lib/config.php and set the following option:
$config['contentType'] = 'text/html';
Adjusting the language settings:
================================
AJAX Chat comes with two language file directories:
1. js/lang/
------------
This directory contains the language files used for the chat messages localization.
These are JavaScript files with the extension ".js".
2. lib/lang/
--------------
This directory contains the language files used for the template output.
These are PHP files with the extension ".php".
For each language, you need a file in each of these directories, with the language code as file name.
The language code is used following the ISO 639 standards.
The files for the english (language code "en") localization are the following:
js/lang/en.js
lib/lang/en.php
To enable a language, you need to add the language code in lib/config.php:
$config['langAvailable'] = array('en');
For the language selection you also need to add the language name:
$config['langNames'] = array('en'=>'English');
To avoid errors, you should follow these rules:
1. Make sure you encode your localization files in UTF-8 (without Byte-order mark).
2. Don't use HTML entities in your localization files.
3. Don't remove any "%s" inside the JavaScript language files - these are filled with dynamic data.
Logs:
=====
By default, AJAX Chat stores all chat messages in the database.
To access the logs you have to add the GET parameter view=logs to your chat url:
e.g. http://example.org/path/to/chat/?view=logs
If you are not already logged in, you have to login as administrator to access the logs.
The log view enables you to monitor the latest chat messages on all channels.
It is also possible to view the logs of private rooms and private messages.
You have the option to filter the logs by date, time and search strings.
The search filter accepts MySQL style regular expressions:
http://dev.mysql.com/doc/refman/5.1/en/regexp.html
To search for IPs, use the following syntax:
ip=127.0.0.1
Shoutbox:
=========
AJAX Chat is also usable as shoutbox - this is a short guide on how to set it up:
1. Shoutbox stylesheet
----------------------
Add the following line to the stylesheet (CSS) of all pages displaying the shoutbox:
@import url("http://example.org/path/to/chat/css/shoutbox.css");
Replace http://example.org/path/to/chat/ with the URL to the chat.
Modify css/shoutbox.css to your liking.
2. Shoutbox function
--------------------
Add the following function to your PHP code:
<?php
function getShoutBoxContent() {
// URL to the chat directory:
if(!defined('AJAX_CHAT_URL')) {
define('AJAX_CHAT_URL', './chat/');
}
// Path to the chat directory:
if(!defined('AJAX_CHAT_PATH')) {
define('AJAX_CHAT_PATH', realpath(dirname($_SERVER['SCRIPT_FILENAME']).'/chat').'/');
}
// Validate the path to the chat:
if(@is_file(AJAX_CHAT_PATH.'lib/classes.php')) {
// Include Class libraries:
require_once(AJAX_CHAT_PATH.'lib/classes.php');
// Initialize the shoutbox:
$ajaxChat = new CustomAJAXChatShoutBox();
// Parse and return the shoutbox template content:
return $ajaxChat->getShoutBoxContent();
}
return null;
}
?>
Make sure AJAX_CHAT_URL and AJAX_CHAT_PATH point to the chat directory.
2. Shoutbox output
------------------
Display the shoutbox content using the shoutbox function:
<div style="width:200px;"><?php echo getShoutBoxContent(); ?></div>
Socket Server:
==============
Using the AJAX technology alone the chat clients have to permanently pull updates from the server.
This is due to AJAX being a web technology and HTTP being a stateless protocol.
Events pushed from server-side need a permanent or long-lasting socket connection between clients and server.
This requires either a custom HTTP server (called "comet") or another custom socket server.
AJAX Chat uses a JavaScript-to-Flash brigde to establish a permanent socket connection from client side.
The JavaScript-to-Flash brigde requires a Flash plugin >= 9 installed on the user browser.
Clients without this requirement will fall back to pull the server for updates.
The socket server coming with AJAX Chat is implemented in Ruby.
You need to be able to run a Ruby script as a service to run the socket server.
To be able to start the service, the script files in the socket/ directory have to be executable:
$ chmod +x server
$ chmod +x server.rb
"server" is a simple bash script to start and stop a service.
"server.rb" is the ruby socket server script.
"server.conf" is a configuration file - each setting is explained with a comment.
To start the service, execute the "server" script with the parameter "start":
$ ./server start
This will create two additional files:
"server.pid" contains the process id of the service.
"server.log" is filled with the socket server log.
To monitor the socket server logs, you can use the "tail" command included in most GNU/Linux distributions:
$ tail -f server.log
By default only errors and start/stop of the server are logged.
To get more detailed logs configure the log level by editing the configuration file.
To stop the service, execute the "server" script with the parameter "stop":
$ ./server stop
If the socket server is running, you have to enable the following option in lib/config.php:
$config['socketServerEnabled'] = true;
This tells the server-side chat script to broadcast chat messages via the socket server.
Chat clients will establish a permanent connection to the socket server to listen for chat messages.
By default only local clients (127.0.0.1,::1) may broadcast messages.
Clients allowed to broadcast messages may also handle the channel authentication.
If your socket server is running on another host you should set the broadcast_clients option to the chat server IP.
Using the socket server increases response time while improving server performance at the same time.
nak guna code mana? code sbox tu ker
rasanyer guna yg sbox tu kan?
Sumber asal : https://blueimp.net/ajax/
[ Last edited by polaris_girlz at 28-3-2008 09:16 PM ] |
|
|
|
|
|
|
|
Reply #73 polaris_girlz's post
Yes, guna codes kat part SHOUTBOX tu. Make sure AJAX_CHAT_URL and AJAX_CHAT_PATH point to the chat directory.
Satu lagi make sure ko guna codes kat section [2. Shoutbox output] - kalau tak, tak nampak 'chat' ko tu kat page tu.
Good luck. |
|
|
|
|
|
|
|
Reply #74 0001's post
errkkk xpaham la....
slow2 skit ek
1. Shoutbox stylesheet
----------------------
Add the following line to the stylesheet (CSS) of all pages displaying the shoutbox:
@import url("http://example.org/path/to/chat/css/shoutbox.css";
Replace http://example.org/path/to/chat/ with the URL to the chat.
Modify css/shoutbox.css to your liking.
yg ni nak buat camner?
xpaham la.... |
|
|
|
|
|
|
|
Reply #75 polaris_girlz's post
Utk tiap2 page, ada CSS stylesheet kan? In this case, kat page yg akan ada shoutbox/chat tu, ko tambah line tersebut kat stylesheet page tersebut. Itu adalah supaya stylesheet tersebut akan ada juga styles dari shoutbox ko tu.
Yang dia suruh ko replace tu is URL utk ke shoutbox/chat ko tu... "http://example.org/path/to/chat/" tu di replace ngan URL shoutbox/chat ko... eg. "http://www.polaris_girlz.com/chat/" ... so akhirnya akan jadi "http://www.polaris_girlz.com/chat/css/shoutbox.css" camtu. |
|
|
|
|
|
|
|
Reply #77 polaris_girlz's post
No... bukan URL jer, ko kena tepek the WHOLE line cam bawah ni:
- @import url("http://www.polaris_girlz.com/chat/css/shoutbox.css");
Copy the Code |
|
|
|
|
|
|
|
Reply #78 0001's post
adeh.....
skang ni kena letak dua2 url tu ker?
letak kat templates phpbb tu?
kat mana2 pon xpe?
ni sbnrnya edit css yg kat folder chat tu kan?
bkn edit kat template css tu kan
[ Last edited by polaris_girlz at 28-3-2008 10:37 PM ] |
|
|
|
|
|
|
| |
|