reqiure ไฟล์ไม่ผ่าน เมื่ออยู่บนเซิฟเวอ กำลังศึกษา การเขียนโปรแกรมบนเฟสบุ๊ค ติดตรงที่ Include ไฟล์
ลอง include(" ");
ถ้าไม้ได้ค่อยว่ากันใหม่
Date :
2010-04-28 12:09:59
By :
Manussawin
มี error อะไร หรือ ป่าวครับ
Date :
2010-04-28 12:47:28
By :
kaos
ลอง Include แล้วไม่ได้ครับผม
มัน ECHO มาถึง 2 เองครับ
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<?php
echo "1";
/**
* Set the configuration settings for Facebook
*/
$facebook_config['debug'] = true;
$facebook_config['api_key'] = 'xxxx';
$facebook_config['secret_key'] = 'xxxx';
/**
* include the Facebook client library
*/
echo "2";
//require_once('src/facebook.php');
include("src/facebook.php");
/*
* Set up the facebook object
*/
echo "3";
$facebook = new Facebook($facebook_config['api_key'],
$facebook_config['secret_key']);
/**
* Ensure the user has logged on to Facebook
*/
$user = $facebook->require_login();
/**
* Make an API call to call get a user's friends using the PHP library's
* library
*/
$friends = $facebook->api_client->friends_get();
echo "<pre>Friends:" . print_r($friends, true). "</pre>";
$friend = array_slice($friends, 0, 100);
foreach ($friends as $friend) {
$count = $count + 1;
echo $count;
$IDUser[$count] = $friend;
}
?>
</body>
</html>
Code (PHP)
Code (PHP)
Date :
2010-04-28 18:07:41
By :
monza
ดันอึ๊บๆ
Date :
2010-04-29 09:11:18
By :
monza
นี่คือ ERROR ครับผม
[29-Apr-2010 09:30:08] PHP Fatal error: Uncaught exception 'Exception' with message 'Facebook needs the CURL PHP extension.' in D:\domains\test.com\PHP_test\SocialEngine\src\facebook.php:4
Stack trace:
#0 D:\domains\test.com\PHP_test\SocialEngine\index.php(27): include()
#1 {main}
thrown in D:\domains\test.com\PHP_test\SocialEngine\src\facebook.php on line 4
Date :
2010-04-29 09:30:48
By :
monza
คุณใช้ extension CURL ของphp ใช่ไหมครับ คุณลอง
Code (PHP)
print php_info();
ดูว่า server ได้มีการเปิด extension ตัวนี้หรือป่าวนะครับ
Date :
2010-04-29 09:49:53
By :
kaos
ลองใส่ CODE ตามครับ ERROR
[29-Apr-2010 10:54:08] PHP Fatal error: Call to undefined function php_info() in ....
Date :
2010-04-29 10:51:28
By :
monza
PHP Version 5.1.1
System Windows NT DS-06 5.2 build 3790
Build Date Nov 29 2005 01:14:17
Configure Command cscript /nologo configure.js "--enable-snapshot-build"
Server API Apache 2.0 Handler
Virtual Directory Support enabled
Configuration File (php.ini) Path D:\apache\bin\php.ini
PHP API 20041225
PHP Extension 20050922
Zend Extension 220051025
Debug Build no
Thread Safety enabled
Zend Memory Manager enabled
IPv6 Support enabled
Registered PHP Streams php, file, http, ftp, compress.zlib, https, ftps
Registered Stream Socket Transports tcp, udp, ssl, sslv3, sslv2, tls
Registered Stream Filters convert.iconv.*, string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, zlib.*
This program makes use of the Zend Scripting Language Engine:
Zend Engine v2.1.0-dev, Copyright (c) 1998-2005 Zend Technologies
Date :
2010-04-29 11:25:22
By :
monza
รบกวนขอถามว่าดูที่ตรงไหนอะครับ มันยาวววเป้นพรืด มึนตึ๊บไม่เคยเขียน PHP
Date :
2010-04-29 11:27:51
By :
monza
กด Crtl +f ค้นหา ว่าเจอ CURL หรือป่าว
Date :
2010-04-29 11:43:11
By :
kaos
ไม่เจอครับผม
Date :
2010-04-29 11:58:44
By :
monza
ต้องแจ้งทาง server แล้วครับ
Date :
2010-04-29 12:06:53
By :
kaos
server ของบริษัทผมเองอะครับ ต้องแก้ไขอะไรยังไงอะครับ
Date :
2010-04-29 12:09:03
By :
monza
ไปที่ php.ini
แล้ว extension=php_cURL.dll เอา ; ออกครับ
Save แล้วรีสตาร์ท apache ใหม่ ก็ใช้งานได้ครับ
Date :
2010-04-29 12:49:24
By :
kaos
ไปหาไฟล์ htdacess อัพขึ้นไปด้วยครับ
Date :
2010-04-30 01:06:39
By :
Manussawin
Load balance : Server 02