Adding Negative Numbers On Solaris
I get an unexpected result when I add two negative numbers in PHP on
SPARC/Solaris 8. The same program works fine on Intel/Linux. I'm using
PHP 4.3.1 on both systems.
Here is my program, test.php.
<?php
$a = 0x81234567;
$b = 0xF0000002;
printx($a, $b);
printx($a, intval($b));
printx(intval($a), $b);
printx(intval($a), intval($b));
function printx($a, $b) {
$c = $a + $b;
printf("%08X (%u) %7s + %7s = %7s
", $c, $c,
gettype($a), gettype($b), gettype($c));
}
?>
I run it from the shell prompt like this:
php -f test.php
Output on Intel/Linux, PHP 4.3.1
71234569 (1898136937) double + double = double
71234569 (1898136937) double + integer = double
71234569 (1898136937) integer + double = double
71234569 (1898136937) integer + integer = double
This is the answer that I expect. I am adding two 32-bit integers, and the
value overflows.
Here is what happens when I run it on
SPARC/Solaris 8, PHP 4.3.1
FFFFFFFF (4294967295) double + double = double
71234569 (1898136937) double + integer = double
71234569 (1898136937) integer + double = double
80000000 (2147483648) integer + integer = double
When both arguments are negative doubles or both are
negative integers, then it gives the wrong answer.
What is causing this, and how do I avoid this strange behavior?
View Complete Forum Thread with Replies
Related Forum Messages:
Negative Numbers
How to check if a number $days is negative? i tried something with pregmatch to see if theres a - in the number but that dont work ne ideas?
View Replies !
Strtotime() Not Subtracting Negative Numbers?
I'm having an issue with the strtotime function not doing math the way I was taught it works in school....... I am using strtotime() to add and subtract times in my timezone application. The problem is when I go to subtract the offset from UTC strtotime() subtracts the ABSOLUTE VALUE of the offset insteat of the actual value. ie:strtotime(now().'- -4 hours');should give me my current UTC as I am in the eastern time zone of North America and it is daylight savings time. However, it gives me the same result as:strtotime(now().'-4 hours');thus sending me somewhere off the west coast - time-zonally speaking. Code:
View Replies !
Adding Up The Numbers.
So I have a menu, and it has this.... category 1 (12) category 2 (53) category 3 (36) of course, this is added from the database, that someone else built....so I need to figure out the variables that make the numbers for each entry to the particular category, but how do I make a solid number of all the categories?
View Replies !
Adding Numbers After Decimal
I am having trouble thinking of a function to add zeros after a decimal. Let say I have $money="10000" I need a function that will add .00 to 10000.00 and to add just a zero to 0 after 234.5
View Replies !
Adding Numbers For A Gallery
I am trying to create a very simple gallery of 1400 images I have. All I want to do is display the default image 0001.jpg and have NEXT and PREV links. For the Next button I want it to +1 to the current number so if its "0001" and you click NEXT I want it to show "0002" all the way to 1400. Example of link: "gallery.php?show=0001.jpg" code of image: <img src="wedding/wedding-<? echo $picture; ?>.jpg" /> I know how I can do this to make the number go from 1 to 2 but im lost on how to make the number go up with a format of 4 digits. So 0001 0002 0003 ....0010 0011/...1399 1400 etc.
View Replies !
Adding Numbers With Commas?
<? $var1 = ཆ,000' $var2 = Ɖ.59' $sum = $var1 + $var2; echo $sum; ?> I'm getting "13.59" I'm obviously missing something pertinent to adding numbers with commas. Any help?
View Replies !
Adding Numbers Stored In SQL
I'm sure this is simple, I'm not sure what function to use for it though. I have a Table with a field call "Duration" which keeps track of seconds. There is also a field "User" to show which user stayed logged in for the "Duration". I need to add up all the "Durations" for a specific user to create a total number of seconds the user has ever been logged into our system.
View Replies !
Adding Commas To Large Numbers
I have a search that when you search it shows how many results you are being shown and usually the number is between 100,000 and a 1,000,000 how can i add commas to a number for example: 989725?
View Replies !
Adding Numbers From A Text Document
I've tried, and searched and lost sleep over this one and I've nearly admitted defeat. I have a text document with certain details listed which comes from another document which comes from a series of forms. The document, let's say 'test.txt', has numerical values at lines 5, 11,17, 23 and so on so forth (just add 6 to the last number and you get the next). Each month the numbers in the file will be added together to give a total. Now there could be only a few numerical entries into the file, or there could be a hundred entries. How can I add the numbers from test.txt lines 5, 11, 17, 23, 29 etc etc together to make a total without having to do the "$lines[5], 1, 4 " + $lines[11], 1, 4" etc etc.
View Replies !
Processing And Adding Numbers From Lines.
Is there an easy way to automate the processing of adding the following numbers in two lines? test test test description (100-10-0, 6700 test) test test test description (100-10-0, 6350 test) I'd like to be able run a script on the file above to produce the following results. 200-20 .9090 The lines will stay the same, but the numbers will change. I'd like to be able copy and paste the lines into an html form to process the results.
View Replies !
Trouble Adding Numbers With 12 Decimal Places
In my database I have numbers stored as decimal(16,12) like this: 1.000100000000 3.000100010001 10.000500020003 If I just grab them and echo them to the screen they return correctly but if I try to get the sum of them either in MySQL using sum(nums) AS num or grabbing them and then with PHP looping through them and using $tot += they do not add correctly and it is DRIVING ME CRAZY :) If anyone has any ideas I'd really appreciate a point in the right direction.
View Replies !
Mktime (negative Value?)
I'm working on editing a calendar program. It is a simple equipment check out calendar; the user selects the item and check out/in date and time to add a reservation. When I add a reservation on an item, I'm getting this error message: QuoteWarning: mktime() [function.mktime]: Windows does not support negative values for this function in D:aedeconintranet esources esource_update.php on line 91 1198015200 1230760800 However, it does work and the reservation is added to the calendar. Here is the code for the section where the problem is: Code:
View Replies !
Negative Offsets
I was playing around with negative offsets: select * from table1 order by col1 offset -5 limit 25; select * from table1 order by col1 offset -25 limit 25; select * from table1 order by col1 offset -250 limit 25; They all return the same resultset (offset 0). Is there even any point in allowing negative offsets - such as maybe someday they'll offset backwards?
View Replies !
Negative Timestamps
From the manual, it seems negative timestamps should work on Linux, just not Windows. But anything I try before 1970, (i.e. a negative timestamp) is giving me 12/31/1969. -- [ Sugapablo ] [ http://www.sugapablo.net <--personal | http://www.sugapablo.com <--music ] [ http://www.2ra.org <--political | http://www.subuse.net <--discuss ]
View Replies !
Php Cannot Accept Negative Value Returned From Cgi (c)
Using system()in php to call a cgi (in C), which in turn will return a status value. Whenever a negative value (eg -1) is returned, the php will show it as another value (255). The sequence is like, -1 = 255, -2 = 254 ...If it is a positive value then it's working fine. Any idea on how to solve this and why is php behaving this way?
View Replies !
Negative SELECT In Mysql?
How does one retrieve the rows in a select statement that DONT match the select. select CarIndex FROM DealerCatalog, BigCatalog WHERE DealerCatalog.CarIndex=BigCatalog.CarIndex finds all the cars in the dealer catalog that are in the bigger distributor catalog. How do I do the opposite in a single sql statement i.e. all the dealer cars that AREN'T in the big distributor catalog?
View Replies !
Imagecolorallocate Positive / Negative
my problem is the funktion imagecolorallocate(). in the manual i read : Col ist der Farbindex. Verwenden Sie den negativen Index-Wert, führt das zum Aufheben des Farbüberlaufs (Antialiasing). it's german, but i think you know what i mean .. $font_c = imagecolorallocate($image, 0, 0, 0); that's the line .. and how to change $font_c into an negative value ? as noob i set $font_c = -1; but the some browsers shows a red grafic and not an black one.
View Replies !
Date() And Negative Timestamps
It's annoying that my server doesn't play well with negative timestamps (with mktime and date). The world did exist before 1970, right? I can't vouch for that myself, but quite a few people older than me claim to have been around back then. I want a version of date() and mktime() that don't "choke" on dates from the pre-disco era. (PDE)....
View Replies !
Displaying A Message If A Number Goes Negative.
I'm trying to display a comment if my query comes up nagative, my result is displayed as a time (00:00:00 Format), I want it so that when my time goes negative (-01:00:00) it will display a comment, but when it is positive it will display the time. I already have the time displayed by using: print $record['time_diff']; But I'm not very clued up when it comes to if and else commands. This is a section of my code that I can't get to work, Im sure you will see the problem straight away but I can't and have tried a few things. $result = mysql_query($query = "SELECT timediff(time_allowed, time_used) as time_diff FROM scheduled_time WHERE scheduled_time.id = 1"); $record = mysql_fetch_assoc($result); if ($record['time_diff']> 0){ print $record['time_diff']; } else { print "Time is negative"; } Any help would be greatful.
View Replies !
Negative Lookbehind Assertion With Eregi_replace()
I have this regex which matches full and partial URLs and converts them to links: $regex = '(http(s?)://)?(([[:alpha:]]+.)+(com|org|edu|net|gov)(/[^[:space:]]*)?)' $text = eregi_replace($regex, "<a href="http2://3" target="_blank">13</a>", $text); Now I need to modify it so that if there is an @ before the partial URL, it does not match. (I have a separate eregi_replace() for doing emails, obviously). I tried adding (?<!@) right before the first set of ((. (Also, then my 3 change to 4) When I did this, it gives me the error: Warning: eregi_replace() [function.eregi-replace]: REG_BADRPT in /srv/test/htdocs/convert_urls/convert.php on line 33. Any ideas what I'm doing wrong?
View Replies !
Mt_rand Returning Negative Number
How come my mt_rand returns negative numbers while it shouldn't? <? //SMALL MT_RAND COMPATIBILITY TEST $echoout=mt_rand(1000000000000,22000000000000); echo"$echoout"; ?> Sometimes it gives me a positive number (i once had : 75587147 ) but mostly i get things like-216672647 I think it's because the numbers are so big. Is there a function that creates a random number between two bcmathic numbers. I already use bcmathic functions like bcmul and bcmod etc on my page because of the high numbers. Is there a function that can create a random number between to big numbers.
View Replies !
PHP 5 On Solaris 5.9
All seems to have installed OK but when I add the lines to Apache as below it gives errors. LoadModule php5_module libexec/libphp5.so AddModule mod_php5.c Syntax error on line 241 of /usr/local/apache/conf/httpd.conf: Cannot load /usr/local/apache/libexec/libphp5.so into server: ld.so.1: /usr/local/apache/bin/httpd: fatal: /usr/local/apache/libexec/libphp5.so: open failed: No such file or directory /usr/local/apache/bin/apachectl start: httpd could not be started AND Syntax error on line 247 of /usr/local/apache/conf/httpd.conf: Cannot add module via name 'mod_php5.c': not in list of loaded modules /usr/local/apache/bin/apachectl start: httpd could not be started PHP seemed to install OK and I search for these modules but they cannot be found. Apache is 1.3.27
View Replies !
Solaris IDE
im kicking around the idea of purchasing a sparc workstation because: 1) they are really cheap on ebay. 2) i always wanted to give one a shot. 3) they are really cheap on ebay. Since i do php development, is there any decent IDE for php development out there that will run on sparc sunos? anyone doing development on a sparc? I'm looking at something like a dual CPU sparc 1000 (dual 750's), and im also curious as to the performance compared to a windoz pc.
View Replies !
Compiling PHP On Solaris
Not sure if this is the best place to ask this, I am trying to compile PHP 5.2 on a Solaris 9 system. I need Oracle DB support so can't use the pre compiled packages on blastwave as I don't think anyof them include Oracle. The configure script is: ../configure --prefix=/usr/local/php-5.2.0 --with-apxs2=/usr/local/apache-2.0.55/bin/apxs --with-mysql=/opt/sfw/mysql --with-pear --with-libxml-dir=/opt/csw/ --with-config-file-path=/etc/php5 --with-curl --with-dom --with-zlib --with-oci8=instantclient,/usr/local/oracle/instantclient_10_2 --with-gd --with-jpeg-dir=/usr/sfw/lib And I get the error: checking for the location of libjpeg... /usr/sfw/lib checking for the location of libpng... no checking for the location of libXpm... no checking for FreeType 1.x support... no checking for FreeType 2... no checking for T1lib support... no checking whether to enable truetype string function in GD... no checking whether to enable JIS-mapped Japanese font support in GD... no checking for fabsf... no checking for floorf... no configure: error: libjpeg.(a|so) not found. BUT [/usr/local/src/php-5.2.0]# ls /usr/sfw/lib <snip> libjpeg.so libjpeg.so.62 So why is it complaining? Does anyone know? I am puzzled why it bales out after the "checking for floorf... no" line and not straight after the libjpeg line 9 lines above. I am using gnu gcc and ld.
View Replies !
Trouble On Solaris 8
I'm installing Apache 2.2, PHP 5.04, and mySQL 4.0.21 on a Solaris 8 machine using prebuilt binaries from sunfreeware.com. My apache install went smoothly - the only thing I'm having to work around is an inability to use /usr/local - it's an NFS mount to a central image, so I'm installing in /opt/local. After installing PHP and modifying httpd.conf, I get the following error on startup: httpd: Syntax error on line 110 of /opt/local/apache2/conf/httpd.conf: API module structure `php5_module' in file /opt/local/apache2/modules/libphp5.so is garbled - perhaps this is not an Apache module DSO? Now, I have to confess that I don't have mysql installed yet, but I would think that simply loading the php module wouldn't require this, would it? A search for this message shows one other user has seen it recently, but no resolution online. No hint in /var/apache/logs - no mention of php at all in any of the logs. Any clues as to what could be causing this?
View Replies !
PHP Slow On Solaris
Does anybody knows why php runs so damm slow on solaris. PHP works fine, but if you use the array function it get really slow. everyone could try it on different platforms. fill a array with 100.000 elements in a loop and you will see what i mean. debugger output shows that php ist trying to get memory for each element. --> anybody know how to tune this in solaris or php? Code:
View Replies !
With Java On Solaris
This is my system configuration OS Sun Solaris SPARC 8 Apache version 1.3.26(Unix) PHP version php-4.1.0 java version j2sdk1.4.2_14 for soalris i am trying to build php with java support but when i try to configure it with follwing command: ./configure --with-apxs=/usr/apache/bin.paxs --with-java=/usr/j2se --with-config-file-path=/etc --with-openssl=/usr/local/ssl then make and then make install everything goes well without any error. but at the end i dont find any php.ini file in /etc and if i copy it from the distribution of php and edit the file with java class path and library path tha php page using java class doesnt work. can anybody provide me detailed step on how to do java integration in php on solaris.
View Replies !
Installing PHP 5.2.1 On Solaris
I've been following the install guide on the PHP website and everything has gone fine up until where I'm stuck now. I've got Apache installed and running, and I've ran ./configure in the PHP directory with the necessary flags. However, the next step in the process listed in the guide is to do a make. BUt when I do that, this is what I get: Code: make: *** No targets specified and no makefile found. Stop. There's nothing in the install guide that says I have to specify a makefile, and it isn't covered in the FAQ either.
View Replies !
SPARC And Solaris 10
I'm being moved from a windows platform to a Unix platform due to some corporate restructuring. I've been coding .asp pages and was about to move from .asp to .php on windows. Can you tell me: i know that PHP runs on the platform SPARC and Solaris 10, but does it require Apache or can it run on the native Solaris web server?
View Replies !
'rsh' To Solaris 8
When I ran remote shell to a Sun Solaris 8 box from W2K box, the DOS' CMD window popped up and stayed there until CGI timeout. I had to kill the window by clicking on 'x'. After that it displayed CGI timeout error. What was going on? PHP script on Windows 2K: <? php /* Call a script on a remote unix box to display the name */ system <"rsh remoteunix -l thisuser "/mybin/test.sh $firstName $lastName"">; ?> Shell script on Unix box: #!/bin/sh firstName=$1 lastName=$2 echo Your name is: $firstName $lastName exit 0
View Replies !
This Script Is Just A Wrapper For Php (solaris!)
Hi there. Had a look around google and found one post from someone with almost the same error and no reply. SunOS webdb 5.8 I have been trying to install PHP to work with Apache and it all works fine apart from trying to run php from bash. ../configure --with-sybase=/usr/local/freetds --with-tdsver=7.0 --with-apxs=/ usr/apache/bin/apxs --with-mysql=/opt/sfw/mysql --enable-sockets All fine... /opt/sfw/bin/gmake install # echo $LD_RUN_PATH /usr/local/ssl/lib:/opt/sfw/mysql/lib/mysql This all works fine with PHP and Apache but when trying from bash I get the error.. # /usr/local/bin/php /usr/local/bin/php: error: /usr/local/bin/.libs/php does not exist This script is just a wrapper for php. See the libtool documentation for more information. I tried a few more things without success and even tried creating `.libs` incase it was a permission problem when it was compiling - still zilch.
View Replies !
Compiling Php 4.3.4 On Solaris 8 Mysql
Exact output is: ld: fatal: file /opt/sfw/mysql/lib/mysql/.libs/libmysqlclient.so: open failed: No such file or directory ld: fatal: File processing errors. No output written to ..libs/libphp4.so Again, why is it lokking for the MySQL client library in ".libs" ?
View Replies !
PHP On Solaris (2.6) And Integer Overflow
I have PHP version 4.4 installed on a Soaris 2.6 system and I'm getting strange results doing math/boolean operators. I have a hashing algorithm that does multiplication, bitwise operations and mod() calls interatively on the characters of a filename. On a linux platform the multiplications start to overflow (as I expect) and the overflow is just dropped. The lower three bytes are masked off like this: $result = $result & 0x00FFFFFF; and the loop continues. On the Solaris platform the multiplication fails very quickly in the loop, and it looks like the overflow bits are wrapped around onto the lower order bytes, eventually I end up with an interger value of 0x00FFFFFF because of the masking above. To solve the problem I had to compile the gmp_* function support into PHP and work with the gmp_* family of functions.
View Replies !
PHP N Apache Installation On Solaris
Can anyone guide me how to install and configure PHP with Apache on Sun's Solaris 2.7 The details of my Solaris are as follows... Sun Ultra 5/10 System v Release 4.0 Solaris 2.7 SunOS Release 5.7 Generic_106541_06
View Replies !
Connecting To Sql Server From Php (solaris)
I have be assigned to find a way to connect to a SQL server from PHP installed on Solaris 9. It would be very helpfull if someone could guide me on this or give me any useful links. I have read about connecting to sql server from PHP (unix) - will the same work for Solaris version.
View Replies !
Installation Problem (Solaris 8)
i want to compiled PHP 4.3.3 under Solaris 8. My Configuration: Solaris Version 5.8 gcc Version 3.2 PHP 4.3.3 The compile prozess stopped by the compiling the "dns.c" Volker Here is my error log: make /bin/sh /export/home/vpn/src/phprojekt/php-4.3.3/libtool --silent --preserve-dup-deps --mode=compile gcc -Iext/standard/ -I/export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/ -DPHP_ATOM_INC -I/export/home/vpn/src/phprojekt/php-4.3.3/include -I/export/home/vpn/src/phprojekt/php-4.3.3/main -I/export/home/vpn/src/phprojekt/php-4.3.3 -I/export/home/vpn/src/phprojekt/php-4.3.3/Zend -I/export/home/vpn/src/phprojekt/mysql-standard-4.0.14-sun-solaris2.8-sparc/ include -I/export/home/vpn/src/phprojekt/php-4.3.3/ext/xml/expat -D_POSIX_PTHREAD_SEMANTICS -I/export/home/vpn/src/phprojekt/php-4.3.3/TSRM -g -O2 -prefer-pic -c /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c -o ext/standard/dns.lo /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c: In function `zif_gethostbynamel': /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c:186: warning: passing arg 2 of `add_next_index_string' makes pointer from integer without a cast /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c: In function `php_gethostbyname': /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c:206: warning: passing arg 1 of `_estrdup' makes pointer from integer without a cast /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c: In function `zif_checkdnsrr': /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c:228: `T_MX' undeclared (first use in this function) /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c:228: (Each undeclared identifier is reported only once /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c:228: for each function it appears in.) /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c:239: `T_A' undeclared (first use in this function) /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c:240: `T_NS' undeclared (first use in this function) /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c:242: `T_PTR' undeclared (first use in this function) /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c:243: `T_ANY' undeclared (first use in this function) /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c:244: `T_SOA' undeclared (first use in this function) /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c:245: `T_CNAME' undeclared (first use in this function) /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c:256: `C_IN' undeclared (first use in this function) /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c: In function `zif_getmxrr': /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c:288: `HEADER' undeclared (first use in this function) /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c:288: `hp' undeclared (first use in this function) /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c:317: `C_IN' undeclared (first use in this function) /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c:317: `T_MX' undeclared (first use in this function) /export/home/vpn/src/phprojekt/php-4.3.3/ext/standard/dns.c:324: parse error before ')' token make: *** [ext/standard/dns.lo] Error 1
View Replies !
Problems Compiling PHP 4.3 On Solaris 8
I'm having trouble compiling PHP 4.3.4 on Solaris 8. This is the error message it is showing: -- start -- Undefined first referenced symbol in file php_parse_date ext/standard/datetime.o ld: fatal: Symbol referencing errors. No output written to sapi/cli/php collect2: ld returned 1 exit status *** Error code 1 make: Fatal error: Command failed for target `sapi/cli/php' -- end -- The most common suggestiong I found while searching google was to upgrade GCC from 2.95 to the latest. I upgraded both the GCC and the libgcc packages and the error still continues. I also tried rolling back to an earlier version (4.3.3) unsuccessfully.
View Replies !
Install Problem Of 5.2.4 On Solaris 8
when I try to ./configure ... I get error about xml2-config is to old, and its pointing to a /usr/local/bin. but I have libxml2 and xml2-config install in /opt/csw/bin So how do I tell php ./configure to use the xml2-config thats in /opt/csw/bin?
View Replies !
Can't Build Apache/PHP/MSSQL On Solaris
Having read everything I can, and compiled apache/php 30/40 times, I cannot seem to get a static version of PHP working with FreeTDS. I know the FreeTDS drivers for MSSQL are working, cos it took minutes to install the Perl Drivers. However, the PHP drivers just will not work ! The BBs/Forums all seem to complain about exactly the same problem, and the only success stories are for Linux. Is this because PHP isn't supported as well as Perl ? Has anyone out there got PHP running on Sparc to talk to an MSSQL server ?
View Replies !
PHP 5.0.1, Solaris 5.9, Sablotron 1.0.2, Config Problems
Can run sabcmd with no problems. But when running a simple php script, it cannot find the sablotron functions. So it does not appear to be linking the Sablotron stuff. Probably just something simple I am missing. Built with: configure --with-xml --with-expat=/usr/local --enable-xslt --with-xslt-sablot=/usr/local Simple PHP script: <?php $parser = xslt_create(); $html= xslt_process($parser, "test.xml", "test.xsl"); xslt_free($parser); echo $html; ?> Returns: Fatal error: Call to undefined function xslt_create() in /tmp/xsl.php on line 2
View Replies !
Xampp For Solaris X86, Need Zipped File
trying to get xampp....0.8.1.sh for solaris 9 x86. I only have access to the web via a windows box to download the .sh file. Windows corrupts the file so can not get it to the unix box tied up behind a firewall. Can anyone do a gzipped version of the xampp file for me?
View Replies !
|