Feed items

  • warning: Declaration of views_handler_argument::init(&$view, &$options) should be compatible with views_handler::init(&$view, $options) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/handlers/views_handler_argument.inc on line 48.
  • warning: Declaration of views_handler_filter_boolean_operator::value_validate(&$form, &$form_state) should be compatible with views_handler_filter::value_validate($form, &$form_state) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/handlers/views_handler_filter_boolean_operator.inc on line 111.
  • warning: Declaration of views_plugin_row_node_view::options_form(&$form, &$form_state) should be compatible with views_plugin_row::options_form($form, &$form_state) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/modules/node/views_plugin_row_node_view.inc on line 35.

php[cruise]

It’s been a long time coming … Back in 2004 php[architect] ran a conference-cruise, and ever
since we’ve heard people asking for us to repeat the event. We figured that 12 years was
long enough of a wait. Therefore we’d like to announce php[cruise] happening in 2016!
This 7 day long conference-cruise will be a unique event for the PHP community.
Completely immersive and giving you, the attendee, a hands-on experience not to be matched!





PHP 7.0.0 Released

The PHP development team announces the immediate availability of PHP
7.0.0. This release marks the start of the new major PHP 7 series.

PHP 7.0.0 comes with a new version of the Zend Engine, numerous improvements
and new features such as





Personal blog without PHP

Let’s imagine that you need personal blog. You have some slow free hosting, it has no PHP and no ability to use any server-side at all. Or even worse - you only have account on Dropbox, and you need your blog there.

Or maybe you prefer Markdown-syntax to writing posts in HTML, more by token Markdown format is supported by all popular editors and many web-writing platforms. It would be convenient to store posts in separate files to make it easy to copy one post to Tumblr ect. Also it gives an opportunity to store fles in repository or organize subversioning of articles.





php[cruise]

It’s been a long time coming … Back in 2004 php[architect] ran a conference-cruise, and ever
since we’ve heard people asking for us to repeat the event. We figured that 12 years was
long enough of a wait. Therefore we’d like to announce php[cruise] happening in 2016!
This 7 day long conference-cruise will be a unique event for the PHP community.
Completely immersive and giving you, the attendee, a hands-on experience not to be matched!





MySQL, import.

Hi!
I have a very large database and when I do the import process is very slow.
How can I speed it up?





PHPKonf 2020 Online

Selam! Due to the COVID-19 pandemic we have transformed PHPKonf Istanbul PHP Conference 2020 to an online event. On December 12th we will offer a 1-day, multi-track event free of charge for all attendees!
Go to http://phpkonf.org for registration and more information.





Hook_order: case 'submit' - problem since Ubercart v. 2.2 with Drupal 6

Ubercart has problem working with Pay Pal WPS module.

INTRO from doc: 'submit': When a sale is being completed and the customer has clicked the Submit order button from the checkout screen, the hook is invoked with this op. This gives modules a chance to determine whether or not the order should be allowed. An example use of this is the credit module attempting to process payments when an order is submitted and returning a failure message if the payment failed.
see [url]http://api.ubercart.org/api/function/hook_order/2[/url]





Hide the tag img if empty src.

I hope this is easy. I'm trying to figure out how to add "display none" to an image if the src is empty! This is what i have so far:
[CODE]
var $j = jQuery.noConflict();
$j(document).ready(function(){
var testing = $j("img#logoTest").attr("src");
if(testing == ""){
$j("img#logoTest").css("display","none");
}
});
[/CODE]

Can you tell me what im doing wrong?
Thanks!





preg_replace

This first row is replaced but not the other..
[PHP]preg_replace("/(.*)<\/item>/", "$1", $content);[/PHP]

[HTML]content

content
[/HTML]

How do make both of them replaced