Showing posts with label Website. Show all posts
Showing posts with label Website. Show all posts

11 May 2023

31 May 2017

How to integrate PayPal with my website?

How to integrate PayPal with my website?

https://www.youtube.com/watch?v=NUXtFb1KwPQ


http://www.codingcapital.com/webpreneur/ecommerce/3-ways-to-integrate-paypal-with-my-website/


There are 3 ways.

If you want to receive payments for the goods and services that your website sells on your site, one of the most popular ways to do this is with PayPal. PayPal offers free service for your site integration. 
PayPal has website integration tools that you can try such as setting up purchase buttons on your site.  From these tools, you will be provided with some HTML code that you can put int your web pages. 
If you are not familiar with basic code or html, you can hire a web designer or developer to assist with PayPal code integration on your site.
PayPal is the web’s most popular and most used payment service, so if you integrate your website with Instant Payment Notification (IPN) service by Paypal, you can generate more revenue from your website.  There are many ways to integrate PayPal with your website.  Some of them include the following.

 1.  Simple Integration

As in all integration processes, you need to sign up to a PayPal account if you do not have one already. You need to provide your email address, your name, your address, your date of birth and your phone number.
When you log in to your PayPal account, you will find the Merchant Service tab.  Click this tab and you can access the Website Payments Standard screen. This method is the simplest way to integrate Paypal with your website.

 2.  API (Application Programming Interface) Integration

PayPal’s Direct Payment APIs allow you to experience your own online check out.  And this is in addition to having a gateway and a merchant account.  You have control on what your customer sees – from brand, colors, layout and page and language sequences.  API also works with other shopping carts.
But this integration is more complex and will require you to hire a web development company like Coding Capital so that you can get the customized checkout process your business needs to generate higher revenue and appear more professionally and trustworthy to potential customers.

3.  Gateway Integration

You can use gateway integration through Payflow Pro with any Internet Merchant Account.  Credit card transactions can be processed online and it has everything you need to connect with the aforementioned account.
There are other ways to integrate PayPal to your website like in single item purchases.  One recommendation for this type of purchase is the Buy Now Button.  With this button by PayPal, there will be no need for a shopping cart, and integrating it with your website is a simple process.  Your customers can pay you much faster than by money orders or checks.

Lastly …

Paypal is the most trusted of all payment gateways, so considering accepting payments through PayPal to your website is highly recommended.  You will not be charged any set up fee, and you can easily integrate it with your website. PayPal manages hundreds of million accounts and operate in 17 currencies and in more than 90 markets. 
Payments through PayPal are very secure and it accepts all major credit cards.  PayPal payment buttons just need a little configuration in your account (just like plug-n-play) and paste the HTML code in the web pages.  In cases of refunds, you won’t have any issues with PayPal.  If you refund your client, PayPal will refund also the transaction fee.

16 November 2016

Google website certificate problem

Symptom:

1. When you go to Google website, it displays a certificate problem, and 3 options. Among the 3 options, there is 'Continue to ...'. If you click 'Continue to ...', then you can view Google website normally.

2. When you turn your computer on, it prompts you to press F1. If you press F1, then your computer boots normally.

3. System time is incorrect.

Solution:

Synchronise your system time. After your system time becomes correct, both symptom 1 and 2 are gone.

17 February 2016

MP4 Video which can be played universally - on Apple, Android, Computers

H.264 video (up to 720p, 30 frames per second; main profile level 3.1 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats)

11 February 2016

MP4 Videos not Playing on Mobile Phones

Supporting Mobile Video on Your Site

https://www.jwplayer.com/blog/supporting-mobile-video-on-your-site/


Update: JW7 is now available. Check it out here.
One of the most often asked questions when discussing transcoding is How do I support iPads, iPhones and Android devices?. The goal of this blogpost is to remove some of the mystery behind transcoding for devices and present a solution that will work across a wide range of them.

The Problem

Many popular video formats, like FLV or WMV, will not play on devices like the iPhone. Even videos encoded in MP4 may not play back, resulting in the following screen:
iPhone Error
Error playing video on an iPhone
The underlying issue is processing power. Today’s desktop computers and laptops are powerful enough to decode just about any video format and size. Sometimes they can do it in hardware, meaning the graphics card (GPU) decodes the video. If a format is not supported by the hardware, desktops can fallback to software decoding. At that point, the player software itself will decode the video frames. Software decoding is slower than hardware decoding, but either option works.
Phones, netbooks and tablets on the other hand are not that powerful yet. Most are only able to do hardware decoding of video. It means the range of supported formats is narrowed down to what the GPU chip supports. Additionally, devices generally have an upper limit on the frame size of the video. For example, while the iPhone 4 supports HD video (1280×720 pixels), older models only supported video up to about 640×360 pixels.

The Solution

Unfortunately, you cannot support every device under the sun with a single file. It cannot be done. What you can do, however, is support a wide range of devices with a single file. We call this targeting the least common denominator. This is what we do within our own video platform. The files we render are targeted at the following devices:
  • All iPad, iPhone and iPod Touch models (iPhone 3G, iPad 1 and above)
  • All Android 2/3/4 phones and tablets (testing HTC Legend, Samsung Galaxy 1, Google Nexus 1 and above)
