Posts by rafaeloliveira • 419 points
13 posts
-
2
votes0
answers155
viewsQ: Error with SHA1 certificate (Keystore) - Delphi 10 Berlin
I have a problem. I created an app on Delphi XE7 last year and created a Keystore certificate. Today I installed the Delphi 10 Berlin Trial and while trying to update my application it is not…
-
2
votes1
answer938
viewsQ: Grab Listbox’s Multiselect content and play in a Memo on the same line
I need to play the content with one or more selections from TListbox in a TMemo. I activated the Multiselect for True, I’m using: ListBox.Items[ListBox.ItemIndex] Only with a selection it normal…
-
6
votes1
answer1945
viewsQ: Error to get Windows 10 version with Delphi
I am trying to get the version of Windows 10 on my system, but the most it displays is Windows 8. Neither 8.1 it displays. I couldn’t find the mistake. // Função Sistema Operacional function…
delphiasked rafaeloliveira 419 -
0
votes1
answer39
viewsQ: Use ID in URL for Wordpress SEO
I’m having a cruel doubt whether or not to use the post_id in the URL. I’m currently using : /%Category%/%postname%-%post_id%. html is it worth removing this post_id or create with a bar separating…
seoasked rafaeloliveira 419 -
0
votes1
answer24
viewsQ: Redirect from domain to sub-domain with htacess
I’m having trouble migrating from one site x to another y in a domain. EX: siteantiquity with. for Subdomain.sitenovo.com I created htacess: RewriteEngine On RewriteCond %{SCRIPT_FILENAME} !-f…
-
9
votes1
answer526
viewsQ: Add bar at end of URL with Htaccess
I’m having a problem with my .htaccess, because I used to use .htm at the end now that I want to bar can not change. End use .htm query string: ##### Url Dinamica ###################################…
-
1
votes3
answers1202
viewsQ: Remove a letter from the alphabet with FOR
Hello I need to remove a letter from the alphabet only with FOR. I’m going through the alphabet from A to Z, but I need to get the letter Y <?php for($letra = ord("A"); $letra <= ord('Z');…
phpasked rafaeloliveira 419 -
1
votes1
answer392
viewsQ: CURRENT_TIMESTAMP() inserting zeroed
I am inserting more than 9000 records via query, but CURRENT_TIMESTAMP() -3 is inserting several fields with 0000-00-00 00:00:00. Is there any way to avoid it? INSERT INTO yourls.yourls_url…
-
1
votes1
answer53
viewsQ: Does publicizing URL on social networks improve pagerank?
Always publicize the same URL in several posts with the site address helps the page rank of the site or is considered as SPAM?
seoasked rafaeloliveira 419 -
1
votes1
answer47
viewsQ: Keyword in domain or directory?
I’ve been reading about SEO and I’ve been wondering. Nowadays having a domain with some keyword worth it or just add that word in some directory? Keyword example: Polo shirt The site would look…
seoasked rafaeloliveira 419 -
7
votes1
answer569
viewsQ: Block redirect of extensions and folders with . htaccess
I’m trying to create a redirect with htaccess and I got it in the following way: <ifModule mod_rewrite.c> RewriteEngine On RewriteCond %{SCRIPT_FILENAME} !-f RewriteCond %{SCRIPT_FILENAME} !-d…
htaccessasked rafaeloliveira 419 -
0
votes1
answer123
viewsQ: Get Querystring and redirect with . htaccess
I would like to get the querystring URL : url.htm and direct with htaccess. I’m about to make it: RewriteRule ^([A-Za-z-]+)\.htm$ conteudo.php?url=$1&%{QUERY_STRING} [qsappend] RewriteRule…
-
1
votes0
answers54
viewsQ: Redirect with . htaccess
Would anyone know to assist me in changing a friendly URL. Example: RewriteEngine On RewriteRule ^nome-da-nova-url-([A-Za-z-]+)\.htm$ url.php?url=$1 I would like everything that is on…