Showing posts with label php. Show all posts
Showing posts with label php. Show all posts

Tuesday, December 31, 2019

Stay Ahead of the Curve with DailyTechTerms: Your Daily Dose of Technical Knowledge on Telegram

If you are a technology enthusiast, you know that keeping up with the latest technical terms and trends can be challenging. With new innovations and advancements happening every day, it can be tough to stay on top of it all. Fortunately, there is a Telegram channel that can help: DailyTechTerms.


DailyTechTerms is an informative Telegram channel that provides subscribers with detailed information about a different technical term every day. Whether you are a seasoned professional or just starting out in the field, this channel is an excellent resource for anyone looking to expand their knowledge and understanding of technology.

The channel covers a wide range of technical topics, from programming languages and software development to hardware and networking. Each day, subscribers receive a post that explains a specific technical term in detail, providing valuable insights and context that can help them stay informed and up-to-date.

One of the great things about DailyTechTerms is that it is accessible to anyone, regardless of their technical background or expertise. The posts are written in a clear and concise language, making them easy to understand even for those who are new to the field.

Whether you are a student, a professional, or just someone who is passionate about technology, DailyTechTerms is a valuable resource that can help you stay informed and up-to-date. By providing subscribers with detailed information about a different technical term every day, this channel helps them expand their knowledge and understanding of technology, empowering them to make informed decisions and stay ahead of the curve.

In conclusion, DailyTechTerms is an informative Telegram channel that provides subscribers with a wealth of valuable information about technical terms and trends. Whether you are a seasoned professional or just starting out in the field, this channel is an excellent resource that can help you stay informed and up-to-date on the latest developments in technology. So why not subscribe today and start expanding your knowledge and understanding of the field!

You can subscribe from https://t.me/dailytechterms or click here


Tuesday, January 1, 2013

Magento - Adding tags and assign to a product from Admin Panel [Solved]


In Magento, we can add tags for a product using the steps below. 
  1. Create a tag from here : Catalog->All Tags-> Add New Tag. 
  2. After creating the tags, click on each tag. You’ll see a set of options to “Edit tag”. 
  3. Go to the “Products tagged as administrator” tab, click on ‘Reset Filter” . You can see all the products by administrator(logined admin user) getting listed. 
  4. Select the products to which you want to assign the tag and then click on “Save Tag”. 
  5. Done - Now you can see the product has been assigned to the respective tag.
  6. Simple as that.

Wednesday, January 25, 2012

PHPMailer with GoDaddy SMTP email script - Resolved.

Here is the working script for PHP Mailer in GoDaddy Hosting,

include("includes/class.phpmailer.php");

date_default_timezone_set('UTC');
define('SMTP_HOST','relay-hosting.secureserver.net');
define('SMTP_PORT',25);
define('SMTP_USERNAME','me@aravindnc.com');
define('SMTP_PASSWORD','me123');
define('SMTP_AUTH',false);

$email = 'aravind_n_c@yahoo.co.in';
$firstName = 'Aravind';

$mail             = new PHPMailerR();
$mail->IsSMTP();
$mail->SMTPDebug                      = 1;                 
$mail->SMTPAuth                           = SMTP_AUTH;                $mail->Host                                   = SMTP_HOST;
$mail->Port                                    = 25;
$mail->Username                           =  SMTP_USERNAME;
$mail->Password                            = SMTP_PASSWORD;
$mail->SetFrom(SMTP_USERNAME,'AravindNC.IN');
$mail->AddReplyTo(SMTP_USERNAME,"AravindNC.IN");
$mail->Subject    = "Welcome to AravindNC.IN";
$mail->AltBody    = "To view the message, please use an HTML compatible email viewer!";
$mail->MsgHTML('This is a test.');
$mail->AddAddress($email, 'Aravind NC');
$mail->Send();

?>
Share this if you got it working.

Tags : PHPMailer with GoDaddy SMTP email server Script working,

Wednesday, October 19, 2011

Fixing Skype Overwriting Phone Numbers in Web Pages

If you have Skype on your computer you may have noticed that sometimes Skype highlights phone numbers automatically when you visit a website. By the developers point of view this can be very frustrating. Not only can it make your site look bad, but it can mess up the layout as well. In fact, just recently we had a client whose page kept breaking because Skype was highlighting his phone number. Fixing this problem is not very hard. All you have to do is add some code to the head of your HTML document and it will prevent Skype from highlighting numbers in your theme no matter what browser it is being displayed on. This is the code you should paste:

"SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />   

Make sure it is between the and tags.

Sunday, April 24, 2011

Wordpress HTTP Error on Image Upload after Crunching - Fixed

Hi Folks, In Wordpress while uploading a file sometime you may encounter an HTTP Error while crunching file.
Usually this error can be resolved by adding a line of code in htaccess file.

.htaccess file
# BEGIN WordPress

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

# END WordPress



Edit your htaccess file and add the last line of code.
# BEGIN WordPress

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

# END WordPress

AddType x-mapp-php5 .php .php4

Your htaccess file will look like above. Upload it to your wordpress site root.
Try It !! Best of Luck...

Friday, April 22, 2011

Fix for - jQuery Error on IE 8.0 for append function.

While using append() function in jQuery, you may see some errors popping out while loading the page.
This issue usually happens in Internet Explorer 8.0 version and will work perfectly in Firefox. 
 
jQuery Function: 
append: function() {
 return this.domManip(arguments, true, function(elem){
  if (this.nodeType == 1)
        this.appendChild( elem )  });
 },
Replace the append function with the below code,
append: function() {
  return this.domManip(arguments, true, function(elem){
   if (this.nodeType == 1)
           try{this.appendChild( elem )}
           catch(err){ }
  });
 },
 
Hope this will help you ;-) 
 

Wednesday, January 20, 2010

Recover / Reset WordPress Admin Password

For some reason, people have trouble with this, I don't know why - I never have.
They either don't get the e-mails, or the password doesn't seem to reset, or it resets and because they don't get the e-mail they can't get the activation link, or they don't have access to the database, or so on and so on and so on.
Tired of all of those posts I decided there had to be a simpler way. Enter this totally insecure script, emergency.php
screenshot of emergency.php
emergency.php does 2 things: It allows you to change your WordPress blog administrator password and it sends off an e-mail to the blog administrator, letting them know, once it's been changed, what's happened.
It does not require that you be logged in. It only requires that you have the ability to upload the file to your server, and that you know the current WordPress administrator's username. Hint: That's usually admin.
I've made an alternative version available for users of WordPress 2.0 that have trouble with the other regular version.
Specific Instructions:
  1. Unpack the zip.
  2. Upload emergency.php to the root of your WordPress install (the same directory that contains wp-config.php)
  3. Open http://www.yourdomain.com/emergency.php in your favorite browser.
  4. Follow the simple instructions.
  5. When you are done, delete emergency.php off your server. Do not leave it up for someone else to come along and use.
Download emergency.php for WordPress 2.2.x and 2.3.x
Emergency for WordPress
MD5 Checksum: 5a0c13f563484bd0364ee0f62ae2d4cb
Download the alternative emergency.php for WordPress 2.0.x users that have trouble with the above version!
Emergency for WordPress.
MD5 Check

Popular Posts