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 Mike Lewis 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. shavenlunatic

    XML Image Gallery Management

    Thanks for the additional info jpadie, very much appreciated. I will have a play tonight but yeah, server load is a concern (it being a VPS) but there will be new images uploaded only occasionally and very few actual hits on the page I expect so I'll monitor it and see how it goes :) ________...
  2. shavenlunatic

    XML Image Gallery Management

    you sir, are awesome sauce... if there was a way of adding 10 stars to each post I would :) ________ clueless
  3. shavenlunatic

    XML Image Gallery Management

    apparently so: GD Support enabled GD Version bundled (2.0.28 compatible) FreeType Support enabled FreeType Linkage with freetype FreeType Version 2.2.1 GIF Read Support enabled GIF Create Support enabled JPG Support enabled PNG Support enabled WBMP Support enabled XBM Support enabled ________...
  4. shavenlunatic

    XML Image Gallery Management

    Have checked /etc/php.ini and nothing is listed in disable_functions ________ clueless
  5. shavenlunatic

    XML Image Gallery Management

    PHP Version 5.1.6 :/ guess I start mooching through config files then eh? lol ________ clueless
  6. shavenlunatic

    XML Image Gallery Management

    ooh, it really does work :) well, using the latest snapshot of code i now get: Fatal error: Call to undefined function image_type_to_extension() in /var/my/server/filepath/index.php on line 133 having a look at it now as I've never used image functions before but thought I'd update this here...
  7. shavenlunatic

    XML Image Gallery Management

    tested in /tmp and still same issue ________ clueless
  8. shavenlunatic

    XML Image Gallery Management

    It's a Linux (CentOS 5) server ________ clueless
  9. shavenlunatic

    XML Image Gallery Management

    hmm, can't seem to get it to process properly. it seems to have permissions to write new files ok as it creates the testImageStore.txt if I have that line in (which contains a:0:{} ) Form draws, submits, blank page loads. Am I missing something simple which I should be amending here...
  10. shavenlunatic

    XML Image Gallery Management

    Wow, talk about above and beyond jpadie! Many thanks for taking the time, it is very much appreciated. I'll have a sit down within the next hour or so and have a play. It's not going to be holding many images, it will be in the hundreds rather than the thousands and the site will get very...
  11. shavenlunatic

    XML Image Gallery Management

    ah! I knew there was a better way I just had a mental block. CSV will do just fine, It's only going to be a form with an image upload and a couple of textboxes, if i add a timestamp and an incremental number at the point of upload the problem is sorted and I'll just dump the CSV into an array...
  12. shavenlunatic

    XML Image Gallery Management

    Hi, Just looking for a point in the right direction as I can't seem to figure out/find the best way to get started. I wish to create the facility for someone to upload images and descriptions associated to that image to the web server via a form. I wish to do this without a MySQL back end so...
  13. shavenlunatic

    Multiple Actions with iif

    Apparantley can't, I was foolishly still treating iif like an if statement rather than function.. ________ clueless
  14. shavenlunatic

    Multiple Actions with iif

    Hi, IN SSRS, I have a cell in a table I basically want to do the following: iif(Something = 1, PerformAction1 and PerformAction2, PerformAction3) Is it possible to perform 2 actions if an iif statement returns true? ________ clueless
  15. shavenlunatic

    IE z-index issues

    Sorry I took so long to respond. You suggestion did solve a large chunk of our problem and we managed to work through the rest and it's now ok. Thanks Vragabond :) ________ clueless
  16. shavenlunatic

    IE z-index issues

    hmm, I don't know what the etiquette here is for posting URLs but if a mod deems it as advertising I will issue my apology www.demonwar.net It will require a log in for you to see the page - I've created a temporary account so you can get in to check (or you can sign up yourself if you...
  17. shavenlunatic

    IE z-index issues

    1. yeah, we realise this, but for sake of better technologies we are not attempting to make the site fully compatible with IE6 otherwise we would end up in a padded cell (no pun intended) 2. didn't notice that, thank you :) 3. #map_main holds the map image ________ clueless
  18. shavenlunatic

    IE z-index issues

    Hello CSS Peoples :) We are creating an interactive map that allows the user to travel using a grid reference system The map consists of a number of layers: 1. The main wrapper that holds the map 2. The map itself 3. The grid overlay made from a number of css squares 4. A number of icons placed...
  19. shavenlunatic

    I'm stumped - Adding new records!

    INT, INT, VARCHAR in that order for the fields I have listed." ok, then the following ammended query should post the data with no problems (as long as the data held in the variables is ok) $sql = "INSERT INTO po (supplier_id,createdby_id,desc) VALUES (".$s_id.",1,'".$desc."')"; ________ clueless
  20. shavenlunatic

    I'm stumped - Adding new records!

    i generally use $sql = "INSERT INTO po (supplier_id,createdby_id,desc) VALUES (".$s_id.", 1, ".$desc.")"; but for all I know that could be a terrible case of bad practice :) ________ clueless

Part and Inventory Search

Back
Top