Main Menu

Recent posts

#1
Help / Re: VSP requires PHP Version 7...
Last post by Fragenstein - August 13, 2024, 02:35:29 PM
max_execution_time is 0

[command-line options]: Array
(
    [parser-options] => Array
        (
            [gametype] => xp
            [savestate] => 1
        )

    [prompt] => 1
    [log-gamecode] => q3a
    [log-gametype] => xp
    [logfile] => D:/Quake III Arena/excessiveplus/logs/server_mp.log
    [config] => pub/configs/cfg-default.php
)

Let me know if you need any other info, log files, etc...
#2
Help / Re: VSP requires PHP Version 7...
Last post by Fragenstein - August 13, 2024, 02:34:47 PM
Okay, I upgraded my xampp PHP to v8.2.12 (their latest) and implemented your fix. I was able to get vsp to run, but am getting a bunch of errors:

Deprecated
:  stristr(): Passing null to parameter #1 ($haystack) of type string is deprecated in
C:\xampp\htdocs\vsp.servegame.com\vsp-q3a.php
 on line 697

Warning
:  Undefined array key "gameversion" in
C:\xampp\htdocs\vsp.servegame.com\vsp-q3a.php
 on line 352

Deprecated
:  Creation of dynamic property VSPParserQ3A::$original_log is deprecated in
C:\xampp\htdocs\vsp.servegame.com\vsp-q3a.php
 on line 129

Notice
:  Only variables should be assigned by reference in
C:\xampp\htdocs\vsp.servegame.com\vsp.php
 on line 1086


Skill Definitions not found.
 pub/games/q3a/skillsets/default/default-skill.php
[parser options]: Array
(
    [savestate] => 1
    [gametype] => xp
    [backuppath] =>
    [trackID] => guid
    [xp_version] => 200
)
#3
Help / Re: VSP requires PHP Version 7...
Last post by Krillin - August 13, 2024, 12:26:36 AM
Here is a possible solution.

