Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

lerningkurv

Archived
  • Posts

    52
  • Joined

  • Last visited

About lerningkurv

  • Birthday 04/10/1968

Profile Information

  • Real Name
    david
  • Gender
    Male
  • Location
    4210

lerningkurv's Achievements

  1. Flash carousel works great until i set it to resize, then I get no images or flash "box" getting this error Call to undefined function imagecreatefromjpeg() in /var/www/html/includes/classes/flash_carousel_image_resize.php on line 44 Ive gone over the forums, googled it, pondered, etc Anyone have an idea ?? Thanks dave
  2. Does anyone else get a connection established to 192.150.18.101 after installing this contribution? It showed up in my firewall logs and I don't recall seeing it prior to this contribution installation.
  3. was it the post from jbrolin regarding register globals that you referred too? i applied the code from that post and things started to get better. I can save a file to temp or download it uploading the file didnt work yet but today has been long so im done for the day. the errors i mentioned are still there too. edited thanks for responding and i will be back at it tomorrow :)
  4. well im getting somewhere at least i was able to download a EP file to view, but im getting some errors Notice: Undefined index: dltype in /var/www/html/catalog/admin/easypopulate.php on line 25 Notice: Undefined index: download in /var/www/html/catalog/admin/easypopulate.php on line 26 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /var/www/html/catalog/admin/easypopulate.php:25) in /var/www/html/catalog/admin/includes/functions/sessions.php on line 68 ok i changed to $tempdir = "/temp/" and now i can save to temp im starting to lose the furrows on my brow...lets see where this goes still working on the error messages
  5. mibble is it the post by jbrolin looks like this 1. Many people had problems with the temp directory which often on a shared server got assiged wrong - this was my first issue which I solved with adding $_SERVER["DOCUMENT_ROOT"] before each $tempdir. this will give the correct root path on a shared server i.e. /usr/local/apache/www/catalog/temp/ 2. The next and biggest problem I had lies in the server I use had "Register globals off" which caused form post and other variables to come back empty. Since my host don't allow register globals to be turned on - this is common on all new PHP versions (PHP 4.2.0 and later). I solved this by adding a couple of lines at the top of easypopulate.php, after the $tempdir declarations: // fix by jb 20040815 set the strings to http post/request, since they don't seem to work on the new server, with register globals=off... $dltype=$_REQUEST['dltype']; $download=$_REQUEST['download']; global $HTTP_POST_FILES; foreach( $HTTP_POST_FILES as $varname => $fileinfo ){ $GLOBALS[$varname] = $fileinfo["tmp_name"]; $GLOBALS[$varname.'_name'] = $fileinfo["name"]; } // end fix jb I hope this will give some people a few days less work on how to get EasyPopulate to work! Regards Jonas
  6. ok ill try to find it. still struggling Any more info you need that could help ? the site is avail online. thanks
  7. ok i had some sysntax error. the "$document_root" change didnt bring any issues but still not working does EP work with register globals off ?? it is off on my server
  8. I did that and no difference, also messed up file manager
  9. what is your setting in DOCUMENT_ROOT and what is the path to your store. /admin/includes/configure.php shows the document root to be /var/www/html/catalog/ path to store is /var/www/html/catalog/
  10. Ive installed ep today. followed the directions and read for hours and hours the easy populate button is there in admin and when you click it does go to EP however none of the functions within ep do anything no error message, it appears to do something and refreshes the page but no files in temp or any other functionality. i have messed with the temp path but didnt help. not sure where to turn with no error messages permission are 777 for the temp files and the full path to the temp file is correct i think with "/var/www/html/catalog/temp" i read a few tidbits about register globals...Its off on this machine hope thats not the problem :) i also read about changing DOCUMENT_ROOT to $DOCUMENT_ROOT but that didnt help and messed up file manager the register globals patch is the only contribution added to an otherewise clean install this is a LAMP box that i have. I'd tell you more if i knew what to include for helpful info
  11. i have installed ep and followed the instructions. it doesnt seem to respond to any of the download or create commands no error message just pops back to ep screen... the full path to temp dir is /var/www/html/catalog/temp and the permissions are 777. no files turn up in the temp dir nor does download its a LAMP box
×
×
  • Create New...