Go Back   EQEmulator Home > EQEmulator Forums > Development > Development::Tools

Development::Tools 3rd Party Tools for EQEMu (DB management tools, front ends, etc...)

Reply
 
Thread Tools Display Modes
  #1  
Old 01-29-2016, 08:58 PM
Dremis
Fire Beetle
 
Join Date: Jan 2016
Posts: 20
Default

here's d:\xampp\htdocs\peqedit\config.php

Code:
<?php

// Database Information:
$dbhost = 'localhost';
$dbuser = 'root';
$dbpass = 'eqemu';
$db = 'peq';
$mysql_class = 'mysqli'; // Use mysql or mysqli

/*  Limit zone lists to a specified expansion
 *  (i.e. setting $expansion_limit to 2 would cause only Classic and Kunark zones
 *  to appear in zone drop-down lists)
 *    1 = EQ Classic
 *    2 = The Ruins of Kunark
 *    3 = The Scars of Velious
 *    4 = The Shadows of Luclin
 *    5 = The Planes of Power
 *    6 = The Legacy of Ykesha
 *    7 = Lost Dungeons of Norrath
 *    8 = Gates of Discord
 *    9 = Omens of War
 *    10 = Dragons of Norrath
 *    11 = Depths of Darkhollow
 *    12 = Prophecy of Ro
 *    13 = The Serpent's Spine
 *    14 = The Buried Sea
 *    15 = Secrets of Faydwer
 *    16 = Seeds of Destruction
 *    17 = Underfoot
 *    18 = House of Thule 
 *    19 = Veil of Alaris
 *    20 = Rain of Fear
 *    21 = Call of the Forsaken
 *    22 = The Darkened Sea
 *    99 = Other
 */
$expansion_limit = 22;

// How NPCs are listed. 1 = by NPCID (zoneidnumber*1000), 2 = By spawn2 entry
$npc_list = 1;

// Spawngroup list limit. Limits how many spawngroups are displayed as result of a Coord/NPC search. Specific NPC lists are not effected.
$spawngroup_limit = 150;

// Dont want to have to type the username and password every time you start the editor?
// Set the two variables below to the values you want to be in the form when you start it up.
// (default login: admin  pw: password)
$login = '';
$password = '';

// Log SQL queries:  1 = on, 0 = off
$logging = 1;

// $log_file = path to the file your sql logs will be saved in.
// If you want a single log file, uncomment next line and comment the two monthly log options.
//$log_file = "logs/sql_log.sql";

// Automatically create new logs monthly.
$filetime = date("m-Y");
$log_file = "logs/sql_log_$filetime.sql";

// Log all MySQL queries (If disabled only write entries are logged - recommended.)
$log_all = 0;

// Log all MySQL queries that result in an error.
$log_error = 0;

// Enable or disable user logins.
$enable_user_login = 1;

// Enable or disable read only guest mode log in.
$enable_guest_mode = 0;

// Path for quests without trailing slash.
$quest_path = "D:/eqemuserver/quests"

?>
and here's d:\xampp\htdocs\peqedit\.htaccess

Code:
#Starting in Apache 2.4, they changed methods for allow/deny. To be certain of proper function, comment/uncomment the proper lines. Defaulting to 2.2 for now.
#See http://httpd.apache.org/docs/2.4/upgrading.html#access for more information

Options -Indexes

#Apache 2.2 and earlier
#<Files ~ "\.(php|sql)$">
#  Order deny,allow
#  Deny from all
#</Files>

#<Files index.php>
#  Order allow,deny
#  Allow from all
#</files>

#<Files aasearch.php>
#  Order allow,deny
#  Allow from all
#</files>

Apache 2.4 and later
<Files ~ "\.(php|sql)$">
  Require all denied
</Files>

Apache 2.4 and later
<Files index.php>
  Require all granted
</Files>

Apache 2.4 and later
<Files aasearch.php>
  Require all granted
</Files>
and here's d:\xampp\htdocs\peqedit\templates\iframes\.htacces s

