AnaRita
Forum Replies Created
-
Same here.
Hi Dan,
I have now updated to version 1.0 and PHP 5.4.31. I still get 500 error when adding or updating a client. The first time I used SI, I started creating an estimate and, in the estimate form, on “Estimate for Client N/A” field, I clicked the plus sign, completed the popup new client form (company name and country), and clicked the “Create Client” button. The popup closed but the “Estimate for Client N/A” field was blank (see screenshot). That’s when I went to the clients main page and tried creating the client there. Clicked “Add Client”, filled Company Name and Country. It’s when I clicked Publish that the first 500 error appeared. Hope this helps.Thank you for your prompt reply. I’m on Siteground and using the default 5.3.29 PHP version.
Could install. Then the 500 error returned when adding a client. Could return to the homepage, though. Then updating the client gave the same 500 error.
Same with mine. Hosting at Siteground.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Remove "a" tag from first object on trailHi, It’s not the Home breadcrumb, it’s a parent page which has no content. Ex.: Regions in https://ams3.siteground.eu/~ceaiulco/cei/en/regions/asia/
Forum: Plugins
In reply to: [Easing Slider] Slider not appearingI believe this is connected with this other topic: https://www.ads-software.com/support/topic/slideshow-is-loading-endlessly?replies=5
Forum: Plugins
In reply to: [Easing Slider] Slider not appearingI have a similar problem. I already deactivated all plugins. This started happening with one of the latest WP update. I haven’t changed the theme code for some time. I’m using, in fact, the “Premium plugin” but I can’t find the support for it. I tried installing the Easing lite, and problem remains. It’s at cea.iscte.pt.
Forum: Plugins
In reply to: [DukaPress] [Plugin: DukaPress] "Send payment Notification" not workingThank you, I did. But it seems that the automatic email when the order status changes to “Paid” is not being sent.
Forum: Plugins
In reply to: [DukaPress] [Plugin: DukaPress] "Send payment Notification" not workingThank you. I will.
Forum: Plugins
In reply to: [Plugin: Get Posts] Problems inserting codeUse
<?php echo (do_shortcode('[get_posts]')); ?>
Forum: Plugins
In reply to: [Plugin: Aleph] Filter user list by roleIn UserQuery.php
//TODO: case admins, moderators, commenters, etc. if (!empty($q['user_type'])) { switch($q['user_type']) { case 'authors': $distinct .= 'DISTINCT'; $join .= " INNER JOIN $wpdb->posts ON ($wpdb->users.ID = $wpdb->posts.post_author) "; $where .= " AND $wpdb->posts.post_type = 'post' AND $wpdb->posts.post_status = 'publish' "; break; default: $where .= " AND ID = ANY (SELECT user_id FROM $wpdb->usermeta WHERE meta_key = 'wp_capabilities' AND meta_value RLIKE 'academic')"; break; } }