You say that you're getting the site running but that there are problems. What type of problems?
Here's a post I made in another thread. Posting it here for reference, its for 4.2.2, but is the same for 4.X
----------------------------------------------
I got a fresh portal and tomcat bundle:
liferay-portal-src-4.2.2.zip - unzipped to a folder call
portalliferay-portal-tomcat-jdk5-4.2.2.zip - unzipped to a folder call
tomcatIn the
portal folder, I ran "ant start" to build my db scripts. I went to the
portal\sql\create folder. I opened up
create-mysql.sql and changed
lportal to
lportal422.
I ran
mysql < create-mysql.sql to build the
lportal422 database locally.
I went to
portal\lib\development and copied
mysql.jar to the
tomcat\common\lib\ext folder.
I modified ROOT.xml to point to the
lportal422 database.
1
2 <Resource
3 name="jdbc/LiferayPool"
4 auth="Container"
5 type="javax.sql.DataSource"
6 driverClassName="com.mysql.jdbc.Driver"
7 url="jdbc:mysql://localhost/lportal422?useUnicode=true&characterEncoding=UTF-8"
8 username="sa"
9 password=""
10 maxActive="20"
11 />
I started up tomcat and everything was running.