Code:
#Starting in Apache 2.4, they changed methods for allow/deny. To be certain of proper function, comment/uncomment the proper lines. Defaulting to 2.2 for now.
#See http://httpd.apache.org/docs/2.4/upgrading.html#access for more information

Options -Indexes

#Apache 2.2 and earlier
#<Files ~ "\.(php|sql)$">
#  Order deny,allow
#  Deny from all
#</Files>

#<Files index.php>
#  Order allow,deny
#  Allow from all
#</files>

#<Files aasearch.php>
#  Order allow,deny
#  Allow from all
#</files>

Apache 2.4 and later
<Files ~ "\.(php|sql)$">
  Require all denied
</Files>

Apache 2.4 and later
<Files index.php>
  Require all granted
</Files>

Apache 2.4 and later
<Files aasearch.php>
  Require all granted
</Files>

If I missed one let me know.
Reply With Quote
  #2  
Old 01-29-2016, 09:00 PM
Dremis
Fire Beetle
 
Join Date: Jan 2016
Posts: 20
Default

OH and D:\xampp\apache\logs\error/log

Code:
[Thu Jan 28 05:56:03.612125 2016] [ssl:warn] [pid 4984:tid 576] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 05:56:04.377754 2016] [ssl:warn] [pid 4984:tid 576] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 05:56:04.424623 2016] [mpm_winnt:notice] [pid 4984:tid 576] AH00455: Apache/2.4.17 (Win32) OpenSSL/1.0.2d PHP/5.5.30 configured -- resuming normal operations
[Thu Jan 28 05:56:04.424623 2016] [mpm_winnt:notice] [pid 4984:tid 576] AH00456: Apache Lounge VC11 Server built: Oct 13 2015 10:54:13
[Thu Jan 28 05:56:04.424623 2016] [core:notice] [pid 4984:tid 576] AH00094: Command line: 'D:\\xampp\\apache\\bin\\httpd.exe -d D:/xampp/apache'
[Thu Jan 28 05:56:04.424623 2016] [mpm_winnt:notice] [pid 4984:tid 576] AH00418: Parent: Created child process 9936
[Thu Jan 28 05:56:05.440254 2016] [ssl:warn] [pid 9936:tid 576] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 05:56:05.643380 2016] [ssl:warn] [pid 9936:tid 576] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 05:56:05.690255 2016] [mpm_winnt:notice] [pid 9936:tid 576] AH00354: Child: Starting 150 worker threads.
[Thu Jan 28 06:20:14.391090 2016] [core:alert] [pid 9936:tid 1892] [client ::1:65383] D:/xampp/htdocs/PEQedit/.htaccess: Invalid command 'Apache', perhaps misspelled or defined by a module not included in the server configuration
[Thu Jan 28 06:21:35.020172 2016] [core:alert] [pid 9936:tid 1884] [client ::1:65385] D:/xampp/htdocs/PEQedit/.htaccess: Invalid command 'Apache', perhaps misspelled or defined by a module not included in the server configuration
[Thu Jan 28 06:22:24.459257 2016] [core:alert] [pid 9936:tid 1884] [client ::1:65392] D:/xampp/htdocs/PEQedit/.htaccess: Invalid command 'Apache', perhaps misspelled or defined by a module not included in the server configuration
[Thu Jan 28 06:23:01.777684 2016] [core:alert] [pid 9936:tid 1884] [client ::1:65400] D:/xampp/htdocs/PEQedit/.htaccess: Invalid command 'Apache', perhaps misspelled or defined by a module not included in the server configuration
[Thu Jan 28 06:28:20.730641 2016] [ssl:warn] [pid 5048:tid 576] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 06:28:20.808768 2016] [core:warn] [pid 5048:tid 576] AH00098: pid file D:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Thu Jan 28 06:28:20.918143 2016] [ssl:warn] [pid 5048:tid 576] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 06:28:21.136893 2016] [mpm_winnt:notice] [pid 5048:tid 576] AH00455: Apache/2.4.17 (Win32) OpenSSL/1.0.2d PHP/5.5.30 configured -- resuming normal operations
[Thu Jan 28 06:28:21.136893 2016] [mpm_winnt:notice] [pid 5048:tid 576] AH00456: Apache Lounge VC11 Server built: Oct 13 2015 10:54:13
[Thu Jan 28 06:28:21.136893 2016] [core:notice] [pid 5048:tid 576] AH00094: Command line: 'd:\\xampp\\apache\\bin\\httpd.exe -d D:/xampp/apache'
[Thu Jan 28 06:28:21.152519 2016] [mpm_winnt:notice] [pid 5048:tid 576] AH00418: Parent: Created child process 11460
[Thu Jan 28 06:28:21.777519 2016] [ssl:warn] [pid 11460:tid 536] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 06:28:21.918145 2016] [ssl:warn] [pid 11460:tid 536] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 06:28:21.965016 2016] [mpm_winnt:notice] [pid 11460:tid 536] AH00354: Child: Starting 150 worker threads.
[Thu Jan 28 06:28:37.090049 2016] [core:alert] [pid 11460:tid 1848] [client ::1:65425] D:/xampp/htdocs/PEQedit/.htaccess: Invalid command 'Apache', perhaps misspelled or defined by a module not included in the server configuration
[Thu Jan 28 06:36:23.057491 2016] [ssl:warn] [pid 2040:tid 512] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 06:36:23.135617 2016] [core:warn] [pid 2040:tid 512] AH00098: pid file D:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Thu Jan 28 06:36:23.229367 2016] [ssl:warn] [pid 2040:tid 512] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 06:36:23.260617 2016] [mpm_winnt:notice] [pid 2040:tid 512] AH00455: Apache/2.4.17 (Win32) OpenSSL/1.0.2d PHP/5.5.30 configured -- resuming normal operations
[Thu Jan 28 06:36:23.260617 2016] [mpm_winnt:notice] [pid 2040:tid 512] AH00456: Apache Lounge VC11 Server built: Oct 13 2015 10:54:13
[Thu Jan 28 06:36:23.260617 2016] [core:notice] [pid 2040:tid 512] AH00094: Command line: 'd:\\xampp\\apache\\bin\\httpd.exe -d D:/xampp/apache'
[Thu Jan 28 06:36:23.260617 2016] [mpm_winnt:notice] [pid 2040:tid 512] AH00418: Parent: Created child process 10340
[Thu Jan 28 06:36:23.885618 2016] [ssl:warn] [pid 10340:tid 528] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 06:36:24.041864 2016] [ssl:warn] [pid 10340:tid 528] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 06:36:24.073115 2016] [mpm_winnt:notice] [pid 10340:tid 528] AH00354: Child: Starting 150 worker threads.
[Thu Jan 28 06:37:02.307567 2016] [core:alert] [pid 10340:tid 1852] [client ::1:65530] D:/xampp/htdocs/PEQedit/.htaccess: Invalid command 'Apache', perhaps misspelled or defined by a module not included in the server configuration
[Thu Jan 28 06:37:24.760735 2016] [ssl:warn] [pid 3236:tid 512] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 06:37:24.823235 2016] [core:warn] [pid 3236:tid 512] AH00098: pid file D:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Thu Jan 28 06:37:24.916985 2016] [ssl:warn] [pid 3236:tid 512] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 06:37:24.963857 2016] [mpm_winnt:notice] [pid 3236:tid 512] AH00455: Apache/2.4.17 (Win32) OpenSSL/1.0.2d PHP/5.5.30 configured -- resuming normal operations
[Thu Jan 28 06:37:24.963857 2016] [mpm_winnt:notice] [pid 3236:tid 512] AH00456: Apache Lounge VC11 Server built: Oct 13 2015 10:54:13
[Thu Jan 28 06:37:24.963857 2016] [core:notice] [pid 3236:tid 512] AH00094: Command line: 'd:\\xampp\\apache\\bin\\httpd.exe -d D:/xampp/apache'
[Thu Jan 28 06:37:24.963857 2016] [mpm_winnt:notice] [pid 3236:tid 512] AH00418: Parent: Created child process 11848
[Thu Jan 28 06:37:25.604481 2016] [ssl:warn] [pid 11848:tid 552] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 06:37:25.745107 2016] [ssl:warn] [pid 11848:tid 552] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 06:37:25.791982 2016] [mpm_winnt:notice] [pid 11848:tid 552] AH00354: Child: Starting 150 worker threads.
[Thu Jan 28 19:06:35.261217 2016] [ssl:warn] [pid 4808:tid 176] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 19:06:35.321233 2016] [core:warn] [pid 4808:tid 176] AH00098: pid file D:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Thu Jan 28 19:06:35.411242 2016] [ssl:warn] [pid 4808:tid 176] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 19:06:35.451243 2016] [mpm_winnt:notice] [pid 4808:tid 176] AH00455: Apache/2.4.17 (Win32) OpenSSL/1.0.2d PHP/5.5.30 configured -- resuming normal operations
[Thu Jan 28 19:06:35.451243 2016] [mpm_winnt:notice] [pid 4808:tid 176] AH00456: Apache Lounge VC11 Server built: Oct 13 2015 10:54:13
[Thu Jan 28 19:06:35.451243 2016] [core:notice] [pid 4808:tid 176] AH00094: Command line: 'd:\\xampp\\apache\\bin\\httpd.exe -d D:/xampp/apache'
[Thu Jan 28 19:06:35.461242 2016] [mpm_winnt:notice] [pid 4808:tid 176] AH00418: Parent: Created child process 6844
[Thu Jan 28 19:06:36.051299 2016] [ssl:warn] [pid 6844:tid 560] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 19:06:36.201318 2016] [ssl:warn] [pid 6844:tid 560] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 19:06:36.241318 2016] [mpm_winnt:notice] [pid 6844:tid 560] AH00354: Child: Starting 150 worker threads.
[Thu Jan 28 19:06:41.274787 2016] [core:alert] [pid 6844:tid 1852] [client ::1:64714] D:/xampp/htdocs/PEQedit/.htaccess: Invalid command 'Apache', perhaps misspelled or defined by a module not included in the server configuration
[Thu Jan 28 19:25:47.190998 2016] [ssl:warn] [pid 10536:tid 556] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 19:25:47.253506 2016] [core:warn] [pid 10536:tid 556] AH00098: pid file D:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Thu Jan 28 19:25:47.338144 2016] [ssl:warn] [pid 10536:tid 556] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 19:25:47.407156 2016] [mpm_winnt:notice] [pid 10536:tid 556] AH00455: Apache/2.4.17 (Win32) OpenSSL/1.0.2d PHP/5.5.30 configured -- resuming normal operations
[Thu Jan 28 19:25:47.407156 2016] [mpm_winnt:notice] [pid 10536:tid 556] AH00456: Apache Lounge VC11 Server built: Oct 13 2015 10:54:13
[Thu Jan 28 19:25:47.407156 2016] [core:notice] [pid 10536:tid 556] AH00094: Command line: 'd:\\xampp\\apache\\bin\\httpd.exe -d D:/xampp/apache'
[Thu Jan 28 19:25:47.407156 2016] [mpm_winnt:notice] [pid 10536:tid 556] AH00418: Parent: Created child process 5976
[Thu Jan 28 19:25:47.970976 2016] [ssl:warn] [pid 5976:tid 556] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 19:25:48.124631 2016] [ssl:warn] [pid 5976:tid 556] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 19:25:48.171506 2016] [mpm_winnt:notice] [pid 5976:tid 556] AH00354: Child: Starting 150 worker threads.
[Thu Jan 28 19:25:58.018063 2016] [core:alert] [pid 5976:tid 1852] [client ::1:64937] D:/xampp/htdocs/PEQedit/.htaccess: Invalid command 'Apache', perhaps misspelled or defined by a module not included in the server configuration
[Thu Jan 28 19:26:35.574763 2016] [core:alert] [pid 5976:tid 1852] [client ::1:64977] D:/xampp/htdocs/PEQedit/.htaccess: Invalid command 'Apache', perhaps misspelled or defined by a module not included in the server configuration
[Thu Jan 28 19:51:05.266406 2016] [ssl:warn] [pid 8680:tid 512] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 19:51:05.328906 2016] [core:warn] [pid 8680:tid 512] AH00098: pid file D:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Thu Jan 28 19:51:05.422657 2016] [ssl:warn] [pid 8680:tid 512] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 19:51:05.453907 2016] [mpm_winnt:notice] [pid 8680:tid 512] AH00455: Apache/2.4.17 (Win32) OpenSSL/1.0.2d PHP/5.5.30 configured -- resuming normal operations
[Thu Jan 28 19:51:05.453907 2016] [mpm_winnt:notice] [pid 8680:tid 512] AH00456: Apache Lounge VC11 Server built: Oct 13 2015 10:54:13
[Thu Jan 28 19:51:05.453907 2016] [core:notice] [pid 8680:tid 512] AH00094: Command line: 'd:\\xampp\\apache\\bin\\httpd.exe -d D:/xampp/apache'
[Thu Jan 28 19:51:05.469532 2016] [mpm_winnt:notice] [pid 8680:tid 512] AH00418: Parent: Created child process 5320
[Thu Jan 28 19:51:06.032036 2016] [ssl:warn] [pid 5320:tid 552] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 19:51:06.188287 2016] [ssl:warn] [pid 5320:tid 552] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 19:51:06.235162 2016] [mpm_winnt:notice] [pid 5320:tid 552] AH00354: Child: Starting 150 worker threads.
[Thu Jan 28 19:52:10.016535 2016] [core:alert] [pid 5320:tid 1852] [client ::1:65222] D:/xampp/htdocs/PEQedit/.htaccess: Invalid command 'Apache', perhaps misspelled or defined by a module not included in the server configuration
[Thu Jan 28 19:56:00.238136 2016] [ssl:warn] [pid 4744:tid 192] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 19:56:00.316263 2016] [core:warn] [pid 4744:tid 192] AH00098: pid file D:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Thu Jan 28 19:56:00.410013 2016] [ssl:warn] [pid 4744:tid 192] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 19:56:00.441264 2016] [mpm_winnt:notice] [pid 4744:tid 192] AH00455: Apache/2.4.17 (Win32) OpenSSL/1.0.2d PHP/5.5.30 configured -- resuming normal operations
[Thu Jan 28 19:56:00.441264 2016] [mpm_winnt:notice] [pid 4744:tid 192] AH00456: Apache Lounge VC11 Server built: Oct 13 2015 10:54:13
[Thu Jan 28 19:56:00.441264 2016] [core:notice] [pid 4744:tid 192] AH00094: Command line: 'd:\\xampp\\apache\\bin\\httpd.exe -d D:/xampp/apache'
[Thu Jan 28 19:56:00.441264 2016] [mpm_winnt:notice] [pid 4744:tid 192] AH00418: Parent: Created child process 2868
[Thu Jan 28 19:56:01.035014 2016] [ssl:warn] [pid 2868:tid 156] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 19:56:01.191265 2016] [ssl:warn] [pid 2868:tid 156] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Thu Jan 28 19:56:01.222515 2016] [mpm_winnt:notice] [pid 2868:tid 156] AH00354: Child: Starting 150 worker threads.
[Thu Jan 28 19:56:04.425646 2016] [core:alert] [pid 2868:tid 1852] [client ::1:65313] D:/xampp/htdocs/PEQedit/.htaccess: Invalid command 'Apache', perhaps misspelled or defined by a module not included in the server configuration
[Thu Jan 28 19:57:46.785213 2016] [core:alert] [pid 2868:tid 1852] [client ::1:65328] D:/xampp/htdocs/PEQedit/.htaccess: Invalid command 'Apache', perhaps misspelled or defined by a module not included in the server configuration
[Thu Jan 28 20:01:19.126877 2016] [core:alert] [pid 2868:tid 1852] [client ::1:65441] D:/xampp/htdocs/PEQedit/.htaccess: Invalid command 'Apache', perhaps misspelled or defined by a module not included in the server configuration
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 08:18 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3