- Видео 20
- Просмотров 54 164
DJ Tech Blog
Индия
Добавлен 11 фев 2010
Hello viewers, I am Zoho consultant and I make videos on front end development, php and Zoho apps like CRM, Creator, Books, Inventory, Flow, Forms, Projects, Zoho Desk etc. I also integrate third party apps with Zoho.
How tro create or update zoho projects with custom fields
In this video I have shown how to create a zoho project with custom field. The method used in the video can be used to update a zoho projects also with custom field.
The api I have used is
www.zoho.com/projects/help/rest-api/projects-api.html#alink3
The Complete code:
deal_res = zoho.crm.getRecordById("Deals", dealid);
deal_name = deal_res.getJSON("Deal_Name");
// info deal_name;
res = invokeurl[
url: "projectsapi.zoho.com/restapi/portal/807854719/projects/customfields/"
type: GET
connection: "zohopr"
];
// info res;
var = Map();
var.put("name","Test Project");
var.put("UDF_CHAR1", deal_name);
res = invokeurl[
url: "projectsapi.zoho.com/restapi/portal/807854719/projects/"
type: POST
parameters: var
c...
The api I have used is
www.zoho.com/projects/help/rest-api/projects-api.html#alink3
The Complete code:
deal_res = zoho.crm.getRecordById("Deals", dealid);
deal_name = deal_res.getJSON("Deal_Name");
// info deal_name;
res = invokeurl[
url: "projectsapi.zoho.com/restapi/portal/807854719/projects/customfields/"
type: GET
connection: "zohopr"
];
// info res;
var = Map();
var.put("name","Test Project");
var.put("UDF_CHAR1", deal_name);
res = invokeurl[
url: "projectsapi.zoho.com/restapi/portal/807854719/projects/"
type: POST
parameters: var
c...
Просмотров: 123
Видео
Integrate Zoho CRM with Google sheets
Просмотров 3911 месяцев назад
In this video I am going to show you. How we can integrate Zoho CRM with Google Sheet to populate the records of any module into the sheets. There will be multiple columns in the sheet for every field of the records that we want to send to the sheets. djtechblog.com/google-sheets-integration-with-zoho-crm/ The Google sheets API. developers.google.com/sheets/api/samples/writing#append_values Thi...
Zoho CRM and Projects integration
Просмотров 44Год назад
#zohocrm #zohoprojects #zohocustomization @ZohoExpert #zohoexpert
Zoho CRM integration with website(non wordpress sites)
Просмотров 326Год назад
Video I have shown how to integrate website with zoho crm. #zohocrm #zohotutorial #zohocustomization #zohoexpert
Refresh Browser DOM every second to refresh the time in a react App : react Tutorial # 6
Просмотров 592 года назад
In this video I have explained how to refresh the browser dom every second to update the time in a react app. #react-tutorial djtechblog.com/
Make OTP expire after 5 minutes or more
Просмотров 2,6 тыс.2 года назад
Refer below link for code: djtechblog.com/php/make-otp-expire-in-5-mins/ Making otp expire after certain minutes is very important from security of point of view. In order to generate random otp we we use php rand() function. Though, this function generates random number but it is not secured. The otp can be manipulated or guessed by the craker given a considearble amount of time. So, we need t...
How to send OTP sms in php using sms gateway from localhost or any live server
Просмотров 8 тыс.2 года назад
For php code you can visit this link ... djtechblog.com/php/otp-sms-in-php-for-mobile-number-verification/ How to send OTP sms in php using sms gateway from localhost or any live server How to verify mobile number by sending otp SMS. Basically there are two ways we can verify a user's online identity. Mobile Number verification Email verification OTP sms in php is used for mobile number verific...
React Tutorial #4: How React render its elements
Просмотров 122 года назад
How React render its elements React JS tutorial.
React Tutorial #5 : Add Bootstrap to React App
Просмотров 302 года назад
We will add bootstrap to our React project
React Tutorial #3 : How to navigate in React app - React Router Dom
Просмотров 482 года назад
To navigate within a react app we need an extra library called react router dom. It helps to navigate by storing the current location in the browser's address bar using clean URLs and navigates using the browser's built-in history stack. React router dom comes with three important components BrowserRouter, Routes, Route. How to navigate within a react app Introduction to React Router
React Tutorial #2 React JSX
Просмотров 222 года назад
This is a beginner-level tutorial for React JSX where we learn how to work with React JSX.
React Tutorial #1 - How to create and edit a basic React App
Просмотров 382 года назад
This is a beginner tutorial to start learning the javascript framework React. It is extensively used to build the front end and it is trendy and easy to learn.
Install php8 on apache server in windows10 | Error Rectified
Просмотров 3623 года назад
If you are trying to install php8 in windows 10 on apache server and geeting an error like "Cant locate API module structure" php8_module. Then this video is for you. Steps for installing php7 and php8 is almost similar, only last step is different. I have explained the last step here only. For full explanation watch How to install php7 in windows 10 on apache server. www.djtechblog.com/server-...
Reorder column using Bootstrap 4 order class | Learn to make responsive website
Просмотров 1,2 тыс.3 года назад
We generally make three columns in a website within a row. The column in a website are scanned from left to right and in mobile it appears in top to bottom. so, the middle column in the desktop version appears below in the mobile. But to change this order in mobile we use bootstrap order class. For details see, www.djtechblog.com/html-css/reorder-column-with-bootstrap-order-class/ www.djtechblo...
Install php7 on apache http web server in windows 10
Просмотров 2093 года назад
I have installed and configured php to run on apache web server in windows machine. For details refer to, www.djtechblog.com/server-config/install-php7-on-apache/ www.djtechblog.com/
Host multiple website on apache http web server on Ubuntu | IP based virtual host configuration
Просмотров 3,5 тыс.4 года назад
Host multiple website on apache http web server on Ubuntu | IP based virtual host configuration
How to host multiple website on apache http server on Ubuntu | Configure Name based Virtual Host
Просмотров 20 тыс.4 года назад
How to host multiple website on apache http server on Ubuntu | Configure Name based Virtual Host
How to install apache http server on Ubuntu and host your website locally | Hindi
Просмотров 9 тыс.4 года назад
How to install apache http server on Ubuntu and host your website locally | Hindi
Host multiple websites in apache http server | Name based vs IP based virtual host setup | Hindi
Просмотров 4,6 тыс.4 года назад
Host multiple websites in apache http server | Name based vs IP based virtual host setup | Hindi
How to install apache server on windows 10 manually | Hindi
Просмотров 3,9 тыс.4 года назад
How to install apache server on windows 10 manually | Hindi
Is porting good or having virtual domain i open tow ports for two swebsite but it slowing my server bandwidth
Make video for tomcat
sir while starting the my Apache it getting mpm load issue, AH00534: httpd: Configuration error: No MPM loaded. May 02 21:57:38 lumex systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE , so can you please help on this
what if my both the sites need different php versions to run ??
You need to configure the htaccess file then separately for each site.
could you please telll me how to add external css file and js file for hosting our website.
Can you elaborate a little what kind of website is this.
@@debabrattaj actually I made a recipe web application project with html css and javascript and now I want run this project locally in Ubuntu 22.04 os.so how can I do it
@@Nitishkumar-o6f7h You need to keep all the files in document root(watch from 9:00) and make the required changes in httpd.conf to make it point to your index file of the project.
I see that it doesn't work for you. When you enter mysecenodwebsite2 you should have a page with website2 message Why having 2 different names for the same ressource ? It's not the goal
Plss give source code
The link to the source code is in the description.
why secondwebsite is not working in your browser
this method not works for me
Helpful
Mine did not work at all because I am using an AWS ec2 instance, so I think they have created preconfigured Images according to their needs, which makes it difficult and confusing for these types of set ups in the Virtual Hosts files... etc SO CAN YOU MAKE A TUTORIAL FOR THIS SAME PURPOSE ONLY USING AWS EC2 INSTANCE / DEBIAN LINUX??
Can't even see clearly. Make sure you maximize the terminal in upcoming videos.
Hi 1. appachi is done, 2. PHP is done, 3. Next SQL manual installation in windows with configuration appachi
Thank you very much my friend! Awesome way of explaining!
Sir can you please provide your email id or something I really need help I run your code from your website sending email otp verification and it was working properly then suddenly it stops sending emails just showing email send successfully please help vidur sir. I am trying to solve this from many days it's very important for my project please help sir
Check if mail is going to spams
how to create sender template
folow this link. djtechblog.com/01-21/how-to-send-bulk-sms-with-textlocal/
Thanks. How to create Sender template?
djtechblog.com/01-21/how-to-send-bulk-sms-with-textlocal/
if using virtual box, how to access that websites from PC Host(windows 11)?
could you please make a video on how to deploy dotnet code in the apache server with multiple websites hosting
informtive. thanks.
Thank you for sharing this video 👍
Welcome. If you want video in any specific topic let me know.
sir php website creat karni hai
Budget kitna hai?
Good
thanks for sharing please make this video on hindi
Surr
good tuto thanks
How to limit concurrent users to maximum 2 only?
how to change hosts server on android
Easy to understand, thanks👍
Glad it helped!
this method has worked for me. Thanks
You're welcome!
Good job
Good job
Thanks
practical one! liked it
Brother i want to host my website from home on web, with domain name should it work?? Or may i need to create dns server
No it will not work, because you need to have a static IP address to host a website, in home internet we have dynamic IP which will not work.
if you can open port 80 and 443 on your router to WAN then its possible
Does it work globally or locally? Can you view that website from other devices?
It will work locally only, but if you have Internet connection with static ip you can access it from anywhere. Note: In home we have dynamic IP.
thank you :)
Vera level
This has worked great for me. I have my second site up and running. Thanks!
Very Nice Video ! Helpful !
I can access my server using the localhost only even I have provided server name according to your video. Can you tell me what is the problem. How can I access using server name?
what server name have you chosen? you cant just set any server name expect it to listen. It is best to chose server name as example1.com and example2.com for demo. if still dont work refresh cache.
Sir contact number
This video contains a lot of errors and misleading content. Auther should clear his system before making video
Pls let me know what misleading content you have found in the video?
@@debabrattaj didn't you realize? Watch it again. If still you don't realize, format your computer first, then do as it is instructed in your computer , and compare what is in video and what you see in your computer. Here Wamp or xampp already installed in this PC. localhost showed xamp home page, not apache home page. It mislead me. I thought I was wrong, in fact this video is wrong.
@@pranaya_prajnya you find it misleading , it's true. I didn't notice it. But the process of installation is right.
Woohoooo.....what about PHP 7 make tutorials on it..
After a long time i heard this voice 😜🙃🙃
let me know if you want video on any specific topic.