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: cesarcesar
  • Order by date
  1. cesarcesar

    20 Different Tables querys slowing page display

    http://www.empiresolutions.net/clients/zell/structure.zip this is the database structure. 77 tables. ouch i know.
  2. cesarcesar

    20 Different Tables querys slowing page display

    Hello Fellow Programmers, I have an issue with a very large PHP page that calls over 20 different MySql Statements. This page is loading somewhat slow and i want to speed things up. I have looked into sql caching applications like http://eaccelerator.net/ and http://www.danga.com/memcached/...
  3. cesarcesar

    Join table with empty data

    Hello, I'm a novice, and am having issues get a JOIN to work properly. The following code is correct for pulling field values that HAVE a value, but when a field i am requesting has a value like Null, Space, or just empty, the whole query comes back empty. It was suggested i use TRIM in my...
  4. cesarcesar

    AMFPPHP service browser error

    i have AMFPHP installed on php5. when pressing submit in the service browser, the returning screen is white. please advise on a solution. this error happens on all services. when services are called from flash, it works properly. the issue is just with the service browser. thank for the help.
  5. cesarcesar

    exec() not working

    OK i got schooled by some 15 year old kid named "Sliver". man i hope i have a job in a few years!!! This is what he had to say about exec() vs. CURL. I have listed my working code below for any one interested. It basically takes an array (form elements) and passes them to another file on...
  6. cesarcesar

    exec() not working

    Hello all, How to get the $response var to return with a value in it. ____________________________________ www.site1.com/test1.php $post_array = array( "test1" => "a" ,"test2" => "b" ,"test3" => "c" ); // Convert Array to POST string (key_1=val_1&key_2=val_2...) reset($post_array)...
  7. cesarcesar

    Multiple include_path

    great, great thank you. now what about the include_path?
  8. cesarcesar

    Multiple include_path

    I'm trying to set multiple include_paths in php.ini file. I cannot get my second include_path to work. I have this setting now, ;include_path = ".:/php/includes:/var/www/vhosts/includes" My LAMP (PHP 5) server uses Plesk to manage domains. It has 3 .ini files, *php.ini, php.ini.saved_by_psa...
  9. cesarcesar

    Linking Structures

    So i think i have found a working work-around for this. but i thinkit just that a work-around. If anyone can suggest a better method please let me know. //File - /A/index.php or /B/index.php or /C/index.php <? include('whois.php'); include($GLOBALS['whois']."_starter.php"); ?> //File -...
  10. cesarcesar

    Linking Structures

    the starter.php file initiates the session. it also trackes the session. without first calling the file session will not work. I have tried this method but if anyone wants to show an example i will look at it and review against my version. thanks
  11. cesarcesar

    Linking Structures

    I will use a local linking stucture to illustrate my questions. You can read the forum titled "File Organization and Aliasing" for a larger picture of what im trying to accomplish. I have three folders living in /htdocs/ A(main site), B(admin), & C(shopping cart). Inside each folder are files...
  12. cesarcesar

    File Organization and Aliasing

    My resolution was as follows, i am using a local example. This examples updates the location of the include path in the php.ini file. 1. Add a new directory, C:\apache2triad\htdocs\includes\. (You may also use an existing *include_path*) 2. Update *include_path* in php.ini file to also accept...
  13. cesarcesar

    Object Error

    I have just recently updated my server to PHP 5.1. I am getting a grip of errors in my logs now related to an object i use. This is just one of the error. Undefined property: object::$core in /var/www/vhosts/site.com/httpdocs/index.php It is referencing a script i use like - // set object...
  14. cesarcesar

    File Organization and Aliasing

    if i call an absolute path from /path/to/ManagerEngine/index.php to /path/to/site.com/starter.php then it will only work for one site, not all. It was suggested to rename all my starter.php to site_starter.php and put them in the "include_path" defined in the php.ini file. If this works i will...
  15. cesarcesar

    File Organization and Aliasing

    Hello all. I have been working on a Website/CMS (Engine) for a few years now. With every site i build, i just copy the current version of the Engine, make some minor changes and skin it to fit the perticular site i am building. This has worked well for a while. My problem is when i have to make...
  16. cesarcesar

    How To Do Apache Aliasing

    Hello all. I have a question that pertains to Apache Aliases. I have read multiple upon multiple info on this and I am still confused. Guru wisdom is much appreciated. My question is, what is the difference between these two was of aliasing? I have added both my local (WIN-XP) and remote (LAMP)...
  17. cesarcesar

    Which editors to use in conjunction with DreamWeaver 4

    i use EditPlus2 as my editor. its pretty nice for all lanquages C.
  18. cesarcesar

    absolute position from the center of screen horz

    Im trying to position a div on the screen but instead of positioning from 0,0, i want to position from the center of my screen. somethig like 50%,50%. i want to do an absolute position from the center of screen horz, and i cant figure it out. i hope i explained it okay. thanks
  19. cesarcesar

    popup windows

    i am using a pop up script that centers the new popup and makes it the size i want, and it works fine. here lies my question.. after the first popup is launched all is good. but when i try to open a new popup with new dementions the new pop up loads in the current popups page and does not...
  20. cesarcesar

    form input values and cookies

    thanks for the reply, fixed the problem by switching two lines of code, i was setting the value of the input field before actually setting the input field, below is my new script. <form name=&quot;cart3form&quot;> <script language=&quot;JavaScript&quot; type=&quot;text/JavaScript&quot;>...

Part and Inventory Search

Back
Top