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 SkipVought 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: *

  1. peoplesrepublican

    HTML Mail with PHP/PEAR

    Hi, I am getting an interesting (aren't they all) problem when I send an HTML mail using PEAR from a PHP script. There are links to images in the HTML and on occasion (it's repeatable) the . between the filename and the extension disappears, leaving the image links broken. I have looked at...
  2. peoplesrepublican

    JVM termination with standalone oc4j

    Hi, We have several (around 15) standalone oc4j instances running on a Sun machine, the details are as follows: Machine: SunFire V1280 with 8 processors (sun4u sparc) and 24 GB RAM OS: SunOS 5.9 Generic_117171-02 oc4j version: 9.0.4.0.0 There is also a 10g installation on this machine. We...
  3. peoplesrepublican

    Process termination when using objects

    Sorry, I forgot to include the object size info. The class file for the Ad object ($ad) is 3425 bytes - I'm assuming that this relates directly to the size of the created object? Cheers
  4. peoplesrepublican

    Process termination when using objects

    Here is a snippet of the code in question: for ($i=0;$i<100;$i++) { $this_ad = get_ad($cat,false); $sample_ads[$this_ad->get_filename()] += 1; } mysql_close(); $ad_keys = array_keys($sample_ads); sort($ad_keys); echo "<table border='1'>\n"; foreach ($ad_keys as $ad_key) { echo...
  5. peoplesrepublican

    Process termination when using objects

    I don't have access to the server logs, since I'm using a web host for my development. I have had a look at phpinfo() but I couldn't see any memory settings, which values should I be looking for? The phpinfo() can be found here if you wish to look: http://personal.crystalduck.com/phpinfo.php...
  6. peoplesrepublican

    Process termination when using objects

    Hi, I have some code which runs through a loop. In each iteration of the loop, a function is called which returns a reference to an object (created from a class) to a variable. The loop never runs to completion; after between 75-80 loops processing appears to just terminate...there are no...

Part and Inventory Search

Back
Top