Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: cadbilbao
  • Content: Threads
  • Order by date
  1. cadbilbao

    undefined symbol: gdImageCreateFromGif

    Hi. Trying to install GD Perl interface (by Lincoln D. Stein) on Linux. I installed libgd on '/usr/local/gd'. I think it's well installed: []# /usr/local/gd/bin/gdlib-config --features GD_JPEG GD_FREETYPE GD_PNG GD_GIF GD_GIFANIM GD_OPENPOLYGON []# /usr/local/gd/bin/gdlib-config --version...
  2. cadbilbao

    How to get GIF support with Perl-GD library? (Can't locate newFromGif)

    Hi. Using Perl v5.8.3 on Linux, I'm trying to install GD interface for Perl (made by Lincoln Stein). I installed GD, zlib, jpeg-6b and freetype from sources (the very last versions). When executing script, I get this error message: ----- Can't locate object method "newFromGif" via package...
  3. cadbilbao

    ERROR 1045 (28000): Access denied for user 'root'@'localhost'

    Hi. Using mySQL 4.1.22 on Linux, I got this error message suddenly this morning (it worked ok yesterday): --------- [root@server]# /usr/local/mysql/bin/mysql -u root -p Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) ---------- I created a...
  4. cadbilbao

    Can I create a table with 1.8*10^11 rows?

    Hi. I'm trying to create a table with 1.8*10^11 rows? Is it possible with mySQL v4? I suppose it will take a lot of time to handle it, right? Thank you very much.
  5. cadbilbao

    Handling a 450,000x450,000 array with Perl

    Hi. I'd like to create a program to handle data (natural numbers) within a 450,000 x 450,000 array. I'm considering Perl, but I don't know is it's powerful enough to manage it. Thank you very much.
  6. cadbilbao

    "include foo.php" doesn't work

    Hi. With 4.4.2 + Apache 2.0 on Linux, I've got these PHP lines within '/var/www/html/vhosts/foo.com/httpdocs/index.php': ------- print "Here 1"; include ('/var/www/html/vhosts/foo.com/httpdocs/foo.php'); print "Here 2"; ------- I get "Here 1" message, but not "Here 2", and...
  7. cadbilbao

    PHP script to simply manage tables

    Hi. I've got three tables (users, books and news), and I would like to crete a web interface to manage their data (create items, modify items, delete items). Is there any PHP script to create it automatically (in the same way phpMyAdmin does, but with less functionalities)? Thank you very much.
  8. cadbilbao

    Can't open file: 'my_table.MYI': could be the reason of a reboot?

    Hi. My Linux server has just restarted due to memory problems. Browsing mySQL logs, I've found out 5,000 lines like these in less than one hour: -------------- 060808 1:27:39 [ERROR] /usr/sbin/mysqld: Can't open file: 'my_table.MYI' (errno: 145) 060808 1:27:39 [ERROR] /usr/sbin/mysqld: Can't...
  9. cadbilbao

    Table 'mysql.host' doesn't exist

    Hi. Working with mySQL 3.23.58 on Linux, I get this error when trying to start mysqld: -------------------- 060716 03:07:21 mysqld started 060716 03:07:21 /usr/local/mysql/libexec/mysqld: Table 'mysql.host' doesn't exist 060716 03:07:21 mysqld ended --------------------- This Linux machine...
  10. cadbilbao

    Array info dissapears when using functions

    Hi. I created these PHP scripts, in order to execute 'foo.php' by using 'ob_start' via another script ('admin.php'). 'foo.php' requires some libraries ('functions_for_foo.php' where some arrays are handled) and 'admin.php' requires other libraries ('unctions_for_admin.php')...
  11. cadbilbao

    Arrays data dissapear when using include("foo.php")

    Hi. If I create "array_info.php": --------- $myList = array ("John", "Mary"); ---------- and "foo.php": -------- require_once("array_info.php"); print_r($myList); ------- it works ok. But if I create "another_script.php": --------- include("foo.php"); --------- myList data dissapear, and...
  12. cadbilbao

    How to propagate faster subdomains through web proxies

    Hi. Usin Bind 9.2.4, I created a subdomain on my DNS server, by adding a line at '/var/named/zone/mydomain.com': ----------- foo A 82.194.72.73 ----------- I restarted Bind, and waited 48 hours. After them, I was able to access 'foo.mydomain.com' with my web browser from my...
  13. cadbilbao

    How to parse an 'xml_rpc_value Object'

    As a response of an XML-RPC server petition, I got this array: --------------------------------------- xml_rpc_value Object ( [me] => Array ( [struct] => Array ( [name] => xml_rpc_value Object (...
  14. cadbilbao

    asp.net software to create blogs

    Hi. Is there any list with asp.net software to create blogs? I use currently WordPress on PHP+MySQL, but I want to migrate it to .net Thank you very much.
  15. cadbilbao

    How to execute two commands within 'system'

    Hi. I want to execute these two system commands: # cd /home/foo1/foo2 # /usr/local/php/bin/php /home/foo1/foo2/script.php If I do it via shell, it works ok. But If I do: ------- system("cd /home/foo1/foo2/", $retval); system("/usr/local/php/bin/php /home/foo1/foo2/script.php", $retval)...
  16. cadbilbao

    How to write PHP standard output on a text file?

    Hi. Using PHP 4.3.11, I want my script not to write standard output on the webpage, but on a textfile. I tried with: $variableName = 44; system("/usr/local/php/bin/php /home/foo/script.php > /home/foo/file.txt", $retval); But '/home/foo/script.php' doesn't consider $variableName. Is there...
  17. cadbilbao

    Server.Execute: How to transmit variables between VB and C#

    Hi. I've got two scripts test1.aspx <%@ Page Language="VB" %> <% Dim myVar As String myVar = "Hello!" Server.Execute("test2.aspx") %> test2.aspx <script language="C#" runat="server"> void Page_Load(Object Src, EventArgs E) { myPage.Text = myVar; } </script> <asp:literal...
  18. cadbilbao

    Can't locate object method &quot;newFromJpeg&quot; via package &quot;GD::Image&q

    Hi. I'm trying to execute this piece of code: ---------- #!/usr/bin/perl use GD; my $srcimage = GD::Image->newFromJpeg("/home/john/dog.jpg"); my ($srcW,$srcH) = $srcimage->getBounds(); -------------- And I get this...
  19. cadbilbao

    GD::Graph: How to invert Y axis

    Hi. Working with GD::Graph::lines, I want to make a graph of historical ranking data. I've got: @dataArray = ('4', '3', '5', '1'); But when making the graph, '1' appears at the bottom of the the image, and I want it to appear at the top, because it's the first position of the ranking. I want...
  20. cadbilbao

    Installing GD-2.30: Can't load './blib/arch/auto/GD/GD.so'

    Hi. Using Perl v5.8.5 on Fedora Core 2, I'm not able to install GD-2.30: ---------- [root@pc GD-2.30]# make test PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t t/GD..........Can't load './blib/arch/auto/GD/GD.so' for module GD...

Part and Inventory Search

Back
Top