 | |  | | | Photopost Pro Bug Reports Post post installation PhotoPost Pro problems here. |
January 2nd, 2009, 02:37 PM
|
#1 (permalink)
| | Member
Join Date: Feb 2008
Posts: 63
| Admin Move / Delete
returns javascript error - wont work!
Also, upload from URL doesnt seem to be working either...
|
| |
January 2nd, 2009, 07:07 PM
|
#2 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,940
|
What is the url and a login to the gallery I am not seeing any issues with that function. One thing do you run any custom java on your pages that may be interferring?
Upload from url requires the full url to a page including the html pages name and that page must be using img tags in the html to grab the image and in most all cases full urls.
|
| |
January 2nd, 2009, 07:40 PM
|
#3 (permalink)
| | Member
Join Date: Feb 2008
Posts: 63
|
Page is private eg not yet released to the public yet ...
There is no custom scripting - further by the look of it (several others experiencing exact same issue) this is a BUG with the latest version of photopost. if you dont see it, then I would question whether or not you are running the exact same version of photopost and/or the latest vbulletin. I have a brand new fresh install of both vbulletin and photopost - nothing else going on.
I checked in FF and move/delete doesnt work in that browser either...
Most of the controls will work - though they all do return a javascript error ... so its something with the SendInfoReq scripting ...
Here is the scripting thats being used .... Quote:
function sendInfoReq(what,photo) {
req.open('get', xxxxxxxxx/showframe.php?action='+what+'&photo='+photo);
req.onreadystatechange = handleResponse;
req.send(null);
}
| Most of the others go like action=cal / action=feature / etc I am wondering if that scripting should say action=info and something else - beats me ... but I have a good hunch...
Last edited by cherrycola; January 2nd, 2009 at 07:48 PM.
|
| |
January 2nd, 2009, 07:43 PM
|
#4 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,940
|
Our java should have nothing to do with vbulletin but I am using the latest non beta vb and always our latest code. Works fine for me. You can email us a link and login to take a look if its private.
|
| |
January 2nd, 2009, 07:52 PM
|
#5 (permalink)
| | Member
Join Date: Feb 2008
Posts: 63
|
I am currently looking to find which file has that script in it so that I can add in the bit I have a hunch on ...
|
| |
January 2nd, 2009, 07:55 PM
|
#6 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,940
|
it is simple java in showphoto.php
|
| |
January 2nd, 2009, 07:57 PM
|
#7 (permalink)
| | Member
Join Date: Feb 2008
Posts: 63
|
Nope, its in pp-inc.php ... going to test it now...
|
| |
January 2nd, 2009, 08:11 PM
|
#8 (permalink)
| | Member
Join Date: Feb 2008
Posts: 63
|
Nope info=info didnt work, must be something else ...
Anyway - none of the SendInfoReq calls are working without a JS error. Also the SendFeatReq also returns JS error ...
I guess I will have to set up an account for you to see what I am seeing.
|
| |
January 2nd, 2009, 08:18 PM
|
#9 (permalink)
| | Member
Join Date: Feb 2008
Posts: 63
|
Ok, I completed the contact us form submission with relevant info.... I will wait to hear back from you.
Thanks.
|
| |
January 3rd, 2009, 08:31 AM
|
#10 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,940
| Main Index - PhotoPost Photo Gallery
I will check it out but you can see our ajax does work right here on our very own site.
|
| |
January 3rd, 2009, 10:21 AM
|
#11 (permalink)
| | Member
Join Date: Feb 2008
Posts: 63
|
Sorry Chuck, but I could care less if it works on your site - fact is its not working on my site (a brand new clean install).
|
| |
January 3rd, 2009, 10:43 AM
|
#12 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,940
|
I responded to your email lets keep discussion there thanks.
|
| |
January 3rd, 2009, 05:14 PM
|
#13 (permalink)
| | Member
Join Date: Feb 2008
Posts: 63
|
I just figured out what was going on ...
The JS files were being loaded from the root directory instead of the / js/ directory where they actually were. Not sure if this was something set up when I installed or if its in the photopost php files - Ive had a few drinks so I cant think straight.
If its in the files - thank me for figuring it out for you  hahaha maybe even send me some coding royalties for todays headache - LMAO!
Laters!
GO COLTS! -EDIT FOUND WHERE ITS AT ...
php-inc ... Quote:
$javapopup .= "<script type=\"text/javascript\" src=\"{$Globals['maindir']}/tjpzoom.js\"></script>\n
<script type=\"text/javascript\" src=\"{$Globals['maindir']}/instant.js\"></script>";
| notice its loading from root and NOT the / js/ .... youre welcome.  Really I am quite happy to have this one behind me!
Last edited by cherrycola; January 3rd, 2009 at 05:21 PM.
Reason: EDIT - its in the php-inc
|
| |
January 3rd, 2009, 05:53 PM
|
#14 (permalink)
| | Member
Join Date: Feb 2008
Posts: 63
|
Also ...
Don't forget to move the session start in the uploadphoto.php to the top of that file ... I got that one too
Couple bugs FIXED!
Now I will go try to fix the "Retrieve all images from a URL" BUG since that isnt working either.
|
| |
January 3rd, 2009, 07:31 PM
|
#15 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,940
|
That may be for the zoom true but the sendfeat is defined in pp-inc.php and does not use external java files and the other java files like lightbox are all loaded from the js directory correctly.
In fact the only thing I see not loaded correctly is the zoom script which happens to be a recently reported bug,
|
| |
January 3rd, 2009, 08:45 PM
|
#16 (permalink)
| | Member
Join Date: Feb 2008
Posts: 63
|
The instant. js was also called incorrectly ... if they dont have anything to do with those Send---Req functions not sure why the lack of those loading would have been causing all of those functions to not work...
Anyway I figured it out now so all is good on that particular front - I just have to find out why send images from a URL isnt working.
--------
Well that didnt solve everything either - the more function does not work. SendPhotoReq ...
---------
In fact that didnt solve anything - none of the features are working again. I guess it was total coincidence that they worked when I added the correct path to those unrelated JS files. CRAZY!!!!!
Last edited by cherrycola; January 4th, 2009 at 01:14 AM.
|
| |
January 4th, 2009, 01:43 AM
|
#17 (permalink)
| | Member
Join Date: Feb 2008
Posts: 63
| We're sorry, but the system experienced an unrecoverable error. Please try again later.
WTF?
|
| |
January 4th, 2009, 02:03 AM
|
#18 (permalink)
| | Member
Join Date: Feb 2008
Posts: 63
|
......................
Last edited by cherrycola; January 4th, 2009 at 03:16 AM.
|
| |
January 4th, 2009, 02:43 PM
|
#19 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,940
|
This would all depend on what changes your making to your site if anything was done above and beyond correcting a js path. That is a mysql error something totally different.
You can turn on debug setting to display errors on and when logged in as admin you should see your error.
|
| |
March 20th, 2010, 10:07 AM
|
#20 (permalink)
| | Member Verified Customer
Join Date: Nov 2006 Location: the Netherlands
Posts: 39
|
I have the same problem: clicking on the admin 'move/delete' link in the foldout menu does nothing. 'Hide Image' and 'Close comments' however do work.
|
| | |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | | | | Thread Tools | | | | Display Modes | Rate This Thread | Linear Mode | |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | All times are GMT -5. The time now is 07:54 PM. | |