Devices
Some devices that can play our videos (excluding the pencil)
A video encoded for these devices will also work on desktops/notebooks (Flash), on many other phones (e.g. Blackberries, Nokias, Windows Phones) and on settops like PS3, XboX, Roku, Boxee and AppleTV. The specifications of such a video are as follows:
  • Container format: MP4, headers at the beginning of the file (for seeking)
  • Video format: H.264, Main profile, 640×360 pixels, around 500/900 kbps (kilobits per second)
  • Audio format: AAC, Low Complexity profile, 44.1 kHz stereo, 96 kbps

Recommended Implementation

If you don’t have a tool for encoding to MP4/H264/AAC, you should download Handbrake. It is free, works on cross-platforms and produces high-quality results. Handbrake has a built-in present called iPhone & iPod Touch, which has exactly the right settings. Note that Handbrake supports a constant quality feature, which offers smaller files than a target size or target bitrate.
For embedding the video, you should use a recent version (6+) of the JW Player. In version 6, we released a download mode fallback, which allows devices that don’t support Flash or HTML5 to still play the video with their built-in media player. Here’s how the embed code looks with the default setup (Flash » HTML5 » Download):

jwplayer("container").setup({
file: "/static/video-360p.mp4",
height: 360,
width: 640
});

The end result can be seen below; a good quality video that plays back on any device with a single embed code:
Resulting videoplayer that works on all desktops & devices.
Note you can enhance this video even further by adding an HD quality video version. JW Player will enable this on select devices. See the HD Video Everywhere post for more info.

How to build live-chat?

Go to http://www.tawk.to

Create a free account. Get a piece of code. Put the code before </body> on a web page. When you view the page, you will see an ‘Online’ green tab on the page at the bottom-right corner. When a person clicks the Online green tab, you will hear ringing on your computer. You could chat with the person.

21 August 2015

How to download a video from a website?

1. You-Get

https://zhuanlan.zhihu.com/p/36714382



2. ffmpeg - the best!

https://www.ostechnix.com/20-ffmpeg-commands-beginners/


3. https://rg3.github.io/youtube-dl/

4. Bigasoft Video Downloader Pro

5. Install RealPlayer.

6. Well in case you ever need to download online videos and it doesn’t work with a regular video downloader, you can check audials moviebox. it has several recording options, including screen recording which works with pretty much any video (here you can find step by step instructions on how it can be used: http://audials.com/en/how_to_record_stream_capture_music_videos_movies_from/hulu.html). and it does a pretty good job in general.

29 January 2014

How to change physical path of a website in IIS?

In IIS Manager,
Sites | Default Website, right-click, choose Manage Website | Advanced Settings... | Physical Path.

03 March 2013

Forgot Drupal 7 site administrator password

http://drupal.org/node/1023428

Resetting the administrator password with sql-query (Drupal 7)

 

Last updated February 25, 2013. Created by Heine on January 11, 2011.
Edited by LeeHunter, batigolix, emag, negativefix. Log in to edit this page.
When, in Drupal 7, the password for user 1 (the administrator) is lost and the email notification or drush methods don't work, it is possible to set the password via a database query.
But first, you have to generate a password hash that is valid for your site.
Execute the following commands from the command line, in the Drupal root directory:
./scripts/password-hash.sh newpwd
or for Windows:
php .\scripts\password-hash.sh newpwd
NOTE: If you receive an error that PHP is not a recognized command then you need to add php to the system PATH. For example: ;c:\wamp\bin\php\php5.3.8\ . This will then work in the Command Prompt. Once completed right click in Command Prompt window to mark the text and copy the hash code.
Of course, change "newpwd" to the desired password. If the password contains special characters such as a space, * or ? you must escape them, or wrap the password in quotes appropriate for the shell used.
The script will output a password hash that is valid for the site. Copy this to the clipboard or write it down somewhere; you'll need it for the next step. Be careful not to include more or less characters as the hash. These hashes look somewhat like $S$CTo9G7Lx28rzCfpn4WB2hUlknDKv6QTqHaf82WLbhPT2K5TzKzML
Then execute the following query on the Drupal database:
UPDATE users SET pass ='$S$CTo9G7Lx28rzCfpn4WB2hUlknDKv6QTqHaf82WLbhPT2K5TzKzML' WHERE uid = 1;
To execute this query it will be necessary to login to the database. This is typically done through the command line or through a GUI interface such as phpMyAdmin.

Clear flood table

If you have reset password either by using script or "request new password" but still receive "Sorry, there have been more than 5 failed login attempts for this account. It is temporarily blocked." then you may delete the corresponding entry in flood table.
This flood table records username and ip which has failed login attempts.

Reset using a PHP-file

No command-line access? You can reset the password using a PHP-file as well, but keep in mind that this opens a arises a huge security issue if not handled correctly.

Pass root param

If you're on windows and you want to pass the root param to the script, you'll need this:
php -f password-hash.sh -- --root "C:\wamp\www\" newp@ss
Anything that follows the double-dash will be passed to password-hash.sh.

05 July 2012

Can open some websites, but can not open some other websites

One of the Bell DNS servers have problems.

On our DNS server, choose e.g. NTS3850SERVER / Forwarders, right-click on Forwarders, then choose Properties. On the Forwarders tab, add another Bell DNS server IP address (a working one), and 'Up' it to the top, then we can open any website now.