View Single Post
  #14  
Old 06-19-2012, 10:02 AM
GLGanjika
Hill Giant
 
Join Date: Feb 2011
Posts: 132
Default

Quote:
Originally Posted by Uleat View Post
(A little overkill, but helpful to anyone searching in the future.)

You can always use the root:Password combo for testing and then switch back to the limited-access client once it works.

It is something small..and php install doesn't seem to make all three of the needed apache line additions..just the two.


If you're using apache/php, make sure that you have the compatible versions of each based on the OS that you're using.
(Apache Lounge has the VC6 build that is compatible with 32-bit Win OS's..and make sure you read up on using the
thread-safe versus non-thread safe versions of apache.)


If you're getting the 'can't load' certain module errors, this website gives a decent idea of what php options need to be
checked on install:
http://www.websiteadministrator.com....hp533_pg5.html


Apache needs to properly configure as well, and I'm assuming that you have that right. You should be able to access the
default 'index.html' if apache is working.

However, when installing php, the installer only makes these changes to the apache config file:
Code:
#BEGIN PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL
PHPIniDir ""
LoadModule php5_module "php5apache2_2.dll"
#END PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL
One more line needs to be added (make sure the references match the version of php that you're using.) This is what mine looks like:
Code:
PHPIniDir "C:/PHP"
LoadModule php5_module "C:/PHP/php5apache2_2.dll"
AddType application/x-httpd-php .php
That 'AddType' is usually what kills an otherwise 'clean' install... (I forced the phpinidir on my system to facilitate some
troubleshooting I had to do. Not sure if that is absolutely needed, but doesn't break it.)


Let us know if any of this helped or if you're still having issues.
(Don't forget to restart the server once you make the config changes.)


U


I got this error when trying to make give root all privs AND when trying to create a new user :(.

Btw where was i supposed to make the changes shown in the last codebox? the php config file didnt have anything like that in there.


Quote:
Originally Posted by trevius View Post
What OS are you on, Windows or Linux? Also, have you tried using a tool like Navicat that you can try connecting to your database with to verify your connection info is correct? If it doesn't work for Navicat with the same info, it probably won't work for AllaClone.

Also, I would recommend creating a new user in MySQL for the AllaClone. You can restrict the new account to SELECT only to reduce security risks.


Windows 7 Home Premium 64 Bit.
There are TWO mysqls (seems unnecasary but it was how i knew how to run this properly with what was shown in the guide, one mysql is for website/forum/teamspeak/etc (app serv 2.5.10) and the other is mysql 5.1 (this is for the eq server). i used -this guide- to run this server and followed it as closely as i could. Yes I can connect via navicat and even into the game and others can connect to my server in-game too.
__________________
"Be who you are and say what you feel because those who matter don't mind
and those who mind don't matter." - Theodore Seuss Geisel. [Dr. Seuss.]

Reply With Quote