Aug
20
XShimeX asked:


Cara-cara macam mana nak hack CPanel/Mencari password.

Download Video - http://rapidshare.com/files/153023833/CPanel.rar

mikenku asked:


This tutorial demonstrates how to create what is called a complete client-server web application which consist of a Web Application, PHP, and MySQL. The tutorial shows how to automatically generate the Php necessary to talk to a MySQL data base.

Note: I named the Flex MXML application PHP4. This is just the name of the application not the version of PHP that we are running (which is Php 5) - dumb name choice on my part. Should have called it MyPHPApp.

It was created by Mike Lively at Northern Kentucky University.

mysql
Kee Kee asked:


I am tryng to use Yahoo’s Easy Upload Store Back-end. Problem is the upload feature accepts only cvs / spreadsheet info. I have an existing web site that was created by another developer using MySQL. I need to get the data out of that database without having to sit for the next 2 weeks copying and pasting into an Excel Spreadsheet. I’m getting frustrated! PLEASE HELP ME!
cpanel
Brian Garvin asked:


When you are about to start your own internet company there are many questions you may have. For instance there is a lot of information about servers and domain names that are very hard to understand. You obviously want to have the most control when dealing with your website, such as how to modify the website and make sure it is on the top search engines.

Cpanel is the backend website software that runs most linux based hosting services. What Cpanel offers customers is a way for website hosting customers to manage their domains through a web interface. This means that you have control and the responsibility of managing your own site. You can manage the emails, files, backup info, FTP, CGI scripts, and even the website statistics.

When you choose to become a part of Cpanel you are asking for the domain owner control panel to be handed to you. You are still going to have technical support from Cpanel in case there are any questions are problems with the software product, but it offers you the control you need to run a successful business on the internet.

They also offer webhost manager and webmail panel. This means you have server administration and a reseller panel as well as a webmail access panel when you are with this web hosting company.

When you sign up with Cpanel you are getting a license agreement to use their technology. You have to keep up with the agreement, which is an every year charge to keep yourself on this web hosting server. You are able to have support, as well as new operating system versions in case you ever upgrade to a new operating system like windows vista. You have to options when you decide to choose Cpanel for you business needs.

You can get the Cpanel and WHM package that offers the webhost manger as well as the hosting control or you can get the Cpanel Server Suite. The second option is currently in beta testing so they have not completely fixed any errors it may have, but it does offer you the knowledge and tools you need to have a successful business. You will find that you have the central management with this program for your servers.

This website hosting software is great for someone who is not necessarily a one website business owner. In other words it works great for someone who has multiple websites and will continue to grow in the website business. The websites don’t have to sell the same products, but can be multiple product websites.

They can also be service websites. The fact is whatever you have the website for doesn’t matter as long as you can make a return out of the software program from the webhosting company. You want the product to work for you and your business, but not pay out for something that doesn’t really fit in your current business venture. You are the only one who can decide if the program will work for you, by reading about it.

InternetMarketingU asked:


training lessons from InternetMarketingUniversity.com courses

mysql
Joed asked:


I have this problem in storing URL in mySql. I tried to put the URL which came from the file chooser into a String variable. When I printed it, it seemed to be ok but when I saved it in the database, all the backslashes were gone. What should I do? Please help me. Thanks in advance.
noamrachmany asked:


Delphi for PHP mysql create oscommerce database

cpanel
UncleBill asked:


I would like to learn how to use cpanel so that I could get a handle on traffic to my web site. There are so many charts and numbers that I don’t understand, I don’t know where to start.
mysql
John Dixon asked:


Quite often when you are developing web sites or applications it is necessary to create a drop down list box that contains entries from a database table. You can, of course, hard code the items in the drop down list box, but this isn’t really very elegant, and can create problems if the entries in the database table change at a later date. It is much better to extract the entries from the database table directly and then populate the drop down list box using those entries.

Creating the database table

The following script, database-table.sql, could typically be used to create a database table (called ‘years’) that contains, for example, a list of years. These will be the entries that appear in the drop down list box.

database-table.sql

create table years

(  yearID integer auto_increment,

   year varchar(30),

   primary key (yearID)

);

insert into years (yearID, year) values (’1′, ‘2007-2008′);

insert into years (yearID, year) values (’2′, ‘2008-2009′);

insert into years (yearID, year) values (’3′, ‘2009-2010′);

insert into years (yearID, year) values (’4′, ‘2010-2011′);

insert into years (yearID, year) values (’5′, ‘2011-2012′);

insert into years (yearID, year) values (’6′, ‘2012-2013′);

The following PHP script (populate-list.php), which would form part of a form, will extract all the entries from the ‘years’ database table, and use them to populate the drop down list box.

populate-list.php



If the entries in the database table change at some stage in the future, those changes will be automatically reflected in the drop down list box in the form.

Aug
15
mysql
Markus Fernandez asked:


Choosing php and mysql as programming language for a website is not enough. With open source coding being one of the inherent properties of php mysql development, securing your codes becomes essential. So when one allows the users to upload files on the website, then security is definitely at stake.

PHP Programming Protection

While it is not entirely possible to protect your site, yet there are few precautions that you can incorporate for better protection of PHP programming. Some of these are:

• You should check the referrer, for being sure that the information sent is from your website and not an outside source. Since, there are maximum chances of the information being fake.

• Restriction of the type of extension files being uploaded on the website is yet another method of security check.

• Renaming files is another way in which the program can be secured. This procedure involves the checking of double-barreld extensions like yourfile.php.gif.

• Changing the permission command for the upload folder so that files within it are not executable.

• All the alterations created by the user should be allowed only when they ‘Login’ into the database. On the other hand the owner of the site should always keep a close watch on all files being uploaded and then make them live.

Mysql Programming Security

Another aspect in php and mysql web development is the protection of the mysql libraries. Therefore, the most important aspect involved in protecting the mysql program is the security of the entire server host.

Securing MySQL is very essential for the smooth running of the website. This is based on Access Control Lists and SSL-encrypted connections, for protecting the php mysql web development program from random users visiting the website.

Some of the vital things to be considered for online site protection are:

• Accessing of the mysql database should not be allowed for any and everyone.

• Privileges to the users should always be accompanied with some restriction. If one can easily connect to the server without any ‘login’ then the security level code of the MySQL server should be rechecked.

• The MySQL database should be void of plain-text passwords. Use programs like MD5 (), SHA1(), or some hashing function for complete protection.

• Do not choose passwords from dictionaries, since they can be hacked easily. Use programs that break the passwords.

Therefore, the successful development of a website through php and mysql web development is complete only when the site owner consults a professional programmer. They expertise in the optimization of the MySql hosting database. This program is dynamic in nature and is an effective tool in the creation of browser-based applications.