Service update

Pixhost has moved to pixhost.cc

The pixhost.to domain appears to have been blocked at the registrar or registry level. To prevent downtime and keep the service available, Pixhost has been moved to pixhost.cc.

Previous domain pixhost.to
Current domain pixhost.cc

What happened?

The pixhost.to domain is currently in serverHold status.

We did not receive any communication from the registrar before or after the domain was placed on hold. At this point, without any additional information, it is difficult to determine the exact reason for the issue.

Our current priority is maintaining uptime and ensuring uninterrupted access for users. We will share more information if and when we receive clarification from the registrar.

Open Pixhost at https://pixhost.cc

Updating embedded image URLs

Website owners who have embedded images using pixhost.to URLs can usually update existing links by replacing pixhost.to with pixhost.cc in their database.

Below are example MySQL queries. Use the copy buttons to copy each query directly.

General MySQL query structure
UPDATE `table_name`
SET `field_name` = REPLACE(`field_name`, 'pixhost.to', 'pixhost.cc');
WordPress example
UPDATE `wp_posts`
SET `post_content` = REPLACE(`post_content`, 'pixhost.to', 'pixhost.cc');
phpBB3 example
UPDATE `phpbb_posts`
SET `post_text` = REPLACE(`post_text`, 'pixhost.to', 'pixhost.cc');
Important: Always make a full database backup before running any update query. If your installation uses a custom table prefix, adjust the table name accordingly.