PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Photopost Pro Installation & Upgrades (http://www.photopost.com/forum/photopost-pro-installation-upgrades/)
-   -   SQL Error when uploading photos (http://www.photopost.com/forum/photopost-pro-installation-upgrades/110326-sql-error-when-uploading-photos.html)

kevinrstruck October 26th, 2004 06:02 PM

SQL Error when uploading photos
 
MySQL error reported!

Script: bulkupload

Query: INSERT INTO notify (id,userid,photo) values(NULL,,14935)

Result: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '14935)' at line 1

Database handle: Resource id #39

http://thephotostation.net


I am not sure if it is the same problem as this thread (http://www.photopost.com/members/for...ght=bulkupload) so I wanted to make sure before I tried to do anything:

Chuck S October 26th, 2004 09:56 PM

actually

Try changing line 681 of image-inc.php from

$query = "INSERT INTO {$Globals['pp_db_prefix']}notify (id,userid,photo) values(NULL,$upuser,$photoid)";

to

$query = "INSERT INTO {$Globals['pp_db_prefix']}notify (id,userid,photo) values(NULL,$upuserid,$lastphotoid)";


All times are GMT -5. The time now is 09:47 PM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97