Find (line #1249):
function Fff0125cs()
{
  if (php_sapi_name() === 'cli') {
    if (!defined('PHP_VERSION_ID') || (PHP_VERSION_ID < 70400 || PHP_VERSION_ID >= 80200)) {
      echo "Error: VSP requires PHP Version 7.4 to 8.2 to run.\n";
      echo " - Your version is: \"" . PHP_VERSION . "\"\n";
      echo " - Please upgrade your PHP installation.\n";
      echo " - Thank You!";
      F4e6F902f();
      exit;
    } else {
      echo "\nYour PHP Installation Will Work With VSP!\n";
    }
  }

And replace it with:
function Fff0125cs()
{
  if (php_sapi_name() === 'cli') {
    if (!defined('PHP_VERSION_ID')) {
      // Fallback if PHP_VERSION_ID is not defined
      $version = explode('.', PHP_VERSION);
      $versionId = ($version[0] * 10000) + ($version[1] * 100) + ($version[2]);
    } else {
      $versionId = PHP_VERSION_ID;
    }

    if ($versionId < 70400 || $versionId >= 80300) {
      echo "Error: VSP requires PHP Version 7.4 to 8.2.xx to run.\n";
      echo " - Your version is: \"" . PHP_VERSION . "\"\n";
      echo " - Please upgrade your PHP installation.\n";
      echo " - Thank You!\n";
      F4e6F902f();
      exit;
    } else {
      echo "\nYour PHP Installation Will Work With VSP!\n";
    }
  }
}

This will correct the issue with the subversion numbers with 8.2.xx as it was limited to 8.2.00 for some reason. This has NOT yet been published, this will be applied in the next version.

Thank you for your report.

-Krillin
#4
Help / Re: VSP requires PHP Version 7...
Last post by Krillin - August 13, 2024, 12:07:25 AM
Sorry for the delay. There are a few ideas. I will look into this and see what is going on as our development is done using Windows Server 2022 using Apache 2.4.62 with PHP 8.2.16 and there aren't any issues. As it seems your system is not verifying your php version properly.

You need to give me more information on what you are doing rather than this tidbit of information you provided.

Also, update your version of PHP 8.2.4 to 8.2.16. There is no harm in keeping your PHP engine updated to the current version as there could be some minor version detection constant changes in your early version of 8.2.4, because of this there is a fallback written into the PHP Version Detection.

-Krillin
#5
Help / VSP requires PHP Version 7.4 t...
Last post by Fragenstein - August 05, 2024, 01:57:22 PM
Receiving the following error when trying to parse the logs:

"Error: VSP requires PHP Version 7.4 to 8.2 to run.
 - Your version is: "8.2.4"
 - Please upgrade your PHP installation."

VSP v1.0.51
Windows 11 Apache Server PHP 8.2.4

Any ideas?
#6
VSP Download / Re: vsp stats processor v1.0.5...
Last post by Krillin - February 29, 2024, 04:53:38 AM
QuoteName: vsp-core_v1.0.51.7z
Size: 1308660 bytes (1277 KiB)
CRC32: EB105392
CRC64: 26AFDC739BCCF48A
SHA256: ea755e9ad35f3e18050543df56f2486ee4b4a65e13b4ccf5874b73d2f1bfb201
SHA1: dfde24b287d550284533336a5d10dbaf2d2cabc3
BLAKE2sp: 7c02294be27f3ccb718fca55f8a25b6e7367bca64843c5a43270b949ead1698f
XXH64: 9651775860855214

QuoteName: vsp-core_v1.0.51.rar
Size: 2381100 bytes (2325 KiB)
CRC32: 93D0AD5D
CRC64: 044E53E10E463C83
SHA256: 16fd8ccc14672e633a0d4aa7664b14c0c6c80e7d72bd937164e26c6abe8c3b0a
SHA1: 5dcca69000a48f3a80f25da0316938fd2b17432e
BLAKE2sp: b487442c0357f02ab7074cc2d4e7fa3447b653bc98927bdf27bb363e6d906ebc
XXH64: B2BA44623564D9E6

QuoteName: vsp-core_v1.0.51.zip
Size: 2605928 bytes (2544 KiB)
CRC32: EF54EB00
CRC64: DFBD988570896063
SHA256: 05d13a4e4b41d5893d3990d97add0314604b1287ecf988f03d388823696a1bb3
SHA1: 500ede29ac57656597ca41cf2794832c0ec6922c
BLAKE2sp: 3b69b6d8bdce4e1921f56265c8830031fb76f7c35d420fbde00e80cc4e3999eb
XXH64: 0EE24C3702B6EBA2


If the checksums differ then from above, there is a good chance the file is corrupted or has been modified. Discard the file, try again, or e-mail Krillin about the issue.
#7
VSP Download / Re: Media Files (UPDATED 8/4/2...
Last post by Krillin - February 28, 2024, 10:54:32 PM
The second media file left is the media files for Q3A (Quake 3 / Arena). Now this will be a reminder of all that remains. This contains all the QUAKE 3 / QUAKE 3 ARENA / EXCESSIVE / PLUS mapset and weapons.
#8
VSP Download / Media Files (UPDATED 8/4/2023)
Last post by Krillin - August 04, 2023, 11:47:01 PM
For over a decade there has been a requests for collecting the original media files for VSP as ours have gotten corrupted over decades of SMF updates. We kept them posted as a reminder and that reminder went UNANSWERED. So last month (July 2023) they were taken down. The only media file left is the media files for HalfLife (HL). Now this will be a reminder of all that remains now.
#9
Downloads / Widescreen 16:10 Menus Offset ...
Last post by Krillin - July 02, 2021, 08:59:01 AM
This WAS posted at steam community SEVERAL times, and several times it has been taken down. Due to file corruption from my hosting company. I am looking for a new one at this point!

Being as the Engineers / Developers are no longer doing anything to CS 1.6 or CZ these days. We had to come up with a solution for our Screen Interface for our games with a 16:10 RATIO. I am happy to say we did, and did so successfully.

Attached to this post below, fix_widescreen_alignments.zip, are all the files needed to fix the offsets MOTD + Menus for players with Widescreen 16:10 aspect ratio monitors.

If by some chance these files don't work for you, just delete them and they will go back to square one. (Use with caution with the new HD update in March of 2013, deleting these files can leave your interface blank.)

Place the contents of the /resource folder contained in the .zip file attachment into your "../../counter-strike/cstrike" or "../../condition-zero/czero" installation folder(s). Overwrite the existing files when needed, or make a backup copy of the originals.

You use these files at your own risk. But we assure you there isn't any risk at all. These files are modified from the counter-strike.gcf files delivered to you from steam. Only modified the specific Numeric Values to place the required items on our screens properly. Nothing is inserted into these files or contain anything extra.

Hope you enjoy the 2 days of dabbling around and 14 months of bullshit and runaround from STEAM's NON-TECH SUPPORT and LAME-O DBA's who conveniently lost my account between January and April of 2008 when we hadn't heard any progress of our findings! That is because steam conveniently deleted ALL support tickets on my and many others accounts.

Added screenshots of the layout for the Before MOTD/Select Team And After MOTD/Select Team.

Sincerely,
Krillin

Reason for Edit: Fixed the download, made it easier for players to unzip, cut & paste and go. The no hassle method. Added more info and link to steam forums, tested on Condition-Zero and past. Minor grammar and flow corrections. Updated Links seeing as Steampowered.com forum entries were DELETE/REMOVED (first one above). Re-posted in two forums this time around.

Our Apologies for those who are looking for this fix, we did not know the files were missing. This is now been resolved. 7/2/2021
#10
Help / Re: php is changing 7.2 gives ...
Last post by Krillin - March 03, 2021, 10:54:53 PM
So I thought this was a simple fix, but it was the wrong fix. This has been fully addressed properly according to PHP 7 documentation regarding this issue. Though Class and Function still cannot have the same names, there is a right fix for this and it has been implemented in V.S.P. v0.50 properly along with a lot of other fixes.

Thanks.