agriculture portal
1.0.0
fsend_otp.php
및 csend_otp.php
파일을 열고 사용자 이름과 비밀번호를 변경합니다. function smtp_mailer ( $ to , $ subject , $ msg ){
require_once ( " ../smtp/class.phpmailer.php " );
$ mail = new PHPMailer ();
$ mail -> IsSMTP ();
$ mail -> SMTPDebug = 0 ;
$ mail -> SMTPAuth = TRUE ;
$ mail -> SMTPSecure = ' ssl ' ;
$ mail -> Host = " smtp.gmail.com " ;
$ mail -> Port = 465 ;
$ mail -> IsHTML ( true );
$ mail -> CharSet = ' UTF-8 ' ;
$ mail -> Username = " [email protected] " ; // Change it to yours email address
$ mail -> Password = " password " ;
$ mail -> SetFrom ( " [email protected] " ); // App Password, (16 character Key)
$ mail -> Subject = $ subject ;
$ mail -> Body = $ msg ;
$ mail -> AddAddress ( $ to );
if (! $ mail -> Send ()){
return 0 ;
} else {
return 1 ;
}
}
git clone https://github.com/vaishnavid0604/agriculture-portal.git
pip install -r requirements.txt
customer/cbuy_crops.php
에서 성공 URL 및 취소 URL 파일 경로를 변경하세요. $ session = Stripe Checkout Session :: create ([
' payment_method_types ' => [ ' card ' ],
' line_items ' => [[
' price_data ' => [
' product ' => ' prod_NdAYaoDLX3DnMY ' ,
' unit_amount ' => $ TotalCartPrice ,
' currency ' => ' inr ' ,
],
' quantity ' => 1 ,
]],
' mode ' => ' payment ' ,
' success_url ' => ' http://localhost/projects/agri2/customer/cupdatedb.php ' , // Change File Path
' cancel_url ' => ' http://localhost/projects/agri2/customer/cbuy_crops.php ' , // Change File Path
]);
fnewsfeed.php
에 대한 뉴스 API 키fweather_forecast.php
에 대한 OpenWeatherMap API 키customer/stripePayment/config.php
에 대한 스트라이프 API 키index.php
및 fchatgpt.php
에 대한 OpenAI API 키작물 관리 시스템 데이터세트에는 다음 기능이 포함되어 있습니다.
State_Name
, District_Name
및 Season
입력하여 해당 위치에 대한 예상 작물을 가져옵니다.N
, P
, K
, Temperature
, Humidity
, pH
및 Rainfall
을 입력하여 해당 위치에 대한 권장 작물을 얻습니다.Temperature
, Humidity
, Soil Moisture
, Soil Type
, Crop Type
, Nitrogen
, Phosphorous
및 Potassium
입력하여 해당 작물 및 위치에 권장되는 비료를 얻으세요.Subdivision
및 Year
입력하십시오.State_Name
, District_Name
, Crop_Year
, Season
, Crop
, Area
, Production
입력하여 해당 작물 및 위치에 대한 예측 수확량을 가져옵니다. 이 프로젝트는 MIT 라이선스에 따라 라이선스가 부여됩니다.