MicrostockGroup Sponsors

Symbiostock Test Build - the Bug Stomping Thread!

Started by Leo Blanchette, March 26, 2013, 19:02

Previous topic - Next topic

It Works // It Doesn't work. Please fill out the checklist. (Tell me bugs to add)

WORKING: Saving- Prices/Settings/Network/Author values.
11 (57.9%)
BROKEN: Saving- Prices/Settings/Network/Author values.
0 (0%)
WORKING: Image Uploading
10 (52.6%)
BROKEN: Image Uploading
2 (10.5%)
WORKING: Image Processing
10 (52.6%)
BROKEN: Image Processing
1 (5.3%)
WORKING: Non-root-level-install
7 (36.8%)
BROKEN: Non-root-level-install
0 (0%)
WORKING: Child Theme template
8 (42.1%)
BROKEN: Child Theme template
1 (5.3%)
WORKING: Network Search/Pagination
4 (21.1%)
BROKEN: Network Search/Pagination
1 (5.3%)

Total Members Voted: 19

daveh900

FOUND ANOTHER HUGE BUG!

The 'Donate' button in the SymbioStock admin area doesn't lead anywhere.  :o

ajt

Another small bug :)

$watermark_path = $_SERVER[ 'DOCUMENT_ROOT' ] . trim( $url_vars[ 'path' ] );
                                     ^^^^^^^^^^
My fisheye straightener: http://anglerfish.ajotte.com

Amanda_K

Still Having the weird PayPal error when I try to checkout, it just goes to a PayPal page that says:

Error Detected

Some required information is missing or incomplete. Please correct your entries and try again.

I deleted and re-installed the latest version of the theme, tried without any child theme and all my other plugins deactivated.  Totally stumped.  I'm doing some Googling hopefully I can figure out a place to start troubleshooting.  Gotta love those super general error messages! :)

Travelling-light

Quote from: Chico on April 03, 2013, 18:12
Well, i did some progress. Right now i'm testing new user register and i think we (or me) have a problem:

I try to register a user named "joao"

Put your name and mail.

Receive a mail with password

Back to login page and put name and password

I expect to be placed in main page of my site, but i receive screem below.

It's my fault? Some user preference configuration?

That's normal when you register on a Wordpress site. It was a surprise to me when I first registered on a WP based shopping site! You can only adjust your own profile, then go back to the site by the link at top left.

Chico

Quote from: Travelling-light on April 03, 2013, 21:00
Quote from: Chico on April 03, 2013, 18:12
Well, i did some progress. Right now i'm testing new user register and i think we (or me) have a problem:

I try to register a user named "joao"

Put your name and mail.

Receive a mail with password

Back to login page and put name and password

I expect to be placed in main page of my site, but i receive screem below.

It's my fault? Some user preference configuration?

That's normal when you register on a Wordpress site. It was a surprise to me when I first registered on a WP based shopping site! You can only adjust your own profile, then go back to the site by the link at top left.

Thanks Travelling.

Some way to bypass this? I think it's a bit strange for a regular user, i guess.

Leo Blanchette

Quote from: 9lives on April 03, 2013, 20:57
Still Having the weird PayPal error when I try to checkout, it just goes to a PayPal page that says:

Error Detected

Some required information is missing or incomplete. Please correct your entries and try again.

I deleted and re-installed the latest version of the theme, tried without any child theme and all my other plugins deactivated.  Totally stumped.  I'm doing some Googling hopefully I can figure out a place to start troubleshooting.  Gotta love those super general error messages! :)

I'd like to help more but after the farbled category bug (I gave it a name) I have to truly walk away for two weeks. Been succesfull though. It might be worth putting your heads together to find some developers who might be interested in this project. Your problem might be a simple one - change browsers?

I'd like to fix it so you don't have to change browsers, but sadly I've already overstayed my time in this project and need to catch up on other things. It will be in the works when I get back.

http://www.microstockgroup.com/symbiostock-development-area/developers-needed-and-more-testers/msg308342/?topicseen#new

Amanda_K

No worries Leo, I'll keep working to figure it out, I may have a PHP developer friend I can drag into help :) I'll be sure to post if anyone else runs into the same issue and email you what I find for whenever you get back.. Now GO!

