• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How To Install WeBid Auction on CentOS

1091

How To Install WeBid Auction on CentOS

WeBid is an open source and cross platform auction software written in PHP. WeBid is released under the terms of the GNU General Public License (GPL). WeBid can be used for creating auction websites. The installation of WeBid is simple and is covered in this article.

To Install WeBid

Before installing WeBid you need to have LAMP server installed in your system. Once the LAMP server is installed, continue your installation of WeBid.

It is essential to download the WeBid installation package, so use the following command for the same purpose.

[root@linuxhelp1 Desktop]# wget http://jaist.dl.sourceforge.net/project/simpleauction/simpleauction/WeBid%20v1.2/WeBid-1.2.zip -O webid.zip
--2016-12-18 13:21:59--  http://jaist.dl.sourceforge.net/project/simpleauction/simpleauction/WeBid%20v1.2/WeBid-1.2.zip
Resolving jaist.dl.sourceforge.net (jaist.dl.sourceforge.net)... 150.65.7.130, 2001:df0:2ed:feed::feed
Connecting to jaist.dl.sourceforge.net (jaist.dl.sourceforge.net)|150.65.7.130|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 11121338 (11M) [application/octet-stream]
Saving to: ‘ webid.zip’ 
100%[======================================================================> ] 11,121,338  74.3KB/s   in 88s   
2016-12-18 13:23:27 (124 KB/s) - ‘ webid.zip’  saved [11121338/11121338]

Now,extract the downloaded package with the help of the following command.

[root@linuxhelp1 Desktop]# unzip webid.zip
Archive:  webid.zip
6ba88283ce90e4f634b5dac234ee32f9e2d4bb52
   creating: WeBid/
  inflating: WeBid/.gitignore       
&hellip 
&hellip 
&hellip 
inflating: WeBid/yourbids.php     
  inflating: WeBid/yourfeedback.php 
  inflating: WeBid/yourmessages.php 

Once the package is extracted move it to the document root directory on your server as follows.

[root@linuxhelp1 Desktop]# mv WeBid/ /var/www/html/linuxhelp1.com/

Now change the ownership for the directory

[root@linuxhelp1 Desktop]# chown -R apache:apache /var/www/html/linuxhelp1.com

Next Configure MariaDB server as follows.

[root@linuxhelp1 Desktop]# mysql -u root -p
Enter password:
Welcome to the MariaDB monitor.  Commands end with   or g.
Your MariaDB connection id is 2
Server version: 5.5.50-MariaDB MariaDB Server
Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.
Type ' help '  or ' h'  for help. Type ' c'  to clear the current input statement.
MariaDB [(none)]>  SET GLOBAL sql_mode=' '  
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>  CREATE USER webid 
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>  CREATE DATABASE webiddb 
Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]>  GRANT ALL PRIVILEGES ON webiddb.* TO ' webid' @' localhost'  IDENTIFIED BY ' password'  WITH GRANT OPTION 
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>  FLUSH PRIVILEGES 
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>  exit
Bye

Create Apache VirtualHost for your WeBid Auction website.

create ‘ /etc/httpd/conf.d/vhosts.conf’  file
[root@linuxhelp1 Desktop]# nano /etc/httpd/conf.d/vhosts.conf

Add the following line to the file

IncludeOptional vhosts.d/*.conf

Now save the file and exit.

Next create the virtual host configuration file

[root@linuxhelp1 Desktop]# mkdir /etc/httpd/vhosts.d
[root@linuxhelp1 Desktop]# nano /etc/httpd/vhosts.d/linuxhelp1.com.conf

Once the file is created, configure it as follows.

< VirtualHost 192.168.5.108:80> 
ServerAdmin linuxhelp1.com
DocumentRoot " /var/www/html/linuxhelp1.com/" 
ServerName yourdomain.com
ServerAlias www.yourdomain.com
ErrorLog " /var/log/httpd/yourdomain.com-error_log" 
CustomLog " /var/log/httpd/yourdomain.com-access_log"  combined
< Directory " /var/www/html/linuxhelp1.com/" > 
DirectoryIndex index.html index.php
Options FollowSymLinks
AllowOverride All
Require all granted
< /Directory> 
< /VirtualHost> 

Restart the apache web server with the help of following command.

[root@linuxhelp1 linuxhelp1.com]# systemctl restart httpd.service

Open the web browser and navigate to http://192.168.5.108/ The Installer page appears, Enter the Database information

WeBid_Installer

Conf_file

The Installation is now complete.

installation_complete

Once the installation is complete, delete the install directory.

delete_install_folder

[root@linuxhelp1 linuxhelp1.com]#rm  -rf  install

Create admin account as follows.

Create_admin_account

Login with your username and password.

webid_login

The Home page displays all the information related to the site.

Site_information

You can view the settings page from the WeBid.

WeBid

Click on the Interface tab to manage themes and to clear cache. You can also upload your site Logo here.

Change_WeBid_Interface

WeBid Auctions tab lets you to view all the auction details.

WeBid_Auctions

Tags:
jayce
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

What is the essential purpose of install webid in centos?

A

WeBid can be used for creating auction websites

Q

wheather webid is supported by LEMP?

A

yes, webid is supported by LAMP/LEMp stack

Q

How to grant privilege for the user in webid?

A

GRANT ALL PRIVILEGES ON webiddb.* TO 'webid'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION; (say)

Q

what is the purpose of installing webid in centos?

A

WeBid is an open source and cross platform auction software written in PHP. WeBid is released under the terms of the GNU General Public License (GPL). WeBid can be used for creating auction websites.

Q

how to download the package of webid in centos terminal?

A

download the package of webid in centos terminal by following command
# wget http://jaist.dl.sourceforge.net/project/simpleauction/simpleauction/WeBid%20v1.2/WeBid-1.2.zip -O webid.zip

Related Tutorials in How To Install WeBid Auction on CentOS

Related Tutorials in How To Install WeBid Auction on CentOS

How To Install AnyDesk on Centos 7
How To Install AnyDesk on Centos 7
Apr 2, 2018
How to install Tiki Wiki CMS Groupware on CentOS 7
How to install Tiki Wiki CMS Groupware on CentOS 7
May 31, 2018
How to install PHP ImageMagick on CentOS 7
How to install PHP ImageMagick on CentOS 7
Nov 4, 2017
How to Upgrade and Downgrade the PHP Versions on CentOS 7.6
How to Upgrade and Downgrade the PHP Versions on CentOS 7.6
Jun 4, 2019
How to install Apache from Source Code on CentOS 7
How to install Apache from Source Code on CentOS 7
Oct 21, 2017
How to enable or disable repositories in CentOS
How to enable or disable repositories in CentOS
Mar 28, 2018
How to install AWStats on CentOS 7
How to install AWStats on CentOS 7
Dec 8, 2017
How to install Apache JMeter in CentOS 7
How to install Apache JMeter in CentOS 7
Mar 24, 2017

Related Forums in How To Install WeBid Auction on CentOS

Related Forums in How To Install WeBid Auction on CentOS

CentOS
connor class=
How To Completely Remove Apache package On CentOS 7.6
May 14, 2019
CentOS
ceriaimmaculate class=
setfacl : command not found
Jan 3, 2018
CentOS
mason class=
Error getting authority: Error initializing authority: Could not connect: No such file or directory (g-io-error-quark, 1)
Nov 20, 2018
CentOS
landon class=
Command to find SNMP Version
May 28, 2018
CentOS
arjitharon class=
cannot start minio service help
Mar 10, 2018
Apache tomcat
AadrikaAnshu class=
Cannot find ./catalina.sh The file is absent or does not have execute permission This file is needed to run this program
Jun 17, 2019
gitlab
caden class=
Insufficient space in download directory /var/cache/yum/x86_64/6/base/packages
Jul 22, 2019
OpenVAS
frank class=
Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stock error was 14: curl#6 - "Could not resolve host: mirrorlist.centos.org; Unknown error"
Dec 20, 2018
Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Ryan ?
how to use visual traceroute tool

Am using traceroute command to check for the route. i got this tool while surfing. So pls help me out installation and usage of Visual traceroute tool.

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.