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 TouchToneTommy 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
  • 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. Thank you very much for your quick answers. I try to handle data from a 450x450 meter surface. I've got 100,000 elements distributed on this surface, and each square millimeter can hold one or more elements. So the array to create is a sparse one: most of square millimeters holds zero...
  6. 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.
  7. 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...
  8. 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.
  9. 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...
  10. cadbilbao

    Table 'mysql.host' doesn't exist

    I created this very-simple '/etc/my.conf': -------- [mysqld] basedir=/usr/local/mysql datadir=/usr/local/mysql/var socket=/tmp/mysql.sock ----------- But it doesn't still work. '/usr/local/mysql/var' hosts the data, but within 'mysql' subdirectory, there are only two files: --------------...
  11. 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...
  12. 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')...
  13. cadbilbao

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

    Thank you. You're right. I'll open another thread with more concise information.
  14. 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...
  15. 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...
  16. 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 (...
  17. 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.
  18. 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)...
  19. 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...
  20. 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...

Part and Inventory Search

Back
Top