farbled

Quote from: Leo on April 03, 2013, 21:11

I'd like to help more but after the farbled category bug (I gave it a name) I have to truly walk away for two weeks. Been succesfull though. It might be worth putting your heads together to find some developers who might be interested in this project. Your problem might be a simple one - change browsers?

I'd like to fix it so you don't have to change browsers, but sadly I've already overstayed my time in this project and need to catch up on other things. It will be in the works when I get back.

http://www.microstockgroup.com/symbiostock-development-area/developers-needed-and-more-testers/msg308342/?topicseen#new
hee, I'm famous for breaking things. Not just here. So did you say you had a fix for my bug or will we need to put collective heads together? Either way is ok and thanks for postponing your return to your regular work. Much appreciated!

cathyslife

Quote from: 9lives on April 03, 2013, 21:17
No worries Leo, I'll keep working to figure it out, I may have a PHP developer friend I can drag into help :) I'll be sure to post if anyone else runs into the same issue and email you what I find for whenever you get back.. Now GO!


There is a thread here that talked about with the new update you only have to put your paypal email acct in instead of the ipn stuff. I dont know which thread, maybe someone can jump in with that. Im not thatbfar along in my build so i dont really know what i am talking about, but just wanted to mention in case you didnt see that.
#boycottShutterstock   #shutterstockBoycott

Amanda_K

Thanks I'll search through and find that, as a temporary fix, when I comment out this line in the cart everything works (payment, downloads, emails ...perfect):

<input type="hidden" name="currency_code" value="<?php echo $curr[2]; ?>">

So I've narrowed it down to that...still searching!


Leo Blanchette

Quote from: 9lives on April 03, 2013, 21:50
Thanks I'll search through and find that, as a temporary fix, when I comment out this line in the cart everything works (payment, downloads, emails ...perfect):

<input type="hidden" name="currency_code" value="<?php echo $curr[2]; ?>">

So I've narrowed it down to that...still searching!

Wow. I'm amazed. You guys are learning a lot. When this thing is completely smoothed out you'll be experts. "Commenting out" stuff is programmer talk!

Thats the line that says "I'm charging in whatever currency" I'll look at it quickly.

Leo Blanchette

Congradulations! You've discovered an HTML error.

It is:           <input type="hidden" name="currency_code" value="<?php echo $curr[2]; ?>">
Should be: <input type="hidden" name="currency_code" value="<?php echo $curr[2]; ?>" />

See the very small diff? Since you worked so hard to solve it I'll post a new download just for you.


farbled

Ok, I figured out the "no results" for search for specific terms. When the category issue came up originally, it somehow changed the keyword slug behind the scenes and it doesn't seem to update with a new theme install.

You have to go to the general keywords section (RF Images -> Image Keywords) in the backend and correct the slug for any keyword that you may have previously used as a category title.

One down, one to go. :)

Amanda_K

AWESOME!!! Now get out of here! lol  (We may have to ask Leaf to temporarily ban you...the only way to assure you a break :D)

Leo Blanchette

Part of my personality - I can't "walk away" from a perceived problem very easy. But with a few developers here I might just even more a vaca :D

cathyslife

#boycottShutterstock   #shutterstockBoycott

steheap

Just before you go Leo - there is an error in the download link you just gave - I'm getting an error from your github site about the file being too big

Steve
Stock Photo Blog: http://www.backyardsilver.com

Leo Blanchette




Leo Blanchette


cathyslife

#boycottShutterstock   #shutterstockBoycott

ajt

I noticed, that sometimes after payment I return to "my shop", I see full cart and total sum as it was just before paying. When I refresh page after while, cart is empty and licensed files are below. First time I thought that something went wrong, so I clicked again on "Get licenses" and payed again. I think that many real customers can do the same.
I don't know if is is a bug or a feature  :)


My fisheye straightener: http://anglerfish.ajotte.com

cidepix

#374
Great! Image processing broken again.. I was processing just fine 2 days ago.. I am getting the same error I got before..

changing this value to "On" had sorted it out the other day.. allow_url_fopen = on

but now, all of a sudden it doesn't work.. just to make sure, I deleted a file that processed fine the other day, and re-uploaded and re-processed the same image without